From d6e8c6b8b17aa5945316742d48eccb18d095bb66 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Sat, 6 Apr 2024 22:30:31 -0400 Subject: [PATCH] build: update bindings and workflows --- .editorconfig | 39 + .eslintrc.js | 20 - .gitattributes | 15 +- .gitignore | 46 +- .npmignore | 6 - Cargo.toml | 14 +- Makefile | 111 + Package.swift | 34 +- README.md | 23 +- binding.gyp | 12 +- bindings/c/tree-sitter-rust.h | 16 + bindings/c/tree-sitter-rust.pc.in | 11 + bindings/go/binding.go | 13 + bindings/go/binding_test.go | 15 + bindings/go/go.mod | 5 + bindings/node/binding.cc | 36 +- bindings/node/index.d.ts | 28 + bindings/node/index.js | 18 +- bindings/python/tree_sitter_rust/__init__.py | 5 + bindings/python/tree_sitter_rust/__init__.pyi | 1 + bindings/python/tree_sitter_rust/binding.c | 27 + .../python/tree_sitter_rust/py.typed | 0 bindings/rust/README.md | 36 - bindings/rust/build.rs | 21 +- bindings/rust/lib.rs | 34 +- bindings/swift/TreeSitterRust/rust.h | 4 +- examples/ast.rs | 293 +- package-lock.json | 1499 + package.json | 98 +- pyproject.toml | 33 + script/fetch-examples | 21 - script/known_failures.txt | 0 script/parse-examples | 20 - script/rustc-parse | 3 - setup.py | 57 + src/grammar.json | 568 +- src/node-types.json | 135 +- src/parser.c | 227672 +++++++-------- src/tree_sitter/alloc.h | 54 + src/tree_sitter/array.h | 290 + src/tree_sitter/parser.h | 4 +- 41 files changed, 116615 insertions(+), 114722 deletions(-) create mode 100644 .editorconfig delete mode 100644 .eslintrc.js delete mode 100644 .npmignore create mode 100644 Makefile create mode 100644 bindings/c/tree-sitter-rust.h create mode 100644 bindings/c/tree-sitter-rust.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/index.d.ts create mode 100644 bindings/python/tree_sitter_rust/__init__.py create mode 100644 bindings/python/tree_sitter_rust/__init__.pyi create mode 100644 bindings/python/tree_sitter_rust/binding.c rename .gitmodules => bindings/python/tree_sitter_rust/py.typed (100%) delete mode 100644 bindings/rust/README.md create mode 100644 package-lock.json create mode 100644 pyproject.toml delete mode 100755 script/fetch-examples delete mode 100644 script/known_failures.txt delete mode 100755 script/parse-examples delete mode 100755 script/rustc-parse create mode 100644 setup.py create mode 100644 src/tree_sitter/alloc.h create mode 100644 src/tree_sitter/array.h diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..d3a8b5b6 --- /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/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index b2e707a9..00000000 --- a/.eslintrc.js +++ /dev/null @@ -1,20 +0,0 @@ -module.exports = { - 'env': { - 'commonjs': true, - 'es2021': true, - }, - 'extends': 'google', - 'overrides': [ - ], - 'parserOptions': { - 'ecmaVersion': 'latest', - 'sourceType': 'module', - }, - 'rules': { - 'indent': ['error', 2, {'SwitchCase': 1}], - 'max-len': [ - 'error', - {'code': 120, 'ignoreComments': true, 'ignoreUrls': true, 'ignoreStrings': true}, - ], - }, -}; diff --git a/.gitattributes b/.gitattributes index 1491f7e1..ffb52abe 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,10 +1,11 @@ -/src/** linguist-vendored -/examples/* linguist-vendored +* text eol=lf -src/grammar.json linguist-generated -src/node-types.json linguist-generated +src/*.json linguist-generated src/parser.c linguist-generated +src/tree_sitter/* linguist-generated -src/grammar.json -diff -src/node-types.json -diff -src/parser.c -diff +bindings/** linguist-generated +binding.gyp linguist-generated +setup.py linguist-generated +Makefile linguist-generated +Package.swift linguist-generated diff --git a/.gitignore b/.gitignore index 20b07d05..27fc43f7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,38 @@ +# Rust artifacts Cargo.lock -node_modules -build -*.log -package-lock.json -/examples -!examples/ast.rs -!examples/weird-exprs.rs -/target/ -/fuzzer/ +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/.npmignore b/.npmignore deleted file mode 100644 index 0f438b55..00000000 --- a/.npmignore +++ /dev/null @@ -1,6 +0,0 @@ -/test -/examples -/build -/script -/target -bindings/rust diff --git a/Cargo.toml b/Cargo.toml index f40f678d..5092899a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,13 @@ [package] name = "tree-sitter-rust" description = "Rust grammar for tree-sitter" -version = "0.20.4" -authors = ["Max Brunsfeld "] +version = "0.21.0" +authors = [ + "Max Brunsfeld ", + "Amaan Qureshi ", +] license = "MIT" -readme = "bindings/rust/README.md" -keywords = ["incremental", "parsing", "rust"] +keywords = ["incremental", "parsing", "tree-sitter", "rust"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-rust" edition = "2021" @@ -18,7 +20,7 @@ include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "~0.20.10" +tree-sitter = ">=0.21.0" [build-dependencies] -cc = "~1.0.82" +cc = "~1.0.90" diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..4117359f --- /dev/null +++ b/Makefile @@ -0,0 +1,111 @@ +VERSION := 0.21.0 + +LANGUAGE_NAME := tree-sitter-rust + +# 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 + +# object files +OBJS := $(patsubst %.c,%.o,$(wildcard $(SRC_DIR)/*.c)) + +# 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)|' $< > $@ + +$(SRC_DIR)/parser.c: grammar.js + $(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 + $(TS) parse examples/* --quiet --time + +.PHONY: all install uninstall clean test diff --git a/Package.swift b/Package.swift index 1831c6a7..509cae5b 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,6 @@ import PackageDescription let package = Package( name: "TreeSitterRust", - platforms: [.macOS(.v10_13), .iOS(.v11)], products: [ .library(name: "TreeSitterRust", targets: ["TreeSitterRust"]), ], @@ -12,19 +11,27 @@ let package = Package( .target(name: "TreeSitterRust", path: ".", exclude: [ - "binding.gyp", - "bindings", "Cargo.toml", - "corpus", - "examples", - "grammar.js", - "LICENSE", "Makefile", + "binding.gyp", + "bindings/c", + "bindings/go", + "bindings/node", + "bindings/python", + "bindings/rust", + "prebuilds", + "grammar.js", "package.json", - "README.md", - "script", - "src/grammar.json", - "src/node-types.json", + "package-lock.json", + "pyproject.toml", + "setup.py", + "test", + "examples", + ".editorconfig", + ".github", + ".gitignore", + ".gitattributes", + ".gitmodules", ], sources: [ "src/parser.c", @@ -35,5 +42,6 @@ let package = Package( ], publicHeadersPath: "bindings/swift", cSettings: [.headerSearchPath("src")]) - ] -) \ No newline at end of file + ], + cLanguageStandard: .c11 +) diff --git a/README.md b/README.md index 29be43e7..6d0f2e5c 100644 --- a/README.md +++ b/README.md @@ -5,44 +5,41 @@ [![matrix][matrix]](https://matrix.to/#/#tree-sitter-chat:matrix.org) [![crates][crates]](https://crates.io/crates/tree-sitter-rust) [![npm][npm]](https://www.npmjs.com/package/tree-sitter-rust) +[![pypi][pypi]](https://pypi.org/project/tree-sitter-rust) -Rust grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter) +Rust grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter). ## Features -- **Speed** — When initially parsing a file, `tree-sitter-rust` takes around twice - as long as Rustc's hand-coded parser. +- **Speed** — When initially parsing a file, `tree-sitter-rust` takes around two to three times + as long as rustc's hand-written parser. ```sh $ wc -l examples/ast.rs 2157 examples/ast.rs - $ rustc -Z ast-json-noexpand -Z time-passes examples/ast.rs | head -n1 - time: 0.007 parsing # (7 ms) + $ rustc -Z unpretty=ast-tree -Z time-passes examples/ast.rs | head -n0 + time: 0.002; rss: 55MB -> 60MB ( +5MB) parse_crate $ tree-sitter parse examples/ast.rs --quiet --time - examples/ast.rs 16 ms + examples/ast.rs 6.48 ms 9908 bytes/ms ``` - But if you _edit_ the file after parsing it, this parser can generally _update_ + But if you _edit_ the file after parsing it, tree-sitter can generally _update_ the previous existing syntax tree to reflect your edit in less than a millisecond, - thanks to Tree-sitter's incremental parsing system. + thanks to its incremental parsing system. ## References -- [The Rust Grammar Reference](https://doc.rust-lang.org/grammar.html) — The grammar - reference provides chapters that formally define the language grammar. - [The Rust Reference](https://doc.rust-lang.org/reference/) — While Rust does not have a specification, the reference tries to describe its working in detail. It tends to be out of date. - [Keywords](https://doc.rust-lang.org/stable/book/appendix-01-keywords.html) and [Operators and Symbols](https://doc.rust-lang.org/stable/book/appendix-02-operators.html). -- Archive of the outdated [Syntax Index](https://web.mit.edu/rust-lang_v1.25/arch/amd64_ubuntu1404/share/doc/rust/html/book/first-edition/syntax-index.html) - that contains examples of all syntax in Rust cross-referenced with the section - of The Book that describes it. [ci]: https://img.shields.io/github/actions/workflow/status/tree-sitter/tree-sitter-rust/ci.yml?logo=github&label=CI [discord]: https://img.shields.io/discord/1063097320771698699?logo=discord&label=discord [matrix]: https://img.shields.io/matrix/tree-sitter-chat%3Amatrix.org?logo=matrix&label=matrix [npm]: https://img.shields.io/npm/v/tree-sitter-rust?logo=npm [crates]: https://img.shields.io/crates/v/tree-sitter-rust?logo=rust +[pypi]: https://img.shields.io/pypi/v/tree-sitter-rust?logo=pypi&logoColor=ffd242 diff --git a/binding.gyp b/binding.gyp index 2f6b679c..31ddf946 100644 --- a/binding.gyp +++ b/binding.gyp @@ -2,18 +2,20 @@ "targets": [ { "target_name": "tree_sitter_rust_binding", + "dependencies": [ + " -#include "nan.h" +#include -using namespace v8; +typedef struct TSLanguage TSLanguage; -extern "C" TSLanguage * tree_sitter_rust(); +extern "C" TSLanguage *tree_sitter_rust(); -namespace { +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; -NAN_METHOD(New) {} - -void Init(Local exports, Local module) { - Local tpl = Nan::New(New); - tpl->SetClassName(Nan::New("Language").ToLocalChecked()); - tpl->InstanceTemplate()->SetInternalFieldCount(1); - - Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); - Local instance = constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); - Nan::SetInternalFieldPointer(instance, 0, tree_sitter_rust()); - - Nan::Set(instance, Nan::New("name").ToLocalChecked(), Nan::New("rust").ToLocalChecked()); - Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); +Napi::Object Init(Napi::Env env, Napi::Object exports) { + exports["name"] = Napi::String::New(env, "rust"); + auto language = Napi::External::New(env, tree_sitter_rust()); + language.TypeTag(&LANGUAGE_TYPE_TAG); + exports["language"] = language; + return exports; } -NODE_MODULE(tree_sitter_rust_binding, Init) - -} // namespace +NODE_API_MODULE(tree_sitter_rust_binding, Init) diff --git a/bindings/node/index.d.ts b/bindings/node/index.d.ts new file mode 100644 index 00000000..efe259ee --- /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 index e12efcf3..6657bcf4 100644 --- a/bindings/node/index.js +++ b/bindings/node/index.js @@ -1,18 +1,6 @@ -try { - module.exports = require("../../build/Release/tree_sitter_rust_binding"); -} catch (error1) { - if (error1.code !== 'MODULE_NOT_FOUND') { - throw error1; - } - try { - module.exports = require("../../build/Debug/tree_sitter_rust_binding"); - } catch (error2) { - if (error2.code !== 'MODULE_NOT_FOUND') { - throw error2; - } - throw error1 - } -} +const root = require("path").join(__dirname, "..", ".."); + +module.exports = require("node-gyp-build")(root); try { module.exports.nodeTypeInfo = require("../../src/node-types.json"); diff --git a/bindings/python/tree_sitter_rust/__init__.py b/bindings/python/tree_sitter_rust/__init__.py new file mode 100644 index 00000000..c8d8ef08 --- /dev/null +++ b/bindings/python/tree_sitter_rust/__init__.py @@ -0,0 +1,5 @@ +"Rust grammar for tree-sitter" + +from ._binding import language + +__all__ = ["language"] diff --git a/bindings/python/tree_sitter_rust/__init__.pyi b/bindings/python/tree_sitter_rust/__init__.pyi new file mode 100644 index 00000000..5416666f --- /dev/null +++ b/bindings/python/tree_sitter_rust/__init__.pyi @@ -0,0 +1 @@ +def language() -> int: ... diff --git a/bindings/python/tree_sitter_rust/binding.c b/bindings/python/tree_sitter_rust/binding.c new file mode 100644 index 00000000..5b89febf --- /dev/null +++ b/bindings/python/tree_sitter_rust/binding.c @@ -0,0 +1,27 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_rust(void); + +static PyObject* _binding_language(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_rust()); +} + +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/.gitmodules b/bindings/python/tree_sitter_rust/py.typed similarity index 100% rename from .gitmodules rename to bindings/python/tree_sitter_rust/py.typed diff --git a/bindings/rust/README.md b/bindings/rust/README.md deleted file mode 100644 index c6a69ae2..00000000 --- a/bindings/rust/README.md +++ /dev/null @@ -1,36 +0,0 @@ -# tree-sitter-rust - -This crate provides a Rust grammar for the [tree-sitter][] parsing library. To -use this crate, add it to the `[dependencies]` section of your `Cargo.toml` -file. (Note that you will probably also need to depend on the -[`tree-sitter`][tree-sitter crate] crate to use the parsed result in any useful -way.) - -```toml -[dependencies] -tree-sitter = "0.20.10" -tree-sitter-rust = "0.20.4" -``` - -Typically, you will use the [language][language func] function to add this -grammar to a tree-sitter [Parser][], and then use the parser to parse some code: - -```rust -let code = r#" - fn double(x: i32) -> i32 { - x * 2 - } -"#; -let mut parser = Parser::new(); -parser.set_language(tree_sitter_rust::language()).expect("Error loading Rust grammar"); -let parsed = parser.parse(code, None); -``` - -If you have any questions, please reach out to us in the [tree-sitter -discussions] page. - -[language func]: https://docs.rs/tree-sitter-rust/*/tree_sitter_rust/fn.language.html -[Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html -[tree-sitter]: https://tree-sitter.github.io/ -[tree-sitter crate]: https://crates.io/crates/tree-sitter -[tree-sitter discussions]: https://github.com/tree-sitter/tree-sitter/discussions diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index 0dce566d..bdfbbf7f 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -1,16 +1,17 @@ fn main() { let src_dir = std::path::Path::new("src"); - let mut config = cc::Build::new(); - config.include(&src_dir); - config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable") - .flag_if_supported("-Wno-trigraphs"); + + let mut c_config = cc::Build::new(); + c_config.flag("-Wno-unused-parameter"); + c_config.std("c11").include(src_dir); + let parser_path = src_dir.join("parser.c"); - let scanner_path = src_dir.join("scanner.c"); + c_config.file(&parser_path); println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + let scanner_path = src_dir.join("scanner.c"); + c_config.file(&scanner_path); println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - config.file(&parser_path); - config.file(&scanner_path); - config.compile("parser-scanner"); + + c_config.compile("tree-sitter-rust"); } diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index 3f4856eb..46a38a58 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -1,8 +1,3 @@ -// ------------------------------------------------------------------------------------------------ -// Copyright © 2021, tree-sitter-rust authors. -// See the LICENSE file in this repo for license details. -// ------------------------------------------------------------------------------------------------ - //! This crate provides a Rust grammar for the [tree-sitter][] parsing library. //! //! Typically, you will use the [language][language func] function to add this grammar to a @@ -12,16 +7,14 @@ //! use tree_sitter::Parser; //! //! let code = r#" -//! fn double(x: i32) -> i32 { -//! x * 2 -//! } +//! fn double(x: i32) -> i32 { +//! x * 2 +//! } //! "#; //! let mut parser = Parser::new(); -//! parser.set_language(tree_sitter_rust::language()).expect("Error loading Rust grammar"); -//! let parsed = parser.parse(code, None); -//! # let parsed = parsed.unwrap(); -//! # let root = parsed.root_node(); -//! # assert!(!root.has_error()); +//! parser.set_language(&tree_sitter_rust::language()).expect("Error loading Rust 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 @@ -42,8 +35,10 @@ pub fn language() -> Language { unsafe { tree_sitter_rust() } } -/// The source of the Rust tree-sitter grammar description. -pub const GRAMMAR: &str = include_str!("../../grammar.js"); +/// 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"); /// The syntax highlighting query for this language. pub const HIGHLIGHT_QUERY: &str = include_str!("../../queries/highlights.scm"); @@ -52,12 +47,7 @@ pub const HIGHLIGHT_QUERY: &str = include_str!("../../queries/highlights.scm"); pub const INJECTIONS_QUERY: &str = include_str!("../../queries/injections.scm"); /// The symbol tagging query for this language. -pub const TAGGING_QUERY: &str = include_str!("../../queries/tags.scm"); - -/// The content of the [`node-types.json`][] file for this grammar. -/// -/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types -pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); +pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm"); #[cfg(test)] mod tests { @@ -65,7 +55,7 @@ mod tests { fn can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(super::language()) + .set_language(&super::language()) .expect("Error loading Rust grammar"); } } diff --git a/bindings/swift/TreeSitterRust/rust.h b/bindings/swift/TreeSitterRust/rust.h index e76dc6e8..f4a9c9bc 100644 --- a/bindings/swift/TreeSitterRust/rust.h +++ b/bindings/swift/TreeSitterRust/rust.h @@ -7,10 +7,10 @@ typedef struct TSLanguage TSLanguage; extern "C" { #endif -extern TSLanguage *tree_sitter_rust(); +const TSLanguage *tree_sitter_rust(void); #ifdef __cplusplus } #endif -#endif // TREE_SITTER_RUST_H_ \ No newline at end of file +#endif // TREE_SITTER_RUST_H_ diff --git a/examples/ast.rs b/examples/ast.rs index a64f1e9e..dd9db140 100644 --- a/examples/ast.rs +++ b/examples/ast.rs @@ -10,24 +10,24 @@ // The Rust abstract syntax tree. +pub use self::PathParameters::*; pub use self::TyParamBound::*; pub use self::UnsafeSource::*; -pub use self::PathParameters::*; pub use symbol::{Ident, Symbol as Name}; -pub use util::ThinVec; pub use util::parser::ExprPrecedence; +pub use util::ThinVec; -use syntax_pos::{Span, DUMMY_SP}; -use codemap::{respan, Spanned}; use abi::Abi; +use codemap::{respan, Spanned}; use ext::hygiene::{Mark, SyntaxContext}; use print::pprust; use ptr::P; use rustc_data_structures::indexed_vec; -use symbol::{Symbol, keywords}; +use symbol::{keywords, Symbol}; +use syntax_pos::{Span, DUMMY_SP}; use tokenstream::{ThinTokenStream, TokenStream}; -use serialize::{self, Encoder, Decoder}; +use serialize::{self, Decoder, Encoder}; use std::collections::HashSet; use std::fmt; use std::rc::Rc; @@ -42,7 +42,12 @@ pub struct Lifetime { impl fmt::Debug for Lifetime { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - write!(f, "lifetime({}: {})", self.id, pprust::lifetime_to_string(self)) + write!( + f, + "lifetime({}: {})", + self.id, + pprust::lifetime_to_string(self) + ) } } @@ -51,7 +56,7 @@ impl fmt::Debug for Lifetime { pub struct LifetimeDef { pub attrs: ThinVec, pub lifetime: Lifetime, - pub bounds: Vec + pub bounds: Vec, } /// A "Path" is essentially Rust's notion of a name. @@ -101,8 +106,9 @@ impl Path { pub fn default_to_global(mut self) -> Path { if !self.is_global() { let ident = self.segments[0].identifier; - if !::parse::token::Ident(ident).is_path_segment_keyword() || - ident.name == keywords::Crate.name() { + if !::parse::token::Ident(ident).is_path_segment_keyword() + || ident.name == keywords::Crate.name() + { self.segments.insert(0, PathSegment::crate_root(self.span)); } } @@ -135,11 +141,18 @@ pub struct PathSegment { impl PathSegment { pub fn from_ident(ident: Ident, span: Span) -> Self { - PathSegment { identifier: ident, span: span, parameters: None } + PathSegment { + identifier: ident, + span: span, + parameters: None, + } } pub fn crate_root(span: Span) -> Self { PathSegment { - identifier: Ident { ctxt: span.ctxt(), ..keywords::CrateRoot.ident() }, + identifier: Ident { + ctxt: span.ctxt(), + ..keywords::CrateRoot.ident() + }, span, parameters: None, } @@ -279,7 +292,7 @@ pub const DUMMY_NODE_ID: NodeId = NodeId(!0); #[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)] pub enum TyParamBound { TraitTyParamBound(PolyTraitRef, TraitBoundModifier), - RegionTyParamBound(Lifetime) + RegionTyParamBound(Lifetime), } /// A modifier on a bound, currently this is only used for `?Sized`, where the @@ -360,7 +373,7 @@ impl Generics { impl Default for Generics { /// Creates an instance of `Generics`. - fn default() -> Generics { + fn default() -> Generics { Generics { params: Vec::new(), where_clause: WhereClause { @@ -480,7 +493,7 @@ pub enum MetaItemKind { /// Name value meta item. /// /// E.g. `feature = "foo"` as in `#[feature = "foo"]` - NameValue(Lit) + NameValue(Lit), } /// A Block (`{ .. }`). @@ -514,14 +527,17 @@ impl Pat { pub(super) fn to_ty(&self) -> Option> { let node = match &self.node { PatKind::Wild => TyKind::Infer, - PatKind::Ident(BindingMode::ByValue(Mutability::Immutable), ident, None) => - TyKind::Path(None, Path::from_ident(ident.span, ident.node)), + PatKind::Ident(BindingMode::ByValue(Mutability::Immutable), ident, None) => { + TyKind::Path(None, Path::from_ident(ident.span, ident.node)) + } PatKind::Path(qself, path) => TyKind::Path(qself.clone(), path.clone()), PatKind::Mac(mac) => TyKind::Mac(mac.clone()), - PatKind::Ref(pat, mutbl) => - pat.to_ty().map(|ty| TyKind::Rptr(None, MutTy { ty, mutbl: *mutbl }))?, - PatKind::Slice(pats, None, _) if pats.len() == 1 => - pats[0].to_ty().map(TyKind::Slice)?, + PatKind::Ref(pat, mutbl) => pat + .to_ty() + .map(|ty| TyKind::Rptr(None, MutTy { ty, mutbl: *mutbl }))?, + PatKind::Slice(pats, None, _) if pats.len() == 1 => { + pats[0].to_ty().map(TyKind::Slice)? + } PatKind::Tuple(pats, None) => { let mut tys = Vec::new(); for pat in pats { @@ -532,11 +548,16 @@ impl Pat { _ => return None, }; - Some(P(Ty { node, id: self.id, span: self.span })) + Some(P(Ty { + node, + id: self.id, + span: self.span, + })) } pub fn walk(&self, it: &mut F) -> bool - where F: FnMut(&Pat) -> bool + where + F: FnMut(&Pat) -> bool, { if !it(self) { return false; @@ -544,28 +565,22 @@ impl Pat { match self.node { PatKind::Ident(_, _, Some(ref p)) => p.walk(it), - PatKind::Struct(_, ref fields, _) => { - fields.iter().all(|field| field.node.pat.walk(it)) - } + PatKind::Struct(_, ref fields, _) => fields.iter().all(|field| field.node.pat.walk(it)), PatKind::TupleStruct(_, ref s, _) | PatKind::Tuple(ref s, _) => { s.iter().all(|p| p.walk(it)) } - PatKind::Box(ref s) | PatKind::Ref(ref s, _) => { - s.walk(it) - } + PatKind::Box(ref s) | PatKind::Ref(ref s, _) => s.walk(it), PatKind::Slice(ref before, ref slice, ref after) => { - before.iter().all(|p| p.walk(it)) && - slice.iter().all(|p| p.walk(it)) && - after.iter().all(|p| p.walk(it)) - } - PatKind::Wild | - PatKind::Lit(_) | - PatKind::Range(..) | - PatKind::Ident(..) | - PatKind::Path(..) | - PatKind::Mac(_) => { - true + before.iter().all(|p| p.walk(it)) + && slice.iter().all(|p| p.walk(it)) + && after.iter().all(|p| p.walk(it)) } + PatKind::Wild + | PatKind::Lit(_) + | PatKind::Range(..) + | PatKind::Ident(..) + | PatKind::Path(..) + | PatKind::Mac(_) => true, } } } @@ -721,25 +736,22 @@ impl BinOpKind { pub fn lazy(&self) -> bool { match *self { BinOpKind::And | BinOpKind::Or => true, - _ => false + _ => false, } } pub fn is_shift(&self) -> bool { match *self { BinOpKind::Shl | BinOpKind::Shr => true, - _ => false + _ => false, } } pub fn is_comparison(&self) -> bool { use self::BinOpKind::*; match *self { - Eq | Lt | Le | Ne | Gt | Ge => - true, - And | Or | Add | Sub | Mul | Div | Rem | - BitXor | BitAnd | BitOr | Shl | Shr => - false, + Eq | Lt | Le | Ne | Gt | Ge => true, + And | Or | Add | Sub | Mul | Div | Rem | BitXor | BitAnd | BitOr | Shl | Shr => false, } } @@ -791,9 +803,9 @@ impl Stmt { pub fn add_trailing_semicolon(mut self) -> Self { self.node = match self.node { StmtKind::Expr(expr) => StmtKind::Semi(expr), - StmtKind::Mac(mac) => StmtKind::Mac(mac.map(|(mac, _style, attrs)| { - (mac, MacStmtStyle::Semicolon, attrs) - })), + StmtKind::Mac(mac) => { + StmtKind::Mac(mac.map(|(mac, _style, attrs)| (mac, MacStmtStyle::Semicolon, attrs))) + } node => node, }; self @@ -809,11 +821,15 @@ impl Stmt { impl fmt::Debug for Stmt { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - write!(f, "stmt({}: {})", self.id.to_string(), pprust::stmt_to_string(self)) + write!( + f, + "stmt({}: {})", + self.id.to_string(), + pprust::stmt_to_string(self) + ) } } - #[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash)] pub enum StmtKind { /// A local (let) binding. @@ -898,12 +914,12 @@ pub enum UnsafeSource { } /// An expression -#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash,)] +#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash)] pub struct Expr { pub id: NodeId, pub node: ExprKind, pub span: Span, - pub attrs: ThinVec + pub attrs: ThinVec, } impl Expr { @@ -933,9 +949,10 @@ impl Expr { fn to_bound(&self) -> Option { match &self.node { - ExprKind::Path(None, path) => - Some(TraitTyParamBound(PolyTraitRef::new(Vec::new(), path.clone(), self.span), - TraitBoundModifier::None)), + ExprKind::Path(None, path) => Some(TraitTyParamBound( + PolyTraitRef::new(Vec::new(), path.clone(), self.span), + TraitBoundModifier::None, + )), _ => None, } } @@ -945,12 +962,13 @@ impl Expr { ExprKind::Path(qself, path) => TyKind::Path(qself.clone(), path.clone()), ExprKind::Mac(mac) => TyKind::Mac(mac.clone()), ExprKind::Paren(expr) => expr.to_ty().map(TyKind::Paren)?, - ExprKind::AddrOf(mutbl, expr) => - expr.to_ty().map(|ty| TyKind::Rptr(None, MutTy { ty, mutbl: *mutbl }))?, - ExprKind::Repeat(expr, expr_len) => - expr.to_ty().map(|ty| TyKind::Array(ty, expr_len.clone()))?, - ExprKind::Array(exprs) if exprs.len() == 1 => - exprs[0].to_ty().map(TyKind::Slice)?, + ExprKind::AddrOf(mutbl, expr) => expr + .to_ty() + .map(|ty| TyKind::Rptr(None, MutTy { ty, mutbl: *mutbl }))?, + ExprKind::Repeat(expr, expr_len) => { + expr.to_ty().map(|ty| TyKind::Array(ty, expr_len.clone()))? + } + ExprKind::Array(exprs) if exprs.len() == 1 => exprs[0].to_ty().map(TyKind::Slice)?, ExprKind::Tup(exprs) => { let mut tys = Vec::new(); for expr in exprs { @@ -958,16 +976,21 @@ impl Expr { } TyKind::Tup(tys) } - ExprKind::Binary(binop, lhs, rhs) if binop.node == BinOpKind::Add => + ExprKind::Binary(binop, lhs, rhs) if binop.node == BinOpKind::Add => { if let (Some(lhs), Some(rhs)) = (lhs.to_bound(), rhs.to_bound()) { TyKind::TraitObject(vec![lhs, rhs], TraitObjectSyntax::None) } else { return None; } + } _ => return None, }; - Some(P(Ty { node, id: self.id, span: self.span })) + Some(P(Ty { + node, + id: self.id, + span: self.span, + })) } pub fn precedence(&self) -> ExprPrecedence { @@ -1184,7 +1207,7 @@ pub enum ExprKind { #[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)] pub struct QSelf { pub ty: P, - pub position: usize + pub position: usize, } /// A capture clause @@ -1233,7 +1256,7 @@ pub enum StrStyle { /// A raw string, like `r##"foo"##` /// /// The uint is the number of `#` symbols used - Raw(usize) + Raw(usize), } /// A literal @@ -1283,17 +1306,17 @@ impl LitKind { pub fn is_unsuffixed(&self) -> bool { match *self { // unsuffixed variants - LitKind::Str(..) | - LitKind::ByteStr(..) | - LitKind::Byte(..) | - LitKind::Char(..) | - LitKind::Int(_, LitIntType::Unsuffixed) | - LitKind::FloatUnsuffixed(..) | - LitKind::Bool(..) => true, + LitKind::Str(..) + | LitKind::ByteStr(..) + | LitKind::Byte(..) + | LitKind::Char(..) + | LitKind::Int(_, LitIntType::Unsuffixed) + | LitKind::FloatUnsuffixed(..) + | LitKind::Bool(..) => true, // suffixed variants - LitKind::Int(_, LitIntType::Signed(..)) | - LitKind::Int(_, LitIntType::Unsigned(..)) | - LitKind::Float(..) => false, + LitKind::Int(_, LitIntType::Signed(..)) + | LitKind::Int(_, LitIntType::Unsigned(..)) + | LitKind::Float(..) => false, } } @@ -1367,8 +1390,7 @@ pub enum ImplItemKind { Macro(Mac), } -#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Copy, - PartialOrd, Ord)] +#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Copy, PartialOrd, Ord)] pub enum IntTy { Isize, I8, @@ -1421,8 +1443,7 @@ impl IntTy { } } -#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Copy, - PartialOrd, Ord)] +#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Copy, PartialOrd, Ord)] pub enum UintTy { Usize, U8, @@ -1472,8 +1493,7 @@ impl fmt::Display for UintTy { } } -#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Copy, - PartialOrd, Ord)] +#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Copy, PartialOrd, Ord)] pub enum FloatTy { F32, F64, @@ -1534,7 +1554,7 @@ pub struct BareFnTy { pub unsafety: Unsafety, pub abi: Abi, pub generic_params: Vec, - pub decl: P + pub decl: P, } /// The different kinds of types recognized by the compiler @@ -1553,7 +1573,7 @@ pub enum TyKind { /// The never type (`!`) Never, /// A tuple (`(A, B, C, D,...)`) - Tup(Vec> ), + Tup(Vec>), /// A path (`module::module::...::Type`), optionally /// "qualified", e.g. ` as SomeTrait>::SomeType`. /// @@ -1654,12 +1674,16 @@ impl Arg { if ident.node.name == keywords::SelfValue.name() { return match self.ty.node { TyKind::ImplicitSelf => Some(respan(self.pat.span, SelfKind::Value(mutbl))), - TyKind::Rptr(lt, MutTy{ref ty, mutbl}) if ty.node == TyKind::ImplicitSelf => { + TyKind::Rptr(lt, MutTy { ref ty, mutbl }) + if ty.node == TyKind::ImplicitSelf => + { Some(respan(self.pat.span, SelfKind::Region(lt, mutbl))) } - _ => Some(respan(self.pat.span.to(self.ty.span), - SelfKind::Explicit(self.ty.clone(), mutbl))), - } + _ => Some(respan( + self.pat.span.to(self.ty.span), + SelfKind::Explicit(self.ty.clone(), mutbl), + )), + }; } } None @@ -1692,11 +1716,20 @@ impl Arg { match eself.node { SelfKind::Explicit(ty, mutbl) => arg(mutbl, ty), SelfKind::Value(mutbl) => arg(mutbl, infer_ty), - SelfKind::Region(lt, mutbl) => arg(Mutability::Immutable, P(Ty { - id: DUMMY_NODE_ID, - node: TyKind::Rptr(lt, MutTy { ty: infer_ty, mutbl: mutbl }), - span, - })), + SelfKind::Region(lt, mutbl) => arg( + Mutability::Immutable, + P(Ty { + id: DUMMY_NODE_ID, + node: TyKind::Rptr( + lt, + MutTy { + ty: infer_ty, + mutbl: mutbl, + }, + ), + span, + }), + ), } } } @@ -1708,7 +1741,7 @@ impl Arg { pub struct FnDecl { pub inputs: Vec, pub output: FunctionRetTy, - pub variadic: bool + pub variadic: bool, } impl FnDecl { @@ -1724,7 +1757,7 @@ impl FnDecl { #[derive(Copy, Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)] pub enum IsAuto { Yes, - No + No, } #[derive(Copy, Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)] @@ -1747,10 +1780,13 @@ pub enum Defaultness { impl fmt::Display for Unsafety { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { - fmt::Display::fmt(match *self { - Unsafety::Normal => "normal", - Unsafety::Unsafe => "unsafe", - }, f) + fmt::Display::fmt( + match *self { + Unsafety::Normal => "normal", + Unsafety::Unsafe => "unsafe", + }, + f, + ) } } @@ -1771,7 +1807,6 @@ impl fmt::Debug for ImplPolarity { } } - #[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)] pub enum FunctionRetTy { /// Return type is not specified. @@ -1904,7 +1939,10 @@ impl PolyTraitRef { pub fn new(generic_params: Vec, path: Path, span: Span) -> Self { PolyTraitRef { bound_generic_params: generic_params, - trait_ref: TraitRef { path: path, ref_id: DUMMY_NODE_ID }, + trait_ref: TraitRef { + path: path, + ref_id: DUMMY_NODE_ID, + }, span, } } @@ -1976,17 +2014,29 @@ impl VariantData { } pub fn id(&self) -> NodeId { match *self { - VariantData::Struct(_, id) | VariantData::Tuple(_, id) | VariantData::Unit(id) => id + VariantData::Struct(_, id) | VariantData::Tuple(_, id) | VariantData::Unit(id) => id, } } pub fn is_struct(&self) -> bool { - if let VariantData::Struct(..) = *self { true } else { false } + if let VariantData::Struct(..) = *self { + true + } else { + false + } } pub fn is_tuple(&self) -> bool { - if let VariantData::Tuple(..) = *self { true } else { false } + if let VariantData::Tuple(..) = *self { + true + } else { + false + } } pub fn is_unit(&self) -> bool { - if let VariantData::Unit(..) = *self { true } else { false } + if let VariantData::Unit(..) = *self { + true + } else { + false + } } } @@ -2033,7 +2083,14 @@ pub enum ItemKind { /// A function declaration (`fn` or `pub fn`). /// /// E.g. `fn foo(bar: usize) -> usize { .. }` - Fn(P, Unsafety, Spanned, Abi, Generics, P), + Fn( + P, + Unsafety, + Spanned, + Abi, + Generics, + P, + ), /// A module declaration (`mod` or `pub mod`). /// /// E.g. `mod foo;` or `mod foo { .. }` @@ -2071,13 +2128,15 @@ pub enum ItemKind { /// An implementation. /// /// E.g. `impl Foo { .. }` or `impl Trait for Foo { .. }` - Impl(Unsafety, - ImplPolarity, - Defaultness, - Generics, - Option, // (optional) trait this impl implements - P, // self - Vec), + Impl( + Unsafety, + ImplPolarity, + Defaultness, + Generics, + Option, // (optional) trait this impl implements + P, // self + Vec, + ), /// A macro invocation. /// /// E.g. `macro_rules! foo { .. }` or `foo!(..)` @@ -2104,9 +2163,7 @@ impl ItemKind { ItemKind::Union(..) => "union", ItemKind::Trait(..) => "trait", ItemKind::TraitAlias(..) => "trait alias", - ItemKind::Mac(..) | - ItemKind::MacroDef(..) | - ItemKind::Impl(..) => "item" + ItemKind::Mac(..) | ItemKind::MacroDef(..) | ItemKind::Impl(..) => "item", } } } @@ -2145,8 +2202,8 @@ impl ForeignItemKind { #[cfg(test)] mod tests { - use serialize; use super::*; + use serialize; // are ASTs encodable? #[test] diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..c94f9aeb --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1499 @@ +{ + "name": "tree-sitter-rust", + "version": "0.21.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "tree-sitter-rust", + "version": "0.21.0", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "node-addon-api": "^7.1.0", + "node-gyp-build": "^4.8.0" + }, + "devDependencies": { + "eslint": "^8.47.0", + "eslint-config-google": "^0.14.0", + "prebuildify": "^6.0.0", + "tree-sitter-cli": "^0.22.2" + }, + "peerDependencies": { + "tree-sitter": "^0.21.1" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "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.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "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/execspawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/execspawn/-/execspawn-1.0.1.tgz", + "integrity": "sha512-s2k06Jy9i8CUkYe0+DxRlvtkZoOkwwfhB+Xxo5HGUtrISVW2m98jO2tr67DGRFxZwkjQqloA3v/tNtjhBRBieg==", + "dev": true, + "dependencies": { + "util-extend": "^1.0.1" + } + }, + "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==", + "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==", + "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/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "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.57.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.57.0.tgz", + "integrity": "sha512-Dp+A9JWxRaKuHP35H77I4kCKesDy5HUDEmScia2FyncMTOXASMyg251F5PhFoDA5uqBrDDffiLpbqnrZmNXW+g==", + "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.0", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.0.tgz", + "integrity": "sha512-u6fs2AEUljNho3EYTJNBfImO5QTo/J/1Etd+NVdCj7qWKUSN/bSLkZwhDv7I+w/MSC6qJ4cknepkAYykDdK8og==", + "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.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "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.0", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.0.tgz", + "integrity": "sha512-DEvK4C3tcimIp7Pzqbs036n9i6CTKGp1XVEpMnr4wV3enKU5sBogPP+lP3KZw7993i42bXnsd5eIxAXQ566Cqw==", + "dev": true, + "dependencies": { + "execspawn": "^1.0.1", + "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==", + "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.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", + "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "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.2", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.22.2.tgz", + "integrity": "sha512-ecqccEp27XMFXgjLMEEU71vK9JCWAC7fqSTTxcs5P1tnEnaaf4GkHz/wfo4lJ9l3rfxcTDPxN84tHAoitIQqdA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "tree-sitter": "cli.js" + } + }, + "node_modules/tree-sitter/node_modules/node-addon-api": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.0.0.tgz", + "integrity": "sha512-ipO7rsHEBqa9STO5C5T10fj732ml+5kLN1cAG8/jdHd56ldQeGj3Q7+scUS+VHK/qy1zLEwC4wMK5+yM0btPvw==", + "peer": true, + "engines": { + "node": "^18 || ^20 || >= 21" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/util-extend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz", + "integrity": "sha512-mLs5zAK+ctllYBj+iAQvlDCwoxU/WDOUaJkcFudeiAX6OajC6BKXJUa9a+tbtkC11dz2Ufb7h0lyvIOVn4LADA==", + "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/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/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "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 c72a909d..14397649 100644 --- a/package.json +++ b/package.json @@ -1,33 +1,59 @@ { "name": "tree-sitter-rust", - "version": "0.20.4", + "version": "0.21.0", "description": "Rust grammar for tree-sitter", + "repository": "github:tree-sitter/tree-sitter-rust", + "license": "MIT", + "author": "Maxim Sokolov ", + "contributors": [ + "Max Brunsfeld ", + "Amaan Qureshi " + ], + "maintainers": [ + "Amaan Qureshi " + ], "main": "bindings/node", + "types": "bindings/node", "keywords": [ - "parser", + "incremental", + "parsing", + "tree-sitter", "rust" ], - "repository": { - "type": "git", - "url": "https://github.com/tree-sitter/tree-sitter-rust.git" - }, - "author": "Maxim Sokolov (https://github.com/MaximSokolov)", - "license": "MIT", + "files": [ + "grammar.js", + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "src/**" + ], "dependencies": { - "nan": "^2.17.0" + "node-addon-api": "^7.1.0", + "node-gyp-build": "^4.8.0" + }, + "peerDependencies": { + "tree-sitter": "^0.21.1" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } }, "devDependencies": { "eslint": "^8.47.0", "eslint-config-google": "^0.14.0", - "tree-sitter-cli": "^0.20.8" + "tree-sitter-cli": "^0.22.2", + "prebuildify": "^6.0.0" }, "scripts": { - "build": "tree-sitter generate && node-gyp build", - "build-wasm": "tree-sitter build-wasm", + "install": "node-gyp-build", + "prebuildify": "prebuildify --napi --strip", + "build": "tree-sitter generate --no-bindings", + "build-wasm": "tree-sitter build --wasm", "lint": "eslint grammar.js", "parse": "tree-sitter parse", - "test": "tree-sitter test && script/parse-examples", - "test-windows": "tree-sitter test" + "test": "tree-sitter test" }, "tree-sitter": [ { @@ -46,5 +72,47 @@ "queries/tags.scm" ] } - ] + ], + "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": [ + "/" + ] + } + } + ] + } + } } diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..a054b450 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,33 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "tree-sitter-rust" +description = "Rust grammar for tree-sitter" +version = "0.0.1" +keywords = ["incremental", "parsing", "tree-sitter", "rust"] +classifiers = [ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Compilers", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed", +] +authors = [ + { name = "Max Brunsfeld", email = "maxbrunsfeld@gmail.com" }, + { name = "Amaan Qureshi", email = "amaanq12@gmail.com" }, +] +requires-python = ">=3.8" +license.text = "MIT" +readme = "README.md" + +[project.urls] +Homepage = "https://github.com/tree-sitter/tree-sitter-rust" + +[project.optional-dependencies] +core = ["tree-sitter~=0.21"] + +[tool.cibuildwheel] +build = "cp38-*" +build-frontend = "build" diff --git a/script/fetch-examples b/script/fetch-examples deleted file mode 100755 index 789059c1..00000000 --- a/script/fetch-examples +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -set -e - -function checkout() { - repo=$1; url=$2; sha=$3 - - if [ ! -d "$repo" ]; then - git clone "https://github.com/$url" "$repo" - fi - - pushd "$repo" - git fetch && git reset --hard "$sha" - popd -} - -checkout examples/bitflags rust-lang-nursery/bitflags 7ec3fe2d7cafb7f185c5785006efac94b88f42f0 -checkout examples/libc rust-lang/libc 8318a3ec1c1f13aab21d0a74ac9a7cf618bb2261 -checkout examples/regex rust-lang/regex.git 991ae1a4c69cd81ecf989119b9205a3204088e83 -checkout examples/serde serde-rs/serde.git 4e54aaf7963c3580cc50b56842949b0ce6b3a997 -checkout examples/tokio tokio-rs/tokio 0490280d662f000aff674593cc9a4f69a1cd1171 diff --git a/script/known_failures.txt b/script/known_failures.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/script/parse-examples b/script/parse-examples deleted file mode 100755 index 57537d37..00000000 --- a/script/parse-examples +++ /dev/null @@ -1,20 +0,0 @@ -#!/bin/bash - -set -e - -cd "$(dirname "$0")/.." - -known_failures="$(cat script/known_failures.txt)" - -tree-sitter parse -q \ - 'examples/**/*.rs' \ - $(for file in $known_failures; do echo "!${file}"; done) - -example_count=$(find examples -name '*.rs' | wc -l) -failure_count=$(wc -w <<< "$known_failures") -success_count=$(( $example_count - $failure_count )) -success_percent=$(bc -l <<< "100*${success_count}/${example_count}") - -printf \ - "Successfully parsed %d of %d example files (%.1f%%)\n" \ - $success_count $example_count $success_percent diff --git a/script/rustc-parse b/script/rustc-parse deleted file mode 100755 index 0e41148e..00000000 --- a/script/rustc-parse +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/bash - -rustc -Z ast-json-noexpand $@ | jq . diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..5e6f9597 --- /dev/null +++ b/setup.py @@ -0,0 +1,57 @@ +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_rust", "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_rust": ["*.pyi", "py.typed"], + "tree_sitter_rust.queries": ["*.scm"], + }, + ext_package="tree_sitter_rust", + ext_modules=[ + Extension( + name="_binding", + sources=[ + "bindings/python/tree_sitter_rust/binding.c", + "src/parser.c", + "src/scanner.c", + ], + extra_compile_args=( + ["-std=c11"] if system() != 'Windows' else [] + ), + 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 index d29d0d94..aab00e51 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2926,10 +2926,6 @@ { "type": "SYMBOL", "name": "higher_ranked_trait_bound" - }, - { - "type": "SYMBOL", - "name": "removed_trait_bound" } ] }, @@ -2956,10 +2952,6 @@ { "type": "SYMBOL", "name": "higher_ranked_trait_bound" - }, - { - "type": "SYMBOL", - "name": "removed_trait_bound" } ] } @@ -3022,31 +3014,43 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "lifetime" - }, - { - "type": "SYMBOL", - "name": "metavariable" - }, - { - "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "SYMBOL", - "name": "constrained_type_parameter" - }, - { - "type": "SYMBOL", - "name": "optional_type_parameter" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } }, { - "type": "SYMBOL", - "name": "const_parameter" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lifetime" + }, + { + "type": "SYMBOL", + "name": "metavariable" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "constrained_type_parameter" + }, + { + "type": "SYMBOL", + "name": "optional_type_parameter" + }, + { + "type": "SYMBOL", + "name": "const_parameter" + } + ] } ] }, @@ -3060,31 +3064,43 @@ "value": "," }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "lifetime" - }, - { - "type": "SYMBOL", - "name": "metavariable" - }, - { - "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "SYMBOL", - "name": "constrained_type_parameter" - }, - { - "type": "SYMBOL", - "name": "optional_type_parameter" + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } }, { - "type": "SYMBOL", - "name": "const_parameter" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lifetime" + }, + { + "type": "SYMBOL", + "name": "metavariable" + }, + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "constrained_type_parameter" + }, + { + "type": "SYMBOL", + "name": "optional_type_parameter" + }, + { + "type": "SYMBOL", + "name": "const_parameter" + } + ] } ] } @@ -3707,8 +3723,50 @@ ] }, "variadic_parameter": { - "type": "STRING", - "value": "..." + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "mutable_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "SYMBOL", + "name": "_pattern" + } + }, + { + "type": "STRING", + "value": ":" + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "..." + } + ] }, "parameter": { "type": "SEQ", @@ -3778,77 +3836,73 @@ ] }, "visibility_modifier": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "crate" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "pub" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "self" - }, - { - "type": "SYMBOL", - "name": "super" - }, - { - "type": "SYMBOL", - "name": "crate" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "in" - }, - { - "type": "SYMBOL", - "name": "_path" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "crate" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "pub" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "self" + }, + { + "type": "SYMBOL", + "name": "super" + }, + { + "type": "SYMBOL", + "name": "crate" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "in" + }, + { + "type": "SYMBOL", + "name": "_path" + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] }, "_type": { "type": "CHOICE", @@ -3903,7 +3957,7 @@ }, { "type": "SYMBOL", - "name": "empty_type" + "name": "never_type" }, { "type": "SYMBOL", @@ -3913,6 +3967,10 @@ "type": "SYMBOL", "name": "bounded_type" }, + { + "type": "SYMBOL", + "name": "removed_trait_bound" + }, { "type": "ALIAS", "content": { @@ -4045,17 +4103,21 @@ ] }, "lifetime": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "'" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } }, "array_type": { "type": "SEQ", @@ -4514,27 +4576,44 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "SYMBOL", - "name": "type_binding" - }, - { - "type": "SYMBOL", - "name": "lifetime" - }, - { - "type": "SYMBOL", - "name": "_literal" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "SYMBOL", + "name": "type_binding" + }, + { + "type": "SYMBOL", + "name": "lifetime" + }, + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "SYMBOL", + "name": "block" + } + ] }, { - "type": "SYMBOL", - "name": "block" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "trait_bounds" + }, + { + "type": "BLANK" + } + ] } ] }, @@ -4548,27 +4627,44 @@ "value": "," }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "SYMBOL", - "name": "type_binding" - }, - { - "type": "SYMBOL", - "name": "lifetime" - }, - { - "type": "SYMBOL", - "name": "_literal" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type" + }, + { + "type": "SYMBOL", + "name": "type_binding" + }, + { + "type": "SYMBOL", + "name": "lifetime" + }, + { + "type": "SYMBOL", + "name": "_literal" + }, + { + "type": "SYMBOL", + "name": "block" + } + ] }, { - "type": "SYMBOL", - "name": "block" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "trait_bounds" + }, + { + "type": "BLANK" + } + ] } ] } @@ -4707,7 +4803,7 @@ } ] }, - "empty_type": { + "never_type": { "type": "STRING", "value": "!" }, @@ -4753,6 +4849,10 @@ "type": "SYMBOL", "name": "scoped_type_identifier" }, + { + "type": "SYMBOL", + "name": "removed_trait_bound" + }, { "type": "SYMBOL", "name": "generic_type" @@ -4760,6 +4860,10 @@ { "type": "SYMBOL", "name": "function_type" + }, + { + "type": "SYMBOL", + "name": "tuple_type" } ] } @@ -4779,6 +4883,10 @@ "content": { "type": "CHOICE", "members": [ + { + "type": "SYMBOL", + "name": "higher_ranked_trait_bound" + }, { "type": "SYMBOL", "name": "_type_identifier" @@ -6546,10 +6654,19 @@ }, { "type": "FIELD", - "name": "name", + "name": "field", "content": { - "type": "SYMBOL", - "name": "_field_identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_field_identifier" + }, + { + "type": "SYMBOL", + "name": "integer_literal" + } + ] } }, { @@ -6871,8 +6988,17 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "attribute_item" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_item" + }, + { + "type": "SYMBOL", + "name": "inner_attribute_item" + } + ] } }, { @@ -6930,8 +7056,17 @@ { "type": "REPEAT", "content": { - "type": "SYMBOL", - "name": "attribute_item" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "attribute_item" + }, + { + "type": "SYMBOL", + "name": "inner_attribute_item" + } + ] } }, { @@ -6972,22 +7107,8 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "closure_expression" - }, - "named": true, - "value": "closure_pattern" - } - ] + "type": "SYMBOL", + "name": "_pattern" }, { "type": "CHOICE", @@ -7908,6 +8029,15 @@ { "type": "SYMBOL", "name": "scoped_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "generic_type_with_turbofish" + }, + "named": true, + "value": "generic_type" } ] } @@ -8185,6 +8315,10 @@ { "type": "STRING", "value": "..=" + }, + { + "type": "STRING", + "value": ".." } ] }, @@ -8270,19 +8404,37 @@ "type": "PREC_LEFT", "value": -2, "content": { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "_pattern" - }, - { - "type": "STRING", - "value": "|" + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_pattern" + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "_pattern" + } + ] }, { - "type": "SYMBOL", - "name": "_pattern" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "_pattern" + } + ] } ] } @@ -8492,7 +8644,7 @@ }, { "type": "SYMBOL", - "name": "_string_content" + "name": "string_content" } ] } @@ -9064,13 +9216,21 @@ ], [ "array_expression" + ], + [ + "visibility_modifier" + ], + [ + "visibility_modifier", + "scoped_identifier", + "scoped_type_identifier" ] ], "precedences": [], "externals": [ { "type": "SYMBOL", - "name": "_string_content" + "name": "string_content" }, { "type": "SYMBOL", diff --git a/src/node-types.json b/src/node-types.json index 2c789140..6ab816ab 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -409,10 +409,6 @@ "type": "dynamic_type", "named": true }, - { - "type": "empty_type", - "named": true - }, { "type": "function_type", "named": true @@ -429,6 +425,10 @@ "type": "metavariable", "named": true }, + { + "type": "never_type", + "named": true + }, { "type": "pointer_type", "named": true @@ -441,6 +441,10 @@ "type": "reference_type", "named": true }, + { + "type": "removed_trait_bound", + "named": true + }, { "type": "scoped_type_identifier", "named": true @@ -475,10 +479,18 @@ "type": "generic_type", "named": true }, + { + "type": "removed_trait_bound", + "named": true + }, { "type": "scoped_type_identifier", "named": true }, + { + "type": "tuple_type", + "named": true + }, { "type": "type_identifier", "named": true @@ -1227,46 +1239,6 @@ ] } }, - { - "type": "closure_pattern", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_", - "named": false - }, - { - "type": "_expression", - "named": true - } - ] - }, - "parameters": { - "multiple": false, - "required": true, - "types": [ - { - "type": "closure_parameters", - "named": true - } - ] - }, - "return_type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_type", - "named": true - } - ] - } - } - }, { "type": "compound_assignment_expr", "named": true, @@ -1503,6 +1475,10 @@ "type": "generic_type", "named": true }, + { + "type": "higher_ranked_trait_bound", + "named": true + }, { "type": "scoped_type_identifier", "named": true @@ -1539,11 +1515,6 @@ "named": true, "fields": {} }, - { - "type": "empty_type", - "named": true, - "fields": {} - }, { "type": "enum_item", "named": true, @@ -1822,13 +1793,17 @@ "type": "field_initializer", "named": true, "fields": { - "name": { + "field": { "multiple": false, "required": true, "types": [ { "type": "field_identifier", "named": true + }, + { + "type": "integer_literal", + "named": true } ] }, @@ -2801,6 +2776,10 @@ { "type": "attribute_item", "named": true + }, + { + "type": "inner_attribute_item", + "named": true } ] } @@ -2876,10 +2855,6 @@ { "type": "_pattern", "named": true - }, - { - "type": "closure_pattern", - "named": true } ] } @@ -2958,6 +2933,11 @@ ] } }, + { + "type": "never_type", + "named": true, + "fields": {} + }, { "type": "optional_type_parameter", "named": true, @@ -3649,6 +3629,10 @@ { "type": "escape_sequence", "named": true + }, + { + "type": "string_content", + "named": true } ] } @@ -4032,10 +4016,6 @@ { "type": "lifetime", "named": true - }, - { - "type": "removed_trait_bound", - "named": true } ] } @@ -4176,6 +4156,10 @@ "multiple": false, "required": true, "types": [ + { + "type": "generic_type", + "named": true + }, { "type": "identifier", "named": true @@ -4237,6 +4221,10 @@ "type": "lifetime", "named": true }, + { + "type": "trait_bounds", + "named": true + }, { "type": "type_binding", "named": true @@ -4364,6 +4352,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "const_parameter", "named": true @@ -4678,7 +4670,28 @@ { "type": "variadic_parameter", "named": true, - "fields": {} + "fields": { + "pattern": { + "multiple": false, + "required": false, + "types": [ + { + "type": "_pattern", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "mutable_specifier", + "named": true + } + ] + } }, { "type": "visibility_modifier", @@ -5275,6 +5288,10 @@ "type": "stmt", "named": false }, + { + "type": "string_content", + "named": true + }, { "type": "struct", "named": false diff --git a/src/parser.c b/src/parser.c index 4835a2b1..a73541f4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3531 -#define LARGE_STATE_COUNT 1006 -#define SYMBOL_COUNT 339 -#define ALIAS_COUNT 5 +#define STATE_COUNT 3573 +#define LARGE_STATE_COUNT 998 +#define SYMBOL_COUNT 340 +#define ALIAS_COUNT 4 #define TOKEN_COUNT 153 #define EXTERNAL_TOKEN_COUNT 8 #define FIELD_COUNT 31 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 276 +#define PRODUCTION_ID_COUNT 279 enum ts_symbol_identifiers { sym_identifier = 1, @@ -160,7 +160,7 @@ enum ts_symbol_identifiers { sym_super = 142, sym_crate = 143, sym_metavariable = 144, - sym__string_content = 145, + sym_string_content = 145, sym_raw_string_literal = 146, sym_float_literal = 147, sym__outer_block_doc_comment_marker = 148, @@ -244,7 +244,7 @@ enum ts_symbol_identifiers { sym_type_binding = 226, sym_reference_type = 227, sym_pointer_type = 228, - sym_empty_type = 229, + sym_never_type = 229, sym_abstract_type = 230, sym_dynamic_type = 231, sym__expression_except_range = 232, @@ -349,12 +349,12 @@ enum ts_symbol_identifiers { aux_sym_tuple_expression_repeat1 = 331, aux_sym_field_initializer_list_repeat1 = 332, aux_sym_match_block_repeat1 = 333, - aux_sym_closure_parameters_repeat1 = 334, - aux_sym_tuple_pattern_repeat1 = 335, - aux_sym_slice_pattern_repeat1 = 336, - aux_sym_struct_pattern_repeat1 = 337, - aux_sym_string_literal_repeat1 = 338, - alias_sym_closure_pattern = 339, + aux_sym_match_arm_repeat1 = 334, + aux_sym_closure_parameters_repeat1 = 335, + aux_sym_tuple_pattern_repeat1 = 336, + aux_sym_slice_pattern_repeat1 = 337, + aux_sym_struct_pattern_repeat1 = 338, + aux_sym_string_literal_repeat1 = 339, alias_sym_field_identifier = 340, alias_sym_let_chain = 341, alias_sym_shorthand_field_identifier = 342, @@ -507,7 +507,7 @@ static const char * const ts_symbol_names[] = { [sym_super] = "super", [sym_crate] = "crate", [sym_metavariable] = "metavariable", - [sym__string_content] = "_string_content", + [sym_string_content] = "string_content", [sym_raw_string_literal] = "raw_string_literal", [sym_float_literal] = "float_literal", [sym__outer_block_doc_comment_marker] = "outer_doc_comment_marker", @@ -591,7 +591,7 @@ static const char * const ts_symbol_names[] = { [sym_type_binding] = "type_binding", [sym_reference_type] = "reference_type", [sym_pointer_type] = "pointer_type", - [sym_empty_type] = "empty_type", + [sym_never_type] = "never_type", [sym_abstract_type] = "abstract_type", [sym_dynamic_type] = "dynamic_type", [sym__expression_except_range] = "_expression_except_range", @@ -696,12 +696,12 @@ static const char * const ts_symbol_names[] = { [aux_sym_tuple_expression_repeat1] = "tuple_expression_repeat1", [aux_sym_field_initializer_list_repeat1] = "field_initializer_list_repeat1", [aux_sym_match_block_repeat1] = "match_block_repeat1", + [aux_sym_match_arm_repeat1] = "match_arm_repeat1", [aux_sym_closure_parameters_repeat1] = "closure_parameters_repeat1", [aux_sym_tuple_pattern_repeat1] = "tuple_pattern_repeat1", [aux_sym_slice_pattern_repeat1] = "slice_pattern_repeat1", [aux_sym_struct_pattern_repeat1] = "struct_pattern_repeat1", [aux_sym_string_literal_repeat1] = "string_literal_repeat1", - [alias_sym_closure_pattern] = "closure_pattern", [alias_sym_field_identifier] = "field_identifier", [alias_sym_let_chain] = "let_chain", [alias_sym_shorthand_field_identifier] = "shorthand_field_identifier", @@ -854,7 +854,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_super] = sym_super, [sym_crate] = sym_crate, [sym_metavariable] = sym_metavariable, - [sym__string_content] = sym__string_content, + [sym_string_content] = sym_string_content, [sym_raw_string_literal] = sym_raw_string_literal, [sym_float_literal] = sym_float_literal, [sym__outer_block_doc_comment_marker] = sym__outer_block_doc_comment_marker, @@ -938,7 +938,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_type_binding] = sym_type_binding, [sym_reference_type] = sym_reference_type, [sym_pointer_type] = sym_pointer_type, - [sym_empty_type] = sym_empty_type, + [sym_never_type] = sym_never_type, [sym_abstract_type] = sym_abstract_type, [sym_dynamic_type] = sym_dynamic_type, [sym__expression_except_range] = sym__expression_except_range, @@ -1043,12 +1043,12 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_tuple_expression_repeat1] = aux_sym_tuple_expression_repeat1, [aux_sym_field_initializer_list_repeat1] = aux_sym_field_initializer_list_repeat1, [aux_sym_match_block_repeat1] = aux_sym_match_block_repeat1, + [aux_sym_match_arm_repeat1] = aux_sym_match_arm_repeat1, [aux_sym_closure_parameters_repeat1] = aux_sym_closure_parameters_repeat1, [aux_sym_tuple_pattern_repeat1] = aux_sym_tuple_pattern_repeat1, [aux_sym_slice_pattern_repeat1] = aux_sym_slice_pattern_repeat1, [aux_sym_struct_pattern_repeat1] = aux_sym_struct_pattern_repeat1, [aux_sym_string_literal_repeat1] = aux_sym_string_literal_repeat1, - [alias_sym_closure_pattern] = alias_sym_closure_pattern, [alias_sym_field_identifier] = alias_sym_field_identifier, [alias_sym_let_chain] = alias_sym_let_chain, [alias_sym_shorthand_field_identifier] = alias_sym_shorthand_field_identifier, @@ -1636,8 +1636,8 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__string_content] = { - .visible = false, + [sym_string_content] = { + .visible = true, .named = true, }, [sym_raw_string_literal] = { @@ -1973,7 +1973,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_empty_type] = { + [sym_never_type] = { .visible = true, .named = true, }, @@ -2397,6 +2397,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_match_arm_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_closure_parameters_repeat1] = { .visible = false, .named = false, @@ -2417,10 +2421,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [alias_sym_closure_pattern] = { - .visible = true, - .named = true, - }, [alias_sym_field_identifier] = { .visible = true, .named = true, @@ -2572,18 +2572,19 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [65] = {.index = 64, .length = 1}, [66] = {.index = 65, .length = 1}, [68] = {.index = 66, .length = 2}, - [69] = {.index = 65, .length = 1}, - [70] = {.index = 68, .length = 2}, - [71] = {.index = 70, .length = 3}, - [72] = {.index = 73, .length = 2}, - [73] = {.index = 75, .length = 3}, - [74] = {.index = 78, .length = 3}, - [76] = {.index = 81, .length = 2}, + [69] = {.index = 64, .length = 1}, + [70] = {.index = 65, .length = 1}, + [71] = {.index = 68, .length = 2}, + [72] = {.index = 70, .length = 3}, + [73] = {.index = 73, .length = 2}, + [74] = {.index = 75, .length = 3}, + [75] = {.index = 78, .length = 3}, [77] = {.index = 81, .length = 2}, - [78] = {.index = 83, .length = 2}, - [79] = {.index = 85, .length = 3}, - [80] = {.index = 88, .length = 2}, - [81] = {.index = 90, .length = 1}, + [78] = {.index = 81, .length = 2}, + [79] = {.index = 83, .length = 2}, + [80] = {.index = 85, .length = 3}, + [81] = {.index = 88, .length = 2}, + [82] = {.index = 90, .length = 1}, [83] = {.index = 91, .length = 2}, [84] = {.index = 93, .length = 2}, [85] = {.index = 95, .length = 3}, @@ -2620,162 +2621,164 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [116] = {.index = 143, .length = 2}, [117] = {.index = 145, .length = 2}, [118] = {.index = 145, .length = 2}, - [119] = {.index = 147, .length = 2}, - [120] = {.index = 149, .length = 3}, - [121] = {.index = 152, .length = 3}, - [122] = {.index = 147, .length = 2}, - [123] = {.index = 149, .length = 3}, - [124] = {.index = 155, .length = 2}, - [126] = {.index = 157, .length = 3}, - [127] = {.index = 160, .length = 3}, - [128] = {.index = 163, .length = 4}, - [129] = {.index = 125, .length = 2}, - [130] = {.index = 167, .length = 3}, - [131] = {.index = 170, .length = 2}, - [132] = {.index = 172, .length = 3}, - [133] = {.index = 175, .length = 2}, - [134] = {.index = 177, .length = 2}, - [135] = {.index = 179, .length = 3}, - [136] = {.index = 182, .length = 3}, - [137] = {.index = 185, .length = 2}, - [138] = {.index = 187, .length = 2}, - [139] = {.index = 189, .length = 3}, - [140] = {.index = 192, .length = 2}, - [141] = {.index = 194, .length = 2}, - [142] = {.index = 196, .length = 1}, - [143] = {.index = 197, .length = 2}, - [144] = {.index = 199, .length = 1}, - [145] = {.index = 200, .length = 2}, - [146] = {.index = 202, .length = 2}, - [147] = {.index = 204, .length = 2}, - [148] = {.index = 206, .length = 3}, - [149] = {.index = 206, .length = 3}, - [150] = {.index = 108, .length = 1}, - [151] = {.index = 209, .length = 2}, - [152] = {.index = 185, .length = 2}, - [153] = {.index = 211, .length = 4}, - [154] = {.index = 215, .length = 3}, - [155] = {.index = 218, .length = 4}, - [156] = {.index = 222, .length = 2}, - [157] = {.index = 224, .length = 3}, - [158] = {.index = 222, .length = 2}, - [159] = {.index = 224, .length = 3}, + [120] = {.index = 147, .length = 2}, + [121] = {.index = 149, .length = 3}, + [122] = {.index = 152, .length = 3}, + [123] = {.index = 147, .length = 2}, + [124] = {.index = 149, .length = 3}, + [125] = {.index = 155, .length = 2}, + [127] = {.index = 157, .length = 3}, + [128] = {.index = 160, .length = 3}, + [129] = {.index = 163, .length = 4}, + [130] = {.index = 125, .length = 2}, + [131] = {.index = 167, .length = 3}, + [132] = {.index = 170, .length = 2}, + [133] = {.index = 172, .length = 3}, + [134] = {.index = 175, .length = 2}, + [135] = {.index = 177, .length = 2}, + [136] = {.index = 179, .length = 3}, + [137] = {.index = 182, .length = 3}, + [138] = {.index = 185, .length = 2}, + [139] = {.index = 185, .length = 2}, + [140] = {.index = 187, .length = 2}, + [141] = {.index = 189, .length = 3}, + [142] = {.index = 192, .length = 2}, + [143] = {.index = 194, .length = 2}, + [144] = {.index = 196, .length = 1}, + [145] = {.index = 197, .length = 2}, + [146] = {.index = 199, .length = 1}, + [147] = {.index = 200, .length = 2}, + [148] = {.index = 202, .length = 2}, + [149] = {.index = 204, .length = 1}, + [150] = {.index = 205, .length = 2}, + [151] = {.index = 207, .length = 3}, + [152] = {.index = 207, .length = 3}, + [153] = {.index = 108, .length = 1}, + [154] = {.index = 210, .length = 2}, + [155] = {.index = 212, .length = 2}, + [156] = {.index = 214, .length = 4}, + [157] = {.index = 218, .length = 3}, + [158] = {.index = 221, .length = 4}, + [159] = {.index = 225, .length = 2}, [160] = {.index = 227, .length = 3}, - [161] = {.index = 230, .length = 3}, - [162] = {.index = 233, .length = 4}, + [161] = {.index = 225, .length = 2}, + [162] = {.index = 227, .length = 3}, [163] = {.index = 230, .length = 3}, - [164] = {.index = 233, .length = 4}, - [165] = {.index = 227, .length = 3}, - [166] = {.index = 237, .length = 2}, - [167] = {.index = 239, .length = 2}, - [168] = {.index = 241, .length = 2}, - [169] = {.index = 243, .length = 2}, - [170] = {.index = 245, .length = 1}, - [171] = {.index = 245, .length = 1}, + [164] = {.index = 233, .length = 3}, + [165] = {.index = 236, .length = 4}, + [166] = {.index = 233, .length = 3}, + [167] = {.index = 236, .length = 4}, + [168] = {.index = 230, .length = 3}, + [169] = {.index = 240, .length = 2}, + [170] = {.index = 242, .length = 2}, + [171] = {.index = 244, .length = 2}, [172] = {.index = 246, .length = 2}, - [173] = {.index = 248, .length = 3}, - [174] = {.index = 251, .length = 2}, - [175] = {.index = 253, .length = 2}, - [176] = {.index = 202, .length = 2}, - [177] = {.index = 255, .length = 4}, - [178] = {.index = 259, .length = 3}, - [179] = {.index = 262, .length = 3}, - [180] = {.index = 265, .length = 3}, - [181] = {.index = 268, .length = 3}, - [182] = {.index = 271, .length = 4}, - [183] = {.index = 275, .length = 2}, - [184] = {.index = 277, .length = 2}, - [185] = {.index = 279, .length = 3}, - [186] = {.index = 282, .length = 4}, - [187] = {.index = 286, .length = 3}, - [188] = {.index = 246, .length = 2}, - [189] = {.index = 289, .length = 2}, - [190] = {.index = 291, .length = 3}, - [191] = {.index = 294, .length = 3}, - [192] = {.index = 297, .length = 2}, - [193] = {.index = 299, .length = 3}, - [194] = {.index = 202, .length = 2}, - [195] = {.index = 302, .length = 3}, - [196] = {.index = 305, .length = 2}, - [197] = {.index = 307, .length = 2}, - [198] = {.index = 309, .length = 3}, - [199] = {.index = 312, .length = 3}, - [200] = {.index = 277, .length = 2}, - [201] = {.index = 315, .length = 4}, - [202] = {.index = 319, .length = 5}, - [203] = {.index = 324, .length = 4}, - [204] = {.index = 328, .length = 3}, - [205] = {.index = 328, .length = 3}, - [206] = {.index = 331, .length = 3}, - [207] = {.index = 334, .length = 4}, - [208] = {.index = 331, .length = 3}, - [209] = {.index = 334, .length = 4}, - [210] = {.index = 338, .length = 4}, - [211] = {.index = 338, .length = 4}, - [212] = {.index = 342, .length = 3}, - [213] = {.index = 345, .length = 3}, - [214] = {.index = 348, .length = 3}, - [215] = {.index = 351, .length = 2}, - [216] = {.index = 353, .length = 2}, - [217] = {.index = 125, .length = 2}, - [218] = {.index = 355, .length = 2}, - [219] = {.index = 357, .length = 3}, - [220] = {.index = 355, .length = 2}, - [221] = {.index = 357, .length = 3}, - [222] = {.index = 360, .length = 3}, - [223] = {.index = 363, .length = 4}, - [224] = {.index = 360, .length = 3}, - [225] = {.index = 363, .length = 4}, - [226] = {.index = 367, .length = 4}, - [227] = {.index = 371, .length = 4}, - [228] = {.index = 375, .length = 3}, - [229] = {.index = 378, .length = 4}, - [230] = {.index = 382, .length = 3}, - [231] = {.index = 385, .length = 3}, - [232] = {.index = 388, .length = 3}, - [233] = {.index = 391, .length = 4}, - [234] = {.index = 395, .length = 2}, - [235] = {.index = 397, .length = 3}, - [236] = {.index = 400, .length = 4}, - [237] = {.index = 404, .length = 3}, - [238] = {.index = 407, .length = 3}, - [239] = {.index = 410, .length = 2}, - [240] = {.index = 412, .length = 3}, - [241] = {.index = 415, .length = 5}, - [242] = {.index = 420, .length = 4}, - [243] = {.index = 420, .length = 4}, - [244] = {.index = 424, .length = 3}, - [245] = {.index = 427, .length = 3}, - [246] = {.index = 430, .length = 3}, - [247] = {.index = 433, .length = 3}, - [248] = {.index = 436, .length = 2}, - [249] = {.index = 438, .length = 3}, + [173] = {.index = 248, .length = 1}, + [174] = {.index = 249, .length = 2}, + [175] = {.index = 251, .length = 3}, + [176] = {.index = 254, .length = 2}, + [177] = {.index = 256, .length = 2}, + [178] = {.index = 202, .length = 2}, + [179] = {.index = 258, .length = 4}, + [180] = {.index = 262, .length = 3}, + [181] = {.index = 265, .length = 3}, + [182] = {.index = 268, .length = 3}, + [183] = {.index = 271, .length = 3}, + [184] = {.index = 274, .length = 4}, + [185] = {.index = 278, .length = 2}, + [186] = {.index = 280, .length = 2}, + [187] = {.index = 280, .length = 2}, + [188] = {.index = 282, .length = 3}, + [189] = {.index = 285, .length = 4}, + [190] = {.index = 289, .length = 3}, + [191] = {.index = 249, .length = 2}, + [192] = {.index = 292, .length = 2}, + [193] = {.index = 294, .length = 3}, + [194] = {.index = 297, .length = 3}, + [195] = {.index = 300, .length = 2}, + [196] = {.index = 302, .length = 3}, + [197] = {.index = 202, .length = 2}, + [198] = {.index = 305, .length = 3}, + [199] = {.index = 308, .length = 2}, + [200] = {.index = 310, .length = 2}, + [201] = {.index = 312, .length = 3}, + [202] = {.index = 315, .length = 3}, + [203] = {.index = 318, .length = 2}, + [204] = {.index = 320, .length = 4}, + [205] = {.index = 324, .length = 5}, + [206] = {.index = 329, .length = 4}, + [207] = {.index = 333, .length = 3}, + [208] = {.index = 333, .length = 3}, + [209] = {.index = 336, .length = 3}, + [210] = {.index = 339, .length = 4}, + [211] = {.index = 336, .length = 3}, + [212] = {.index = 339, .length = 4}, + [213] = {.index = 343, .length = 4}, + [214] = {.index = 343, .length = 4}, + [215] = {.index = 347, .length = 3}, + [216] = {.index = 350, .length = 3}, + [217] = {.index = 353, .length = 3}, + [218] = {.index = 356, .length = 2}, + [219] = {.index = 358, .length = 2}, + [220] = {.index = 125, .length = 2}, + [221] = {.index = 360, .length = 2}, + [222] = {.index = 362, .length = 3}, + [223] = {.index = 360, .length = 2}, + [224] = {.index = 362, .length = 3}, + [225] = {.index = 365, .length = 3}, + [226] = {.index = 368, .length = 4}, + [227] = {.index = 365, .length = 3}, + [228] = {.index = 368, .length = 4}, + [229] = {.index = 372, .length = 4}, + [230] = {.index = 376, .length = 4}, + [231] = {.index = 380, .length = 3}, + [232] = {.index = 383, .length = 4}, + [233] = {.index = 387, .length = 3}, + [234] = {.index = 390, .length = 3}, + [235] = {.index = 393, .length = 3}, + [236] = {.index = 396, .length = 4}, + [237] = {.index = 400, .length = 2}, + [238] = {.index = 402, .length = 3}, + [239] = {.index = 405, .length = 4}, + [240] = {.index = 409, .length = 3}, + [241] = {.index = 412, .length = 3}, + [242] = {.index = 415, .length = 2}, + [243] = {.index = 417, .length = 3}, + [244] = {.index = 420, .length = 5}, + [245] = {.index = 425, .length = 4}, + [246] = {.index = 425, .length = 4}, + [247] = {.index = 429, .length = 3}, + [248] = {.index = 432, .length = 3}, + [249] = {.index = 435, .length = 3}, [250] = {.index = 438, .length = 3}, - [251] = {.index = 441, .length = 3}, - [252] = {.index = 444, .length = 4}, - [253] = {.index = 441, .length = 3}, - [254] = {.index = 444, .length = 4}, - [255] = {.index = 448, .length = 4}, - [256] = {.index = 448, .length = 4}, - [257] = {.index = 452, .length = 4}, - [258] = {.index = 456, .length = 5}, - [259] = {.index = 461, .length = 4}, - [260] = {.index = 465, .length = 2}, - [261] = {.index = 467, .length = 4}, - [262] = {.index = 471, .length = 4}, - [263] = {.index = 475, .length = 3}, - [264] = {.index = 478, .length = 4}, - [265] = {.index = 482, .length = 4}, - [266] = {.index = 486, .length = 3}, - [267] = {.index = 489, .length = 4}, - [268] = {.index = 489, .length = 4}, - [269] = {.index = 493, .length = 5}, - [270] = {.index = 498, .length = 4}, - [271] = {.index = 502, .length = 5}, - [272] = {.index = 507, .length = 4}, - [273] = {.index = 511, .length = 4}, - [274] = {.index = 515, .length = 3}, - [275] = {.index = 518, .length = 5}, + [251] = {.index = 441, .length = 2}, + [252] = {.index = 443, .length = 3}, + [253] = {.index = 443, .length = 3}, + [254] = {.index = 446, .length = 3}, + [255] = {.index = 449, .length = 4}, + [256] = {.index = 446, .length = 3}, + [257] = {.index = 449, .length = 4}, + [258] = {.index = 453, .length = 4}, + [259] = {.index = 453, .length = 4}, + [260] = {.index = 457, .length = 4}, + [261] = {.index = 461, .length = 5}, + [262] = {.index = 466, .length = 4}, + [263] = {.index = 470, .length = 2}, + [264] = {.index = 472, .length = 4}, + [265] = {.index = 476, .length = 4}, + [266] = {.index = 480, .length = 3}, + [267] = {.index = 483, .length = 4}, + [268] = {.index = 487, .length = 4}, + [269] = {.index = 491, .length = 3}, + [270] = {.index = 494, .length = 4}, + [271] = {.index = 494, .length = 4}, + [272] = {.index = 498, .length = 5}, + [273] = {.index = 503, .length = 4}, + [274] = {.index = 507, .length = 5}, + [275] = {.index = 512, .length = 4}, + [276] = {.index = 516, .length = 4}, + [277] = {.index = 520, .length = 3}, + [278] = {.index = 523, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3059,7 +3062,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 2}, {field_type_parameters, 3}, [185] = - {field_name, 0}, + {field_field, 0}, {field_value, 2}, [187] = {field_name, 2}, @@ -3088,420 +3091,428 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 0}, {field_type, 2}, [204] = + {field_pattern, 0}, + [205] = {field_parameters, 2}, {field_return_type, 4}, - [206] = + [207] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [209] = + [210] = {field_name, 0}, {field_pattern, 2}, - [211] = + [212] = + {field_name, 0}, + {field_value, 2}, + [214] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [215] = + [218] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [218] = + [221] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [222] = + [225] = {field_trait, 2}, {field_type, 4}, - [224] = + [227] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [227] = + [230] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [230] = + [233] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [233] = + [236] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [237] = + [240] = {field_pattern, 2}, {field_type, 4}, - [239] = + [242] = {field_pattern, 2}, {field_value, 4}, - [241] = + [244] = {field_alternative, 4}, {field_pattern, 2}, - [243] = + [246] = {field_pattern, 0}, {field_value, 2}, - [245] = + [248] = {field_condition, 2}, - [246] = + [249] = {field_name, 2}, {field_type, 4}, - [248] = + [251] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4}, - [251] = + [254] = {field_type, 1}, {field_type, 2, .inherited = true}, - [253] = + [256] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [255] = + [258] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [259] = + [262] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [262] = + [265] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [265] = + [268] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [268] = + [271] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [271] = + [274] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [275] = + [278] = {field_alias, 4}, {field_name, 2}, - [277] = - {field_name, 1}, + [280] = + {field_field, 1}, {field_value, 3}, - [279] = + [282] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [282] = + [285] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [286] = + [289] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [289] = + [292] = {field_body, 5}, {field_name, 3}, - [291] = + [294] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [294] = + [297] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [297] = + [300] = {field_name, 3}, {field_parameters, 4}, - [299] = + [302] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [302] = + [305] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [305] = + [308] = {field_parameters, 3}, {field_return_type, 5}, - [307] = + [310] = {field_name, 1}, {field_pattern, 3}, - [309] = + [312] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [312] = + [315] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [315] = + [318] = + {field_name, 1}, + {field_value, 3}, + [320] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [319] = + [324] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [324] = + [329] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [328] = + [333] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [331] = + [336] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [334] = + [339] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [338] = + [343] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [342] = + [347] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [345] = + [350] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [348] = + [353] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [351] = + [356] = {field_name, 3}, {field_type, 5}, - [353] = + [358] = {field_type, 2}, {field_type, 3, .inherited = true}, - [355] = + [360] = {field_trait, 3}, {field_type, 5}, - [357] = + [362] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [360] = + [365] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [363] = + [368] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [367] = + [372] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [371] = + [376] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [375] = + [380] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [378] = + [383] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [382] = + [387] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [385] = + [390] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [388] = + [393] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [391] = + [396] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [395] = + [400] = {field_alias, 5}, {field_name, 3}, - [397] = + [402] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [400] = + [405] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [404] = + [409] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [407] = + [412] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [410] = + [415] = {field_name, 2}, {field_pattern, 4}, - [412] = + [417] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [415] = + [420] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [420] = + [425] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [424] = + [429] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [427] = + [432] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [430] = + [435] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [433] = + [438] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [436] = + [441] = {field_type, 3}, {field_type, 4, .inherited = true}, - [438] = + [443] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [441] = + [446] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [444] = + [449] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [448] = + [453] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [452] = + [457] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [456] = + [461] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [461] = + [466] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [465] = + [470] = {field_name, 4}, {field_type, 6}, - [467] = + [472] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [471] = + [476] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [475] = + [480] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [478] = + [483] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [482] = + [487] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [486] = + [491] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [489] = + [494] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [493] = + [498] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [498] = + [503] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [502] = + [507] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [507] = + [512] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [511] = + [516] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [515] = + [520] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [518] = + [523] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, @@ -3592,20 +3603,20 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [67] = { [2] = sym_identifier, }, - [70] = { - [1] = alias_sym_type_identifier, + [69] = { + [0] = sym_generic_type, }, [71] = { [1] = alias_sym_type_identifier, }, - [75] = { + [72] = { [1] = alias_sym_type_identifier, }, [76] = { - [0] = alias_sym_type_identifier, + [1] = alias_sym_type_identifier, }, - [82] = { - [0] = alias_sym_closure_pattern, + [77] = { + [0] = alias_sym_type_identifier, }, [84] = { [1] = alias_sym_type_identifier, @@ -3647,17 +3658,17 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [0] = alias_sym_type_identifier, }, [119] = { - [1] = alias_sym_type_identifier, + [2] = alias_sym_type_identifier, }, [120] = { [1] = alias_sym_type_identifier, }, - [125] = { - [3] = sym_identifier, - }, - [127] = { + [121] = { [1] = alias_sym_type_identifier, }, + [126] = { + [3] = sym_identifier, + }, [128] = { [1] = alias_sym_type_identifier, }, @@ -3667,8 +3678,8 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [130] = { [1] = alias_sym_type_identifier, }, - [134] = { - [2] = alias_sym_type_identifier, + [131] = { + [1] = alias_sym_type_identifier, }, [135] = { [2] = alias_sym_type_identifier, @@ -3677,147 +3688,147 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [2] = alias_sym_type_identifier, }, [137] = { + [2] = alias_sym_type_identifier, + }, + [139] = { [0] = alias_sym_field_identifier, }, - [140] = { + [142] = { [2] = alias_sym_type_identifier, }, - [141] = { + [143] = { [3] = alias_sym_type_identifier, }, - [146] = { + [148] = { [0] = alias_sym_type_identifier, }, - [148] = { + [151] = { [1] = alias_sym_type_identifier, }, - [150] = { + [153] = { [2] = alias_sym_shorthand_field_identifier, }, - [151] = { + [154] = { [0] = alias_sym_field_identifier, }, - [156] = { + [159] = { [2] = alias_sym_type_identifier, }, - [157] = { + [160] = { [2] = alias_sym_type_identifier, }, - [160] = { + [163] = { [1] = alias_sym_type_identifier, }, - [161] = { + [164] = { [2] = alias_sym_type_identifier, }, - [162] = { + [165] = { [2] = alias_sym_type_identifier, }, - [170] = { - [0] = alias_sym_closure_pattern, - }, - [176] = { + [178] = { [0] = alias_sym_field_identifier, }, - [177] = { + [179] = { [1] = alias_sym_type_identifier, }, - [178] = { + [180] = { [1] = alias_sym_type_identifier, }, - [180] = { + [182] = { [2] = alias_sym_type_identifier, }, - [181] = { + [183] = { [2] = alias_sym_type_identifier, }, - [182] = { + [184] = { [2] = alias_sym_type_identifier, }, - [184] = { + [187] = { [1] = alias_sym_field_identifier, }, - [188] = { + [191] = { [2] = alias_sym_type_identifier, }, - [189] = { + [192] = { [3] = alias_sym_type_identifier, }, - [190] = { + [193] = { [3] = alias_sym_type_identifier, }, - [191] = { + [194] = { [3] = alias_sym_type_identifier, }, - [195] = { + [198] = { [0] = alias_sym_type_identifier, }, - [197] = { + [200] = { [1] = alias_sym_field_identifier, }, - [204] = { + [207] = { [2] = alias_sym_type_identifier, }, - [206] = { + [209] = { [3] = alias_sym_type_identifier, }, - [207] = { + [210] = { [3] = alias_sym_type_identifier, }, - [210] = { + [213] = { [2] = alias_sym_type_identifier, }, - [217] = { + [220] = { [1] = alias_sym_field_identifier, }, - [218] = { - [3] = alias_sym_type_identifier, - }, - [219] = { + [221] = { [3] = alias_sym_type_identifier, }, [222] = { [3] = alias_sym_type_identifier, }, - [223] = { + [225] = { [3] = alias_sym_type_identifier, }, [226] = { + [3] = alias_sym_type_identifier, + }, + [229] = { [2] = alias_sym_type_identifier, }, - [230] = { + [233] = { [2] = alias_sym_type_identifier, }, - [231] = { + [234] = { [3] = alias_sym_type_identifier, }, - [232] = { + [235] = { [3] = alias_sym_type_identifier, }, - [233] = { + [236] = { [3] = alias_sym_type_identifier, }, - [239] = { + [242] = { [2] = alias_sym_field_identifier, }, - [242] = { + [245] = { [3] = alias_sym_type_identifier, }, - [249] = { + [252] = { [3] = alias_sym_type_identifier, }, - [251] = { + [254] = { [4] = alias_sym_type_identifier, }, - [252] = { + [255] = { [4] = alias_sym_type_identifier, }, - [255] = { + [258] = { [3] = alias_sym_type_identifier, }, - [261] = { + [264] = { [3] = alias_sym_type_identifier, }, - [267] = { + [270] = { [4] = alias_sym_type_identifier, }, }; @@ -3829,9 +3840,6 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym__let_chain, 2, sym__let_chain, alias_sym_let_chain, - sym_closure_expression, 2, - sym_closure_expression, - alias_sym_closure_pattern, 0, }; @@ -3839,176 +3847,176 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 4, + [3] = 3, + [4] = 2, [5] = 5, - [6] = 2, - [7] = 4, - [8] = 8, - [9] = 9, - [10] = 8, - [11] = 9, - [12] = 4, - [13] = 13, - [14] = 9, - [15] = 8, - [16] = 8, - [17] = 4, - [18] = 13, + [6] = 6, + [7] = 3, + [8] = 3, + [9] = 5, + [10] = 6, + [11] = 2, + [12] = 5, + [13] = 6, + [14] = 5, + [15] = 6, + [16] = 2, + [17] = 3, + [18] = 18, [19] = 2, - [20] = 9, - [21] = 21, - [22] = 9, - [23] = 4, - [24] = 8, - [25] = 2, - [26] = 4, - [27] = 9, - [28] = 28, - [29] = 4, - [30] = 2, - [31] = 8, - [32] = 8, - [33] = 9, - [34] = 2, + [20] = 20, + [21] = 6, + [22] = 5, + [23] = 3, + [24] = 2, + [25] = 3, + [26] = 3, + [27] = 6, + [28] = 6, + [29] = 5, + [30] = 5, + [31] = 31, + [32] = 2, + [33] = 33, + [34] = 20, [35] = 35, [36] = 36, [37] = 37, - [38] = 38, + [38] = 37, [39] = 39, - [40] = 37, - [41] = 39, - [42] = 42, + [40] = 40, + [41] = 41, + [42] = 39, [43] = 35, - [44] = 35, - [45] = 37, - [46] = 39, - [47] = 37, - [48] = 39, - [49] = 36, - [50] = 39, + [44] = 41, + [45] = 35, + [46] = 37, + [47] = 35, + [48] = 40, + [49] = 37, + [50] = 36, [51] = 39, - [52] = 38, - [53] = 37, - [54] = 37, - [55] = 38, - [56] = 35, - [57] = 35, - [58] = 42, - [59] = 36, - [60] = 42, - [61] = 37, - [62] = 38, - [63] = 39, - [64] = 37, - [65] = 39, - [66] = 39, - [67] = 42, - [68] = 37, - [69] = 38, - [70] = 36, - [71] = 42, - [72] = 36, - [73] = 37, - [74] = 39, + [52] = 39, + [53] = 39, + [54] = 40, + [55] = 37, + [56] = 37, + [57] = 40, + [58] = 39, + [59] = 41, + [60] = 39, + [61] = 39, + [62] = 36, + [63] = 41, + [64] = 36, + [65] = 37, + [66] = 37, + [67] = 67, + [68] = 68, + [69] = 68, + [70] = 70, + [71] = 67, + [72] = 72, + [73] = 70, + [74] = 72, [75] = 75, [76] = 76, [77] = 77, [78] = 78, - [79] = 75, - [80] = 78, - [81] = 76, - [82] = 77, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 79, [83] = 83, - [84] = 84, + [84] = 83, [85] = 85, - [86] = 86, + [86] = 83, [87] = 87, - [88] = 83, - [89] = 86, - [90] = 87, - [91] = 91, - [92] = 85, - [93] = 85, - [94] = 94, - [95] = 94, - [96] = 83, + [88] = 80, + [89] = 89, + [90] = 90, + [91] = 78, + [92] = 81, + [93] = 78, + [94] = 75, + [95] = 87, + [96] = 90, [97] = 87, - [98] = 98, - [99] = 87, - [100] = 83, - [101] = 101, - [102] = 102, - [103] = 101, + [98] = 77, + [99] = 78, + [100] = 76, + [101] = 89, + [102] = 83, + [103] = 87, [104] = 104, [105] = 105, - [106] = 91, - [107] = 102, + [106] = 106, + [107] = 105, [108] = 104, - [109] = 85, - [110] = 105, - [111] = 84, + [109] = 109, + [110] = 110, + [111] = 111, [112] = 112, [113] = 113, [114] = 114, - [115] = 113, - [116] = 114, - [117] = 117, - [118] = 118, + [115] = 115, + [116] = 116, + [117] = 115, + [118] = 113, [119] = 119, - [120] = 120, - [121] = 121, - [122] = 119, + [120] = 116, + [121] = 116, + [122] = 122, [123] = 123, - [124] = 124, - [125] = 120, - [126] = 120, - [127] = 127, - [128] = 127, - [129] = 121, - [130] = 130, - [131] = 123, - [132] = 119, - [133] = 133, - [134] = 134, - [135] = 123, - [136] = 136, - [137] = 134, - [138] = 120, - [139] = 123, - [140] = 120, - [141] = 130, + [124] = 111, + [125] = 113, + [126] = 116, + [127] = 115, + [128] = 123, + [129] = 129, + [130] = 119, + [131] = 110, + [132] = 113, + [133] = 129, + [134] = 116, + [135] = 114, + [136] = 113, + [137] = 115, + [138] = 115, + [139] = 139, + [140] = 139, + [141] = 141, [142] = 142, - [143] = 123, - [144] = 119, - [145] = 123, - [146] = 120, - [147] = 119, - [148] = 142, - [149] = 120, - [150] = 119, - [151] = 133, - [152] = 123, - [153] = 119, + [143] = 143, + [144] = 139, + [145] = 145, + [146] = 146, + [147] = 139, + [148] = 148, + [149] = 149, + [150] = 150, + [151] = 148, + [152] = 152, + [153] = 153, [154] = 154, - [155] = 154, - [156] = 154, + [155] = 155, + [156] = 156, [157] = 157, - [158] = 154, + [158] = 158, [159] = 159, [160] = 160, [161] = 161, - [162] = 154, + [162] = 162, [163] = 163, [164] = 164, - [165] = 165, - [166] = 166, + [165] = 153, + [166] = 159, [167] = 167, - [168] = 168, + [168] = 153, [169] = 169, [170] = 170, [171] = 171, - [172] = 172, + [172] = 153, [173] = 173, [174] = 174, [175] = 175, @@ -4017,328 +4025,328 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [178] = 178, [179] = 179, [180] = 180, - [181] = 164, + [181] = 181, [182] = 182, - [183] = 164, - [184] = 177, - [185] = 180, - [186] = 175, - [187] = 178, - [188] = 188, - [189] = 171, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 152, + [188] = 174, + [189] = 189, [190] = 190, [191] = 191, - [192] = 167, + [192] = 192, [193] = 193, - [194] = 194, - [195] = 165, + [194] = 163, + [195] = 158, [196] = 196, [197] = 197, - [198] = 198, + [198] = 149, [199] = 199, - [200] = 200, - [201] = 201, - [202] = 200, + [200] = 190, + [201] = 164, + [202] = 202, [203] = 203, - [204] = 199, - [205] = 205, - [206] = 206, + [204] = 174, + [205] = 182, + [206] = 193, [207] = 207, - [208] = 208, - [209] = 209, - [210] = 165, - [211] = 198, - [212] = 168, + [208] = 202, + [209] = 185, + [210] = 210, + [211] = 211, + [212] = 181, [213] = 213, - [214] = 213, - [215] = 203, - [216] = 216, - [217] = 197, - [218] = 218, - [219] = 219, - [220] = 165, + [214] = 174, + [215] = 215, + [216] = 152, + [217] = 192, + [218] = 191, + [219] = 215, + [220] = 170, [221] = 221, [222] = 222, - [223] = 223, - [224] = 168, - [225] = 225, + [223] = 213, + [224] = 164, + [225] = 178, [226] = 226, - [227] = 173, - [228] = 200, - [229] = 199, - [230] = 213, - [231] = 165, - [232] = 232, - [233] = 193, - [234] = 169, - [235] = 198, - [236] = 197, - [237] = 165, - [238] = 165, - [239] = 239, - [240] = 221, - [241] = 169, - [242] = 213, - [243] = 243, - [244] = 165, - [245] = 245, + [227] = 215, + [228] = 196, + [229] = 174, + [230] = 230, + [231] = 211, + [232] = 191, + [233] = 233, + [234] = 207, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 189, + [239] = 167, + [240] = 193, + [241] = 174, + [242] = 242, + [243] = 155, + [244] = 207, + [245] = 159, [246] = 246, [247] = 247, - [248] = 203, - [249] = 180, + [248] = 211, + [249] = 182, [250] = 250, - [251] = 168, - [252] = 252, - [253] = 193, - [254] = 178, - [255] = 188, - [256] = 180, - [257] = 164, - [258] = 219, - [259] = 177, - [260] = 167, - [261] = 175, - [262] = 171, - [263] = 167, - [264] = 193, - [265] = 265, - [266] = 165, - [267] = 171, - [268] = 197, - [269] = 198, - [270] = 199, - [271] = 200, - [272] = 252, - [273] = 175, - [274] = 274, + [251] = 251, + [252] = 213, + [253] = 253, + [254] = 163, + [255] = 255, + [256] = 256, + [257] = 257, + [258] = 161, + [259] = 152, + [260] = 215, + [261] = 164, + [262] = 213, + [263] = 176, + [264] = 211, + [265] = 207, + [266] = 193, + [267] = 182, + [268] = 268, + [269] = 174, + [270] = 149, + [271] = 191, + [272] = 196, + [273] = 158, + [274] = 163, [275] = 275, - [276] = 177, - [277] = 277, - [278] = 178, - [279] = 279, - [280] = 164, + [276] = 276, + [277] = 221, + [278] = 222, + [279] = 159, + [280] = 148, [281] = 281, - [282] = 282, - [283] = 180, - [284] = 232, - [285] = 178, - [286] = 243, - [287] = 287, - [288] = 288, + [282] = 174, + [283] = 148, + [284] = 158, + [285] = 221, + [286] = 246, + [287] = 196, + [288] = 149, [289] = 289, - [290] = 290, - [291] = 291, - [292] = 177, - [293] = 203, - [294] = 175, - [295] = 171, - [296] = 167, - [297] = 174, - [298] = 169, - [299] = 193, - [300] = 165, - [301] = 301, - [302] = 197, - [303] = 291, - [304] = 198, - [305] = 199, - [306] = 200, - [307] = 246, + [290] = 289, + [291] = 173, + [292] = 289, + [293] = 293, + [294] = 293, + [295] = 293, + [296] = 296, + [297] = 297, + [298] = 296, + [299] = 296, + [300] = 300, + [301] = 300, + [302] = 297, + [303] = 297, + [304] = 300, + [305] = 305, + [306] = 305, + [307] = 305, [308] = 308, - [309] = 247, - [310] = 245, - [311] = 169, - [312] = 312, - [313] = 194, - [314] = 288, + [309] = 309, + [310] = 310, + [311] = 311, + [312] = 311, + [313] = 311, + [314] = 314, [315] = 315, - [316] = 221, - [317] = 222, - [318] = 265, - [319] = 319, + [316] = 316, + [317] = 314, + [318] = 318, + [319] = 315, [320] = 320, - [321] = 320, - [322] = 319, - [323] = 320, - [324] = 319, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 322, [325] = 325, [326] = 326, - [327] = 327, - [328] = 328, - [329] = 327, - [330] = 328, - [331] = 326, - [332] = 328, - [333] = 327, + [327] = 321, + [328] = 320, + [329] = 318, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, [334] = 334, - [335] = 334, - [336] = 326, - [337] = 334, + [335] = 335, + [336] = 336, + [337] = 335, [338] = 338, [339] = 339, [340] = 340, [341] = 341, [342] = 342, [343] = 343, - [344] = 344, - [345] = 344, + [344] = 340, + [345] = 334, [346] = 346, - [347] = 340, - [348] = 346, + [347] = 347, + [348] = 334, [349] = 349, - [350] = 350, - [351] = 342, - [352] = 352, - [353] = 350, - [354] = 349, - [355] = 355, - [356] = 355, - [357] = 355, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 360, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 359, - [367] = 367, - [368] = 368, - [369] = 365, - [370] = 359, - [371] = 367, - [372] = 372, - [373] = 372, - [374] = 360, - [375] = 362, - [376] = 364, - [377] = 377, - [378] = 377, - [379] = 365, - [380] = 359, - [381] = 367, - [382] = 382, - [383] = 382, - [384] = 362, - [385] = 364, - [386] = 365, - [387] = 359, - [388] = 367, - [389] = 389, - [390] = 367, - [391] = 359, - [392] = 365, + [350] = 339, + [351] = 351, + [352] = 335, + [353] = 353, + [354] = 333, + [355] = 353, + [356] = 356, + [357] = 351, + [358] = 347, + [359] = 346, + [360] = 336, + [361] = 341, + [362] = 340, + [363] = 332, + [364] = 351, + [365] = 343, + [366] = 340, + [367] = 336, + [368] = 353, + [369] = 349, + [370] = 353, + [371] = 336, + [372] = 340, + [373] = 373, + [374] = 351, + [375] = 349, + [376] = 334, + [377] = 340, + [378] = 336, + [379] = 349, + [380] = 333, + [381] = 334, + [382] = 351, + [383] = 373, + [384] = 336, + [385] = 353, + [386] = 353, + [387] = 349, + [388] = 342, + [389] = 334, + [390] = 349, + [391] = 351, + [392] = 392, [393] = 393, [394] = 394, [395] = 395, - [396] = 389, - [397] = 394, - [398] = 395, - [399] = 360, - [400] = 360, - [401] = 362, - [402] = 364, - [403] = 364, - [404] = 362, - [405] = 362, - [406] = 360, - [407] = 365, - [408] = 364, - [409] = 367, + [396] = 396, + [397] = 397, + [398] = 398, + [399] = 399, + [400] = 400, + [401] = 401, + [402] = 402, + [403] = 403, + [404] = 404, + [405] = 405, + [406] = 406, + [407] = 407, + [408] = 408, + [409] = 409, [410] = 410, [411] = 411, [412] = 412, - [413] = 412, + [413] = 394, [414] = 414, - [415] = 415, - [416] = 415, - [417] = 411, - [418] = 414, - [419] = 414, - [420] = 415, - [421] = 421, - [422] = 422, - [423] = 423, - [424] = 424, - [425] = 425, - [426] = 426, + [415] = 338, + [416] = 416, + [417] = 417, + [418] = 418, + [419] = 419, + [420] = 399, + [421] = 281, + [422] = 407, + [423] = 402, + [424] = 250, + [425] = 416, + [426] = 409, [427] = 427, - [428] = 368, + [428] = 428, [429] = 429, - [430] = 423, + [430] = 430, [431] = 431, [432] = 432, - [433] = 433, - [434] = 434, - [435] = 435, - [436] = 436, + [433] = 432, + [434] = 432, + [435] = 431, + [436] = 431, [437] = 437, - [438] = 438, - [439] = 439, + [438] = 437, + [439] = 437, [440] = 440, - [441] = 441, + [441] = 440, [442] = 442, - [443] = 443, - [444] = 444, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 432, - [449] = 449, - [450] = 450, - [451] = 429, - [452] = 275, - [453] = 444, - [454] = 454, - [455] = 440, - [456] = 433, - [457] = 239, - [458] = 458, - [459] = 124, - [460] = 157, - [461] = 163, - [462] = 159, - [463] = 161, - [464] = 160, - [465] = 465, + [443] = 440, + [444] = 112, + [445] = 141, + [446] = 146, + [447] = 145, + [448] = 142, + [449] = 143, + [450] = 237, + [451] = 197, + [452] = 184, + [453] = 150, + [454] = 156, + [455] = 175, + [456] = 177, + [457] = 226, + [458] = 203, + [459] = 236, + [460] = 186, + [461] = 171, + [462] = 230, + [463] = 169, + [464] = 464, + [465] = 199, [466] = 466, - [467] = 216, - [468] = 277, - [469] = 279, - [470] = 205, - [471] = 209, - [472] = 208, - [473] = 179, - [474] = 465, - [475] = 250, - [476] = 170, - [477] = 201, - [478] = 465, - [479] = 223, - [480] = 281, - [481] = 207, - [482] = 226, - [483] = 465, - [484] = 166, - [485] = 191, + [467] = 210, + [468] = 179, + [469] = 469, + [470] = 469, + [471] = 469, + [472] = 469, + [473] = 473, + [474] = 474, + [475] = 475, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 484, + [485] = 485, [486] = 486, - [487] = 190, + [487] = 487, [488] = 488, [489] = 489, [490] = 490, - [491] = 490, - [492] = 489, - [493] = 489, - [494] = 488, - [495] = 488, - [496] = 490, - [497] = 489, + [491] = 491, + [492] = 492, + [493] = 493, + [494] = 494, + [495] = 495, + [496] = 496, + [497] = 497, [498] = 498, - [499] = 498, + [499] = 499, [500] = 500, [501] = 501, - [502] = 498, + [502] = 502, [503] = 503, [504] = 504, [505] = 505, @@ -4349,25 +4357,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [510] = 510, [511] = 511, [512] = 512, - [513] = 157, + [513] = 513, [514] = 514, - [515] = 163, + [515] = 515, [516] = 516, [517] = 517, [518] = 518, [519] = 519, [520] = 520, [521] = 521, - [522] = 522, + [522] = 475, [523] = 523, [524] = 524, [525] = 525, [526] = 526, [527] = 527, [528] = 528, - [529] = 529, + [529] = 143, [530] = 530, - [531] = 159, + [531] = 531, [532] = 532, [533] = 533, [534] = 534, @@ -4400,7 +4408,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [561] = 561, [562] = 562, [563] = 563, - [564] = 161, + [564] = 564, [565] = 565, [566] = 566, [567] = 567, @@ -4435,7 +4443,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [596] = 596, [597] = 597, [598] = 598, - [599] = 160, + [599] = 599, [600] = 600, [601] = 601, [602] = 602, @@ -4444,7 +4452,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [605] = 605, [606] = 606, [607] = 607, - [608] = 512, + [608] = 608, [609] = 609, [610] = 610, [611] = 611, @@ -4474,10 +4482,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [635] = 635, [636] = 636, [637] = 637, - [638] = 638, + [638] = 622, [639] = 639, [640] = 640, - [641] = 641, + [641] = 574, [642] = 642, [643] = 643, [644] = 644, @@ -4488,9 +4496,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [649] = 649, [650] = 650, [651] = 651, - [652] = 652, + [652] = 141, [653] = 653, - [654] = 654, + [654] = 142, [655] = 655, [656] = 656, [657] = 657, @@ -4530,7 +4538,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [691] = 691, [692] = 692, [693] = 693, - [694] = 694, + [694] = 622, [695] = 695, [696] = 696, [697] = 697, @@ -4549,8 +4557,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [710] = 710, [711] = 711, [712] = 712, - [713] = 594, - [714] = 714, + [713] = 713, + [714] = 622, [715] = 715, [716] = 716, [717] = 717, @@ -4561,7 +4569,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [722] = 722, [723] = 723, [724] = 724, - [725] = 725, + [725] = 146, [726] = 726, [727] = 727, [728] = 728, @@ -4577,7 +4585,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [738] = 738, [739] = 739, [740] = 740, - [741] = 741, + [741] = 145, [742] = 742, [743] = 743, [744] = 744, @@ -4585,14 +4593,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [746] = 746, [747] = 747, [748] = 748, - [749] = 749, + [749] = 748, [750] = 750, [751] = 751, [752] = 752, [753] = 753, - [754] = 754, + [754] = 753, [755] = 755, - [756] = 756, + [756] = 752, [757] = 757, [758] = 758, [759] = 759, @@ -4607,104 +4615,104 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [768] = 768, [769] = 769, [770] = 770, - [771] = 771, - [772] = 772, - [773] = 773, + [771] = 768, + [772] = 770, + [773] = 769, [774] = 774, [775] = 775, - [776] = 775, + [776] = 776, [777] = 777, [778] = 777, [779] = 779, - [780] = 779, - [781] = 781, + [780] = 780, + [781] = 775, [782] = 782, [783] = 783, - [784] = 784, - [785] = 785, - [786] = 786, - [787] = 787, + [784] = 783, + [785] = 776, + [786] = 782, + [787] = 779, [788] = 788, [789] = 789, [790] = 790, [791] = 791, [792] = 792, [793] = 793, - [794] = 794, - [795] = 790, - [796] = 789, + [794] = 793, + [795] = 795, + [796] = 796, [797] = 797, [798] = 798, - [799] = 799, + [799] = 795, [800] = 800, - [801] = 797, + [801] = 790, [802] = 802, [803] = 798, - [804] = 804, - [805] = 804, - [806] = 806, - [807] = 802, - [808] = 808, - [809] = 809, + [804] = 802, + [805] = 793, + [806] = 800, + [807] = 807, + [808] = 791, + [809] = 795, [810] = 810, [811] = 811, [812] = 812, - [813] = 813, - [814] = 814, + [813] = 802, + [814] = 807, [815] = 815, - [816] = 816, + [816] = 795, [817] = 817, [818] = 818, - [819] = 819, - [820] = 819, - [821] = 821, + [819] = 811, + [820] = 796, + [821] = 792, [822] = 822, - [823] = 823, - [824] = 818, - [825] = 825, - [826] = 826, - [827] = 827, - [828] = 817, - [829] = 826, - [830] = 808, + [823] = 802, + [824] = 824, + [825] = 793, + [826] = 812, + [827] = 818, + [828] = 828, + [829] = 829, + [830] = 830, [831] = 831, [832] = 832, - [833] = 833, - [834] = 825, - [835] = 826, - [836] = 825, - [837] = 826, - [838] = 825, - [839] = 832, - [840] = 823, - [841] = 821, - [842] = 831, - [843] = 822, - [844] = 844, - [845] = 845, - [846] = 846, - [847] = 845, - [848] = 596, - [849] = 845, - [850] = 845, - [851] = 851, + [833] = 829, + [834] = 834, + [835] = 835, + [836] = 836, + [837] = 831, + [838] = 838, + [839] = 839, + [840] = 840, + [841] = 829, + [842] = 840, + [843] = 831, + [844] = 840, + [845] = 828, + [846] = 839, + [847] = 847, + [848] = 839, + [849] = 829, + [850] = 850, + [851] = 838, [852] = 852, [853] = 853, [854] = 854, [855] = 855, [856] = 856, - [857] = 851, - [858] = 855, - [859] = 854, - [860] = 852, + [857] = 857, + [858] = 858, + [859] = 859, + [860] = 860, [861] = 861, - [862] = 861, - [863] = 853, - [864] = 851, - [865] = 854, - [866] = 855, - [867] = 854, - [868] = 853, + [862] = 862, + [863] = 863, + [864] = 864, + [865] = 865, + [866] = 866, + [867] = 867, + [868] = 868, [869] = 869, [870] = 870, [871] = 871, @@ -4716,7 +4724,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [877] = 877, [878] = 878, [879] = 879, - [880] = 872, + [880] = 880, [881] = 874, [882] = 882, [883] = 883, @@ -4724,180 +4732,180 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [885] = 885, [886] = 886, [887] = 887, - [888] = 870, + [888] = 854, [889] = 889, - [890] = 890, - [891] = 891, + [890] = 873, + [891] = 868, [892] = 892, - [893] = 893, + [893] = 869, [894] = 894, [895] = 895, [896] = 896, - [897] = 885, + [897] = 857, [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, + [899] = 855, + [900] = 872, + [901] = 864, [902] = 902, - [903] = 898, - [904] = 904, - [905] = 877, + [903] = 878, + [904] = 879, + [905] = 905, [906] = 906, - [907] = 907, + [907] = 852, [908] = 908, - [909] = 909, + [909] = 886, [910] = 910, [911] = 911, [912] = 912, [913] = 913, [914] = 914, - [915] = 915, - [916] = 916, - [917] = 913, - [918] = 884, - [919] = 919, - [920] = 907, - [921] = 921, - [922] = 912, - [923] = 904, - [924] = 876, - [925] = 908, + [915] = 856, + [916] = 880, + [917] = 859, + [918] = 918, + [919] = 889, + [920] = 870, + [921] = 885, + [922] = 857, + [923] = 855, + [924] = 875, + [925] = 925, [926] = 926, - [927] = 915, - [928] = 901, + [927] = 867, + [928] = 928, [929] = 929, - [930] = 930, - [931] = 895, - [932] = 932, - [933] = 933, + [930] = 856, + [931] = 884, + [932] = 855, + [933] = 852, [934] = 934, - [935] = 935, - [936] = 914, - [937] = 916, + [935] = 912, + [936] = 911, + [937] = 883, [938] = 938, - [939] = 939, - [940] = 894, - [941] = 941, - [942] = 893, - [943] = 943, + [939] = 925, + [940] = 940, + [941] = 858, + [942] = 914, + [943] = 857, [944] = 944, - [945] = 945, - [946] = 892, - [947] = 935, - [948] = 930, - [949] = 949, - [950] = 900, - [951] = 916, + [945] = 887, + [946] = 929, + [947] = 871, + [948] = 948, + [949] = 938, + [950] = 950, + [951] = 951, [952] = 952, - [953] = 944, - [954] = 954, - [955] = 882, - [956] = 956, - [957] = 891, - [958] = 887, - [959] = 886, - [960] = 890, - [961] = 869, - [962] = 938, - [963] = 963, - [964] = 963, - [965] = 952, - [966] = 966, - [967] = 935, - [968] = 896, - [969] = 899, - [970] = 933, - [971] = 971, - [972] = 943, - [973] = 973, - [974] = 974, - [975] = 889, - [976] = 902, - [977] = 910, - [978] = 954, - [979] = 939, - [980] = 926, - [981] = 952, - [982] = 875, - [983] = 963, - [984] = 984, - [985] = 945, - [986] = 971, - [987] = 906, - [988] = 988, - [989] = 919, - [990] = 871, - [991] = 912, - [992] = 992, - [993] = 913, - [994] = 912, - [995] = 995, - [996] = 945, - [997] = 895, - [998] = 943, - [999] = 938, - [1000] = 884, - [1001] = 916, - [1002] = 941, - [1003] = 913, - [1004] = 988, - [1005] = 954, + [953] = 953, + [954] = 908, + [955] = 951, + [956] = 950, + [957] = 926, + [958] = 958, + [959] = 882, + [960] = 960, + [961] = 961, + [962] = 962, + [963] = 866, + [964] = 964, + [965] = 865, + [966] = 914, + [967] = 906, + [968] = 871, + [969] = 950, + [970] = 905, + [971] = 951, + [972] = 964, + [973] = 950, + [974] = 929, + [975] = 863, + [976] = 926, + [977] = 902, + [978] = 978, + [979] = 898, + [980] = 864, + [981] = 938, + [982] = 607, + [983] = 862, + [984] = 877, + [985] = 944, + [986] = 860, + [987] = 896, + [988] = 944, + [989] = 948, + [990] = 895, + [991] = 964, + [992] = 929, + [993] = 861, + [994] = 948, + [995] = 876, + [996] = 996, + [997] = 997, + [998] = 998, + [999] = 999, + [1000] = 1000, + [1001] = 607, + [1002] = 1002, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, [1006] = 1006, [1007] = 1007, [1008] = 1008, [1009] = 1009, - [1010] = 596, + [1010] = 1010, [1011] = 1011, [1012] = 1012, [1013] = 1013, - [1014] = 1014, - [1015] = 1015, - [1016] = 160, + [1014] = 154, + [1015] = 250, + [1016] = 146, [1017] = 1017, - [1018] = 157, - [1019] = 163, - [1020] = 1020, - [1021] = 1021, + [1018] = 142, + [1019] = 141, + [1020] = 281, + [1021] = 145, [1022] = 1022, - [1023] = 1023, - [1024] = 275, - [1025] = 239, + [1023] = 160, + [1024] = 143, + [1025] = 1025, [1026] = 1026, - [1027] = 274, - [1028] = 159, - [1029] = 161, - [1030] = 172, - [1031] = 1031, - [1032] = 1032, + [1027] = 549, + [1028] = 617, + [1029] = 629, + [1030] = 1030, + [1031] = 597, + [1032] = 603, [1033] = 1033, - [1034] = 625, - [1035] = 746, - [1036] = 545, + [1034] = 1034, + [1035] = 1035, + [1036] = 1036, [1037] = 1037, [1038] = 1038, - [1039] = 536, + [1039] = 1039, [1040] = 1040, [1041] = 1041, [1042] = 1042, - [1043] = 1043, - [1044] = 702, + [1043] = 112, + [1044] = 1044, [1045] = 1045, - [1046] = 1046, + [1046] = 1040, [1047] = 1047, [1048] = 1048, - [1049] = 1049, - [1050] = 1011, + [1049] = 338, + [1050] = 1050, [1051] = 1051, - [1052] = 1052, + [1052] = 1040, [1053] = 1053, [1054] = 1054, [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 368, + [1058] = 1058, [1059] = 1059, [1060] = 1060, - [1061] = 1061, + [1061] = 1053, [1062] = 1062, [1063] = 1063, [1064] = 1064, @@ -4913,1012 +4921,1012 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1074] = 1074, [1075] = 1075, [1076] = 1076, - [1077] = 1077, + [1077] = 996, [1078] = 1078, - [1079] = 124, + [1079] = 1079, [1080] = 1080, - [1081] = 1081, + [1081] = 1002, [1082] = 1082, - [1083] = 1083, + [1083] = 1053, [1084] = 1084, - [1085] = 1085, + [1085] = 645, [1086] = 1086, [1087] = 1087, - [1088] = 730, - [1089] = 503, - [1090] = 433, - [1091] = 179, - [1092] = 527, - [1093] = 595, - [1094] = 586, - [1095] = 605, - [1096] = 610, - [1097] = 553, - [1098] = 634, - [1099] = 526, - [1100] = 525, - [1101] = 613, - [1102] = 618, - [1103] = 619, - [1104] = 518, - [1105] = 508, + [1088] = 1088, + [1089] = 502, + [1090] = 479, + [1091] = 1091, + [1092] = 1092, + [1093] = 651, + [1094] = 407, + [1095] = 562, + [1096] = 558, + [1097] = 565, + [1098] = 618, + [1099] = 557, + [1100] = 504, + [1101] = 1101, + [1102] = 646, + [1103] = 644, + [1104] = 1104, + [1105] = 568, [1106] = 1106, - [1107] = 622, - [1108] = 507, - [1109] = 506, - [1110] = 543, - [1111] = 537, - [1112] = 550, - [1113] = 624, - [1114] = 555, - [1115] = 208, - [1116] = 209, - [1117] = 641, - [1118] = 642, - [1119] = 644, - [1120] = 649, - [1121] = 650, - [1122] = 660, - [1123] = 1123, - [1124] = 239, - [1125] = 558, - [1126] = 674, - [1127] = 560, + [1107] = 625, + [1108] = 1108, + [1109] = 186, + [1110] = 634, + [1111] = 708, + [1112] = 1112, + [1113] = 628, + [1114] = 1114, + [1115] = 627, + [1116] = 1116, + [1117] = 512, + [1118] = 656, + [1119] = 572, + [1120] = 490, + [1121] = 145, + [1122] = 494, + [1123] = 499, + [1124] = 1124, + [1125] = 573, + [1126] = 1126, + [1127] = 577, [1128] = 1128, - [1129] = 562, - [1130] = 570, - [1131] = 588, - [1132] = 609, - [1133] = 614, - [1134] = 621, - [1135] = 630, - [1136] = 631, - [1137] = 632, - [1138] = 1138, - [1139] = 1139, - [1140] = 633, - [1141] = 636, - [1142] = 638, - [1143] = 639, - [1144] = 643, - [1145] = 1145, - [1146] = 655, - [1147] = 1147, - [1148] = 163, - [1149] = 250, - [1150] = 685, - [1151] = 1151, - [1152] = 693, - [1153] = 1153, + [1129] = 607, + [1130] = 1130, + [1131] = 624, + [1132] = 503, + [1133] = 507, + [1134] = 492, + [1135] = 685, + [1136] = 621, + [1137] = 203, + [1138] = 688, + [1139] = 695, + [1140] = 474, + [1141] = 700, + [1142] = 704, + [1143] = 1143, + [1144] = 705, + [1145] = 706, + [1146] = 707, + [1147] = 709, + [1148] = 736, + [1149] = 1149, + [1150] = 610, + [1151] = 236, + [1152] = 160, + [1153] = 710, [1154] = 1154, [1155] = 1155, - [1156] = 1156, - [1157] = 1157, - [1158] = 1158, - [1159] = 1159, - [1160] = 1160, - [1161] = 734, - [1162] = 770, - [1163] = 758, - [1164] = 761, - [1165] = 764, - [1166] = 689, - [1167] = 686, - [1168] = 766, - [1169] = 774, - [1170] = 773, - [1171] = 768, - [1172] = 759, - [1173] = 757, - [1174] = 277, - [1175] = 549, - [1176] = 752, - [1177] = 552, - [1178] = 1178, - [1179] = 572, - [1180] = 574, - [1181] = 1181, - [1182] = 1182, - [1183] = 741, - [1184] = 579, - [1185] = 723, - [1186] = 580, - [1187] = 589, - [1188] = 711, - [1189] = 592, - [1190] = 602, - [1191] = 623, - [1192] = 627, - [1193] = 701, - [1194] = 628, - [1195] = 696, - [1196] = 656, - [1197] = 662, - [1198] = 672, - [1199] = 678, - [1200] = 679, - [1201] = 654, - [1202] = 688, - [1203] = 694, - [1204] = 640, - [1205] = 695, - [1206] = 731, - [1207] = 732, - [1208] = 733, - [1209] = 740, - [1210] = 706, - [1211] = 1211, - [1212] = 216, - [1213] = 756, - [1214] = 754, - [1215] = 753, - [1216] = 1216, - [1217] = 750, - [1218] = 749, - [1219] = 279, - [1220] = 205, - [1221] = 520, - [1222] = 556, - [1223] = 724, - [1224] = 583, - [1225] = 721, - [1226] = 587, - [1227] = 718, - [1228] = 593, - [1229] = 717, - [1230] = 699, - [1231] = 275, - [1232] = 597, - [1233] = 600, - [1234] = 603, - [1235] = 604, - [1236] = 606, - [1237] = 1237, - [1238] = 607, - [1239] = 615, - [1240] = 1240, - [1241] = 626, - [1242] = 635, - [1243] = 647, - [1244] = 648, - [1245] = 653, - [1246] = 663, - [1247] = 680, - [1248] = 1248, - [1249] = 681, - [1250] = 1250, - [1251] = 1251, - [1252] = 687, - [1253] = 703, - [1254] = 709, - [1255] = 1255, - [1256] = 722, - [1257] = 736, - [1258] = 745, - [1259] = 760, - [1260] = 157, - [1261] = 772, - [1262] = 159, - [1263] = 573, - [1264] = 1264, - [1265] = 565, + [1156] = 711, + [1157] = 409, + [1158] = 712, + [1159] = 713, + [1160] = 717, + [1161] = 718, + [1162] = 589, + [1163] = 719, + [1164] = 720, + [1165] = 728, + [1166] = 729, + [1167] = 731, + [1168] = 740, + [1169] = 742, + [1170] = 511, + [1171] = 534, + [1172] = 491, + [1173] = 683, + [1174] = 508, + [1175] = 599, + [1176] = 640, + [1177] = 535, + [1178] = 237, + [1179] = 593, + [1180] = 576, + [1181] = 584, + [1182] = 143, + [1183] = 745, + [1184] = 743, + [1185] = 642, + [1186] = 735, + [1187] = 226, + [1188] = 210, + [1189] = 1189, + [1190] = 1190, + [1191] = 402, + [1192] = 199, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 606, + [1197] = 1197, + [1198] = 665, + [1199] = 179, + [1200] = 722, + [1201] = 693, + [1202] = 691, + [1203] = 230, + [1204] = 690, + [1205] = 575, + [1206] = 175, + [1207] = 1207, + [1208] = 687, + [1209] = 686, + [1210] = 1210, + [1211] = 671, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 684, + [1216] = 571, + [1217] = 1217, + [1218] = 570, + [1219] = 650, + [1220] = 485, + [1221] = 1221, + [1222] = 141, + [1223] = 630, + [1224] = 669, + [1225] = 639, + [1226] = 1226, + [1227] = 682, + [1228] = 567, + [1229] = 1229, + [1230] = 681, + [1231] = 680, + [1232] = 586, + [1233] = 1233, + [1234] = 679, + [1235] = 146, + [1236] = 587, + [1237] = 566, + [1238] = 678, + [1239] = 564, + [1240] = 677, + [1241] = 676, + [1242] = 658, + [1243] = 1243, + [1244] = 674, + [1245] = 673, + [1246] = 169, + [1247] = 563, + [1248] = 561, + [1249] = 559, + [1250] = 659, + [1251] = 588, + [1252] = 1252, + [1253] = 556, + [1254] = 539, + [1255] = 250, + [1256] = 583, + [1257] = 538, + [1258] = 1258, + [1259] = 715, + [1260] = 649, + [1261] = 533, + [1262] = 667, + [1263] = 1263, + [1264] = 732, + [1265] = 1265, [1266] = 1266, - [1267] = 771, - [1268] = 1268, - [1269] = 1269, - [1270] = 1270, + [1267] = 532, + [1268] = 531, + [1269] = 664, + [1270] = 733, [1271] = 1271, [1272] = 1272, - [1273] = 429, + [1273] = 663, [1274] = 1274, - [1275] = 739, - [1276] = 1276, - [1277] = 737, - [1278] = 725, - [1279] = 715, - [1280] = 714, - [1281] = 524, - [1282] = 712, - [1283] = 523, - [1284] = 710, - [1285] = 509, - [1286] = 172, - [1287] = 1287, - [1288] = 444, - [1289] = 708, - [1290] = 190, - [1291] = 748, - [1292] = 707, - [1293] = 576, - [1294] = 522, - [1295] = 677, - [1296] = 528, - [1297] = 676, - [1298] = 671, - [1299] = 1299, - [1300] = 530, - [1301] = 541, - [1302] = 670, - [1303] = 547, - [1304] = 668, - [1305] = 1305, - [1306] = 514, - [1307] = 1307, - [1308] = 557, - [1309] = 667, - [1310] = 226, - [1311] = 559, - [1312] = 566, + [1275] = 1275, + [1276] = 739, + [1277] = 526, + [1278] = 1278, + [1279] = 197, + [1280] = 510, + [1281] = 657, + [1282] = 488, + [1283] = 527, + [1284] = 477, + [1285] = 156, + [1286] = 643, + [1287] = 637, + [1288] = 636, + [1289] = 550, + [1290] = 635, + [1291] = 523, + [1292] = 1292, + [1293] = 553, + [1294] = 633, + [1295] = 623, + [1296] = 177, + [1297] = 616, + [1298] = 518, + [1299] = 615, + [1300] = 613, + [1301] = 612, + [1302] = 611, + [1303] = 609, + [1304] = 1304, + [1305] = 608, + [1306] = 1306, + [1307] = 554, + [1308] = 672, + [1309] = 1309, + [1310] = 480, + [1311] = 1311, + [1312] = 1312, [1313] = 1313, - [1314] = 567, - [1315] = 666, - [1316] = 665, - [1317] = 659, - [1318] = 657, - [1319] = 652, - [1320] = 646, - [1321] = 577, - [1322] = 274, - [1323] = 281, - [1324] = 1324, - [1325] = 637, - [1326] = 620, - [1327] = 617, - [1328] = 616, - [1329] = 612, - [1330] = 1330, - [1331] = 611, - [1332] = 581, - [1333] = 551, - [1334] = 554, - [1335] = 548, - [1336] = 546, - [1337] = 1337, - [1338] = 544, - [1339] = 1339, - [1340] = 542, - [1341] = 540, - [1342] = 539, - [1343] = 538, - [1344] = 535, - [1345] = 533, - [1346] = 1346, - [1347] = 1347, - [1348] = 532, - [1349] = 529, - [1350] = 511, - [1351] = 510, - [1352] = 505, - [1353] = 516, - [1354] = 517, - [1355] = 201, - [1356] = 575, - [1357] = 578, - [1358] = 582, - [1359] = 584, - [1360] = 585, - [1361] = 590, + [1314] = 605, + [1315] = 604, + [1316] = 1316, + [1317] = 602, + [1318] = 601, + [1319] = 600, + [1320] = 598, + [1321] = 596, + [1322] = 595, + [1323] = 648, + [1324] = 594, + [1325] = 1325, + [1326] = 590, + [1327] = 585, + [1328] = 582, + [1329] = 1329, + [1330] = 581, + [1331] = 580, + [1332] = 1332, + [1333] = 1333, + [1334] = 579, + [1335] = 578, + [1336] = 1336, + [1337] = 631, + [1338] = 555, + [1339] = 505, + [1340] = 1340, + [1341] = 1341, + [1342] = 495, + [1343] = 551, + [1344] = 723, + [1345] = 171, + [1346] = 142, + [1347] = 489, + [1348] = 542, + [1349] = 541, + [1350] = 537, + [1351] = 530, + [1352] = 515, + [1353] = 514, + [1354] = 1354, + [1355] = 632, + [1356] = 1356, + [1357] = 513, + [1358] = 473, + [1359] = 509, + [1360] = 497, + [1361] = 486, [1362] = 1362, - [1363] = 598, - [1364] = 601, - [1365] = 645, - [1366] = 682, - [1367] = 692, - [1368] = 704, - [1369] = 719, - [1370] = 720, - [1371] = 726, - [1372] = 727, - [1373] = 728, + [1363] = 500, + [1364] = 496, + [1365] = 1365, + [1366] = 498, + [1367] = 493, + [1368] = 591, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, + [1372] = 569, + [1373] = 666, [1374] = 1374, - [1375] = 735, - [1376] = 747, - [1377] = 751, - [1378] = 755, - [1379] = 1379, - [1380] = 1380, - [1381] = 762, - [1382] = 763, - [1383] = 1383, - [1384] = 1384, - [1385] = 534, - [1386] = 521, - [1387] = 1387, + [1375] = 670, + [1376] = 660, + [1377] = 1377, + [1378] = 501, + [1379] = 675, + [1380] = 592, + [1381] = 1381, + [1382] = 1382, + [1383] = 506, + [1384] = 620, + [1385] = 1385, + [1386] = 614, + [1387] = 746, [1388] = 1388, - [1389] = 161, - [1390] = 1390, - [1391] = 1391, - [1392] = 629, - [1393] = 651, - [1394] = 744, - [1395] = 767, + [1389] = 281, + [1390] = 744, + [1391] = 476, + [1392] = 478, + [1393] = 481, + [1394] = 738, + [1395] = 737, [1396] = 1396, - [1397] = 1397, - [1398] = 1398, - [1399] = 1399, - [1400] = 504, - [1401] = 683, - [1402] = 675, - [1403] = 661, - [1404] = 743, - [1405] = 691, - [1406] = 684, - [1407] = 698, - [1408] = 700, - [1409] = 729, - [1410] = 738, - [1411] = 765, - [1412] = 1412, - [1413] = 664, - [1414] = 658, - [1415] = 561, - [1416] = 690, - [1417] = 742, - [1418] = 705, - [1419] = 716, - [1420] = 223, - [1421] = 1421, - [1422] = 207, - [1423] = 569, - [1424] = 568, - [1425] = 191, - [1426] = 563, - [1427] = 571, - [1428] = 170, + [1397] = 734, + [1398] = 730, + [1399] = 724, + [1400] = 399, + [1401] = 1401, + [1402] = 560, + [1403] = 482, + [1404] = 721, + [1405] = 655, + [1406] = 1406, + [1407] = 716, + [1408] = 484, + [1409] = 703, + [1410] = 701, + [1411] = 699, + [1412] = 698, + [1413] = 697, + [1414] = 696, + [1415] = 692, + [1416] = 689, + [1417] = 150, + [1418] = 552, + [1419] = 487, + [1420] = 668, + [1421] = 662, + [1422] = 516, + [1423] = 1423, + [1424] = 184, + [1425] = 653, + [1426] = 517, + [1427] = 519, + [1428] = 1428, [1429] = 1429, - [1430] = 440, - [1431] = 1431, - [1432] = 1432, - [1433] = 1433, - [1434] = 596, + [1430] = 661, + [1431] = 520, + [1432] = 154, + [1433] = 521, + [1434] = 524, [1435] = 1435, - [1436] = 1436, + [1436] = 619, [1437] = 1437, - [1438] = 1438, - [1439] = 1439, + [1438] = 525, + [1439] = 483, [1440] = 1440, - [1441] = 166, + [1441] = 1441, [1442] = 1442, - [1443] = 160, - [1444] = 1444, - [1445] = 1445, - [1446] = 1446, + [1443] = 1443, + [1444] = 528, + [1445] = 647, + [1446] = 548, [1447] = 1447, - [1448] = 1448, - [1449] = 1449, - [1450] = 1012, - [1451] = 1451, - [1452] = 806, - [1453] = 1453, - [1454] = 1454, + [1448] = 536, + [1449] = 540, + [1450] = 543, + [1451] = 544, + [1452] = 547, + [1453] = 545, + [1454] = 546, [1455] = 1455, [1456] = 1456, [1457] = 1457, [1458] = 1458, - [1459] = 1459, + [1459] = 607, [1460] = 1460, [1461] = 1461, [1462] = 1462, - [1463] = 1014, - [1464] = 1464, - [1465] = 1013, + [1463] = 1463, + [1464] = 997, + [1465] = 1003, [1466] = 1466, - [1467] = 1467, + [1467] = 653, [1468] = 1468, [1469] = 1469, - [1470] = 1470, + [1470] = 1004, [1471] = 1471, [1472] = 1472, [1473] = 1473, [1474] = 1474, - [1475] = 1045, - [1476] = 1015, + [1475] = 1475, + [1476] = 1476, [1477] = 1477, [1478] = 1478, [1479] = 1479, - [1480] = 1045, - [1481] = 1481, + [1480] = 1480, + [1481] = 1005, [1482] = 1482, - [1483] = 1483, - [1484] = 1031, - [1485] = 1022, - [1486] = 1026, - [1487] = 1032, - [1488] = 1023, - [1489] = 1017, + [1483] = 1471, + [1484] = 1484, + [1485] = 1485, + [1486] = 1486, + [1487] = 1487, + [1488] = 1488, + [1489] = 1489, [1490] = 1490, - [1491] = 1045, - [1492] = 1080, - [1493] = 1021, - [1494] = 844, - [1495] = 1495, - [1496] = 1490, - [1497] = 1483, - [1498] = 1495, - [1499] = 1495, - [1500] = 1020, - [1501] = 1483, - [1502] = 596, - [1503] = 1063, - [1504] = 1081, - [1505] = 1490, - [1506] = 1083, - [1507] = 1507, - [1508] = 1087, - [1509] = 1509, - [1510] = 1276, - [1511] = 124, - [1512] = 1276, - [1513] = 1037, - [1514] = 1432, - [1515] = 1038, - [1516] = 1438, - [1517] = 1081, - [1518] = 1083, - [1519] = 1519, - [1520] = 1055, - [1521] = 1063, - [1522] = 1509, - [1523] = 1216, - [1524] = 1043, - [1525] = 1085, - [1526] = 1040, - [1527] = 1216, - [1528] = 1080, - [1529] = 1049, - [1530] = 1519, - [1531] = 1276, - [1532] = 1048, - [1533] = 1533, - [1534] = 1086, + [1491] = 1491, + [1492] = 1492, + [1493] = 1471, + [1494] = 1030, + [1495] = 1030, + [1496] = 1006, + [1497] = 1007, + [1498] = 1008, + [1499] = 1030, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 1045, + [1504] = 1271, + [1505] = 1054, + [1506] = 1506, + [1507] = 1072, + [1508] = 1010, + [1509] = 1072, + [1510] = 1074, + [1511] = 1511, + [1512] = 1512, + [1513] = 1513, + [1514] = 1054, + [1515] = 1506, + [1516] = 1025, + [1517] = 1022, + [1518] = 1011, + [1519] = 1207, + [1520] = 1520, + [1521] = 1513, + [1522] = 1045, + [1523] = 1009, + [1524] = 1017, + [1525] = 1012, + [1526] = 1526, + [1527] = 1013, + [1528] = 1074, + [1529] = 1529, + [1530] = 1207, + [1531] = 1092, + [1532] = 1055, + [1533] = 1460, + [1534] = 1466, [1535] = 1535, - [1536] = 1051, - [1537] = 1056, - [1538] = 1538, - [1539] = 1066, - [1540] = 1084, - [1541] = 1046, - [1542] = 1542, - [1543] = 1543, - [1544] = 1542, - [1545] = 1052, - [1546] = 1533, - [1547] = 1533, - [1548] = 1073, - [1549] = 157, - [1550] = 1550, - [1551] = 1551, - [1552] = 163, - [1553] = 1057, - [1554] = 159, - [1555] = 1069, - [1556] = 1543, - [1557] = 1074, - [1558] = 161, - [1559] = 1064, - [1560] = 1062, - [1561] = 1453, - [1562] = 1543, - [1563] = 1533, - [1564] = 1060, - [1565] = 1432, - [1566] = 1053, - [1567] = 1449, - [1568] = 1453, - [1569] = 1543, + [1536] = 1536, + [1537] = 1535, + [1538] = 1535, + [1539] = 1536, + [1540] = 1536, + [1541] = 1541, + [1542] = 1041, + [1543] = 1034, + [1544] = 1535, + [1545] = 1033, + [1546] = 1037, + [1547] = 1149, + [1548] = 1149, + [1549] = 1036, + [1550] = 1092, + [1551] = 1536, + [1552] = 1051, + [1553] = 1553, + [1554] = 1271, + [1555] = 1207, + [1556] = 1041, + [1557] = 1073, + [1558] = 112, + [1559] = 1541, + [1560] = 1553, + [1561] = 1059, + [1562] = 1489, + [1563] = 1472, + [1564] = 1564, + [1565] = 1492, + [1566] = 142, + [1567] = 1564, + [1568] = 1487, + [1569] = 1067, [1570] = 1078, - [1571] = 1059, - [1572] = 1449, - [1573] = 1075, - [1574] = 1438, - [1575] = 1538, - [1576] = 160, - [1577] = 1082, - [1578] = 1578, - [1579] = 1579, - [1580] = 1061, - [1581] = 1087, - [1582] = 1582, - [1583] = 1068, - [1584] = 1070, - [1585] = 1585, - [1586] = 1054, - [1587] = 1076, - [1588] = 1071, - [1589] = 1589, - [1590] = 1590, - [1591] = 1590, - [1592] = 1429, - [1593] = 1468, - [1594] = 1467, - [1595] = 444, - [1596] = 1444, - [1597] = 1589, - [1598] = 1466, - [1599] = 1446, - [1600] = 166, - [1601] = 172, - [1602] = 1602, - [1603] = 433, - [1604] = 1398, - [1605] = 1397, - [1606] = 440, - [1607] = 191, - [1608] = 1380, - [1609] = 207, - [1610] = 223, - [1611] = 1464, - [1612] = 1346, - [1613] = 1299, - [1614] = 1384, - [1615] = 1011, - [1616] = 1362, - [1617] = 429, - [1618] = 1347, - [1619] = 281, - [1620] = 1182, - [1621] = 274, - [1622] = 1181, - [1623] = 1178, - [1624] = 226, - [1625] = 1158, - [1626] = 190, - [1627] = 1123, - [1628] = 1106, - [1629] = 1255, - [1630] = 1251, - [1631] = 1157, - [1632] = 1138, - [1633] = 1472, - [1634] = 1481, - [1635] = 1473, - [1636] = 1147, - [1637] = 1240, - [1638] = 1237, - [1639] = 1211, - [1640] = 205, - [1641] = 1268, - [1642] = 1264, - [1643] = 1266, - [1644] = 1271, - [1645] = 1269, - [1646] = 1272, - [1647] = 216, + [1571] = 1571, + [1572] = 1490, + [1573] = 1573, + [1574] = 1064, + [1575] = 1571, + [1576] = 1070, + [1577] = 1062, + [1578] = 1084, + [1579] = 1082, + [1580] = 1488, + [1581] = 1068, + [1582] = 1485, + [1583] = 1065, + [1584] = 1486, + [1585] = 1482, + [1586] = 1038, + [1587] = 1063, + [1588] = 1480, + [1589] = 1479, + [1590] = 1478, + [1591] = 1477, + [1592] = 1474, + [1593] = 1593, + [1594] = 1593, + [1595] = 1076, + [1596] = 143, + [1597] = 1050, + [1598] = 1048, + [1599] = 1056, + [1600] = 1075, + [1601] = 1601, + [1602] = 1047, + [1603] = 1042, + [1604] = 1604, + [1605] = 1491, + [1606] = 1071, + [1607] = 1080, + [1608] = 1601, + [1609] = 1039, + [1610] = 1069, + [1611] = 1460, + [1612] = 1484, + [1613] = 1066, + [1614] = 1058, + [1615] = 1473, + [1616] = 1476, + [1617] = 145, + [1618] = 1044, + [1619] = 146, + [1620] = 1571, + [1621] = 1079, + [1622] = 1466, + [1623] = 141, + [1624] = 1475, + [1625] = 1491, + [1626] = 1626, + [1627] = 1627, + [1628] = 179, + [1629] = 1629, + [1630] = 1441, + [1631] = 1440, + [1632] = 1490, + [1633] = 1423, + [1634] = 226, + [1635] = 210, + [1636] = 1626, + [1637] = 1637, + [1638] = 399, + [1639] = 199, + [1640] = 1485, + [1641] = 1641, + [1642] = 1642, + [1643] = 175, + [1644] = 338, + [1645] = 1626, + [1646] = 1266, + [1647] = 1388, [1648] = 1648, - [1649] = 1270, - [1650] = 277, - [1651] = 1305, - [1652] = 1307, - [1653] = 1313, - [1654] = 1248, - [1655] = 1160, - [1656] = 1337, - [1657] = 1151, - [1658] = 1145, - [1659] = 1250, - [1660] = 1139, - [1661] = 239, - [1662] = 1471, - [1663] = 1387, - [1664] = 1473, - [1665] = 1391, - [1666] = 1128, - [1667] = 1648, - [1668] = 1460, - [1669] = 209, - [1670] = 208, - [1671] = 1464, - [1672] = 1469, - [1673] = 1459, - [1674] = 1287, - [1675] = 179, - [1676] = 250, - [1677] = 1153, - [1678] = 1466, - [1679] = 1462, - [1680] = 1154, - [1681] = 1467, - [1682] = 1468, - [1683] = 1155, - [1684] = 1156, - [1685] = 1324, - [1686] = 1159, - [1687] = 1461, - [1688] = 1330, - [1689] = 1339, - [1690] = 279, - [1691] = 275, - [1692] = 1379, - [1693] = 1693, - [1694] = 1274, - [1695] = 1693, - [1696] = 1442, - [1697] = 1478, - [1698] = 1479, - [1699] = 1440, - [1700] = 201, - [1701] = 1439, - [1702] = 1471, - [1703] = 1460, - [1704] = 1399, - [1705] = 1472, - [1706] = 1383, - [1707] = 1388, - [1708] = 1469, - [1709] = 1390, - [1710] = 1482, - [1711] = 1477, - [1712] = 1459, - [1713] = 1396, - [1714] = 1474, - [1715] = 1462, - [1716] = 1437, - [1717] = 1461, - [1718] = 1478, - [1719] = 1479, - [1720] = 1482, - [1721] = 1436, - [1722] = 1477, - [1723] = 1435, - [1724] = 1474, - [1725] = 1445, - [1726] = 1431, - [1727] = 1421, - [1728] = 1481, - [1729] = 1470, - [1730] = 1412, - [1731] = 1374, - [1732] = 1693, - [1733] = 368, - [1734] = 1470, + [1649] = 1627, + [1650] = 1650, + [1651] = 1443, + [1652] = 1128, + [1653] = 1642, + [1654] = 1341, + [1655] = 1629, + [1656] = 1626, + [1657] = 1311, + [1658] = 1275, + [1659] = 1312, + [1660] = 1086, + [1661] = 1487, + [1662] = 1662, + [1663] = 1663, + [1664] = 1325, + [1665] = 1637, + [1666] = 1332, + [1667] = 1002, + [1668] = 1197, + [1669] = 197, + [1670] = 177, + [1671] = 1671, + [1672] = 1637, + [1673] = 1214, + [1674] = 1213, + [1675] = 1210, + [1676] = 1190, + [1677] = 1492, + [1678] = 1678, + [1679] = 1478, + [1680] = 1477, + [1681] = 1154, + [1682] = 1114, + [1683] = 1492, + [1684] = 1684, + [1685] = 1233, + [1686] = 154, + [1687] = 1243, + [1688] = 1442, + [1689] = 1258, + [1690] = 184, + [1691] = 1116, + [1692] = 1292, + [1693] = 1313, + [1694] = 1694, + [1695] = 1371, + [1696] = 1309, + [1697] = 1697, + [1698] = 1627, + [1699] = 1385, + [1700] = 1629, + [1701] = 1488, + [1702] = 1476, + [1703] = 1455, + [1704] = 1704, + [1705] = 1626, + [1706] = 1706, + [1707] = 402, + [1708] = 1485, + [1709] = 1456, + [1710] = 1437, + [1711] = 1087, + [1712] = 1484, + [1713] = 1475, + [1714] = 1662, + [1715] = 1472, + [1716] = 1642, + [1717] = 1106, + [1718] = 407, + [1719] = 1112, + [1720] = 1473, + [1721] = 1473, + [1722] = 1482, + [1723] = 1406, + [1724] = 1435, + [1725] = 1428, + [1726] = 1726, + [1727] = 1088, + [1728] = 1101, + [1729] = 1475, + [1730] = 169, + [1731] = 1486, + [1732] = 1484, + [1733] = 1476, + [1734] = 1734, [1735] = 1735, - [1736] = 170, - [1737] = 1737, - [1738] = 1738, - [1739] = 1739, - [1740] = 1740, - [1741] = 1462, - [1742] = 1472, - [1743] = 1473, - [1744] = 1744, - [1745] = 1745, - [1746] = 1746, - [1747] = 1747, - [1748] = 1478, - [1749] = 1749, - [1750] = 1472, - [1751] = 1751, - [1752] = 1747, + [1736] = 1396, + [1737] = 230, + [1738] = 1472, + [1739] = 1382, + [1740] = 1381, + [1741] = 171, + [1742] = 1627, + [1743] = 1278, + [1744] = 1641, + [1745] = 1637, + [1746] = 1627, + [1747] = 1626, + [1748] = 1748, + [1749] = 1104, + [1750] = 1750, + [1751] = 1108, + [1752] = 1629, [1753] = 1753, - [1754] = 1481, - [1755] = 1753, - [1756] = 1479, - [1757] = 1482, - [1758] = 1737, - [1759] = 1737, - [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1477, - [1764] = 1474, - [1765] = 1471, - [1766] = 1766, - [1767] = 1459, - [1768] = 1746, - [1769] = 1473, - [1770] = 1760, - [1771] = 1745, - [1772] = 1745, - [1773] = 1747, - [1774] = 1468, - [1775] = 1467, - [1776] = 1469, - [1777] = 1466, - [1778] = 1746, - [1779] = 1779, - [1780] = 1481, - [1781] = 1739, - [1782] = 1782, - [1783] = 1783, - [1784] = 1784, - [1785] = 1739, - [1786] = 1472, - [1787] = 1481, - [1788] = 1745, - [1789] = 1761, - [1790] = 1790, - [1791] = 1747, - [1792] = 1464, - [1793] = 1460, - [1794] = 1739, + [1754] = 1217, + [1755] = 1374, + [1756] = 1489, + [1757] = 1370, + [1758] = 1365, + [1759] = 1212, + [1760] = 1362, + [1761] = 1629, + [1762] = 186, + [1763] = 1627, + [1764] = 1354, + [1765] = 1765, + [1766] = 1626, + [1767] = 1694, + [1768] = 250, + [1769] = 1474, + [1770] = 1124, + [1771] = 1226, + [1772] = 1472, + [1773] = 150, + [1774] = 1429, + [1775] = 156, + [1776] = 1369, + [1777] = 281, + [1778] = 237, + [1779] = 1627, + [1780] = 1780, + [1781] = 1480, + [1782] = 1487, + [1783] = 1479, + [1784] = 1194, + [1785] = 1780, + [1786] = 1726, + [1787] = 1193, + [1788] = 1126, + [1789] = 1765, + [1790] = 1221, + [1791] = 236, + [1792] = 1474, + [1793] = 1477, + [1794] = 203, [1795] = 1795, - [1796] = 1782, - [1797] = 1739, - [1798] = 1790, - [1799] = 1747, - [1800] = 1470, - [1801] = 1801, - [1802] = 1473, - [1803] = 1470, - [1804] = 1737, - [1805] = 1481, - [1806] = 1461, - [1807] = 1746, - [1808] = 1472, - [1809] = 1783, - [1810] = 1474, - [1811] = 1477, - [1812] = 1482, - [1813] = 1479, - [1814] = 1478, - [1815] = 1461, - [1816] = 1462, - [1817] = 1459, - [1818] = 1762, - [1819] = 1745, - [1820] = 1820, - [1821] = 1469, - [1822] = 1460, - [1823] = 1471, - [1824] = 1739, - [1825] = 1744, - [1826] = 1745, - [1827] = 1747, - [1828] = 1737, - [1829] = 1468, - [1830] = 1737, - [1831] = 1464, + [1796] = 1478, + [1797] = 160, + [1798] = 1479, + [1799] = 1263, + [1800] = 1091, + [1801] = 1480, + [1802] = 1637, + [1803] = 409, + [1804] = 1482, + [1805] = 1637, + [1806] = 1486, + [1807] = 1488, + [1808] = 1808, + [1809] = 1489, + [1810] = 1490, + [1811] = 1491, + [1812] = 1265, + [1813] = 1272, + [1814] = 1795, + [1815] = 1195, + [1816] = 1629, + [1817] = 1189, + [1818] = 1818, + [1819] = 1629, + [1820] = 1333, + [1821] = 1336, + [1822] = 1155, + [1823] = 1274, + [1824] = 1642, + [1825] = 1637, + [1826] = 1492, + [1827] = 1485, + [1828] = 1650, + [1829] = 1130, + [1830] = 1830, + [1831] = 1831, [1832] = 1832, - [1833] = 1467, - [1834] = 1473, - [1835] = 1466, + [1833] = 1833, + [1834] = 1831, + [1835] = 1835, [1836] = 1836, - [1837] = 1747, - [1838] = 1739, - [1839] = 1745, + [1837] = 1831, + [1838] = 1706, + [1839] = 1839, [1840] = 1840, - [1841] = 1737, - [1842] = 1842, + [1841] = 1833, + [1842] = 1836, [1843] = 1843, - [1844] = 1844, - [1845] = 1801, + [1844] = 1840, + [1845] = 1835, [1846] = 1846, [1847] = 1847, [1848] = 1848, [1849] = 1849, - [1850] = 1850, - [1851] = 1851, - [1852] = 1848, + [1850] = 1808, + [1851] = 1839, + [1852] = 1852, [1853] = 1853, - [1854] = 1854, - [1855] = 1855, + [1854] = 1830, + [1855] = 1852, [1856] = 1856, - [1857] = 1857, - [1858] = 1858, - [1859] = 1840, - [1860] = 1855, - [1861] = 1857, + [1857] = 1856, + [1858] = 1843, + [1859] = 1671, + [1860] = 1860, + [1861] = 1861, [1862] = 1862, - [1863] = 1740, + [1863] = 1848, [1864] = 1864, - [1865] = 1846, - [1866] = 1849, - [1867] = 1854, - [1868] = 1851, - [1869] = 1850, + [1865] = 1865, + [1866] = 1865, + [1867] = 1867, + [1868] = 1867, + [1869] = 1869, [1870] = 1870, - [1871] = 1843, - [1872] = 1862, - [1873] = 1873, - [1874] = 1843, - [1875] = 1847, - [1876] = 1876, + [1871] = 1871, + [1872] = 1869, + [1873] = 1870, + [1874] = 1874, + [1875] = 1871, + [1876] = 1874, [1877] = 1877, [1878] = 1878, - [1879] = 1877, - [1880] = 1876, - [1881] = 1881, + [1879] = 1879, + [1880] = 1880, + [1881] = 1880, [1882] = 1882, - [1883] = 1883, - [1884] = 1882, - [1885] = 1885, - [1886] = 1885, - [1887] = 1883, - [1888] = 1881, - [1889] = 1889, - [1890] = 1890, - [1891] = 1891, - [1892] = 1892, - [1893] = 1893, - [1894] = 1892, - [1895] = 1892, - [1896] = 1892, - [1897] = 1893, - [1898] = 1892, - [1899] = 1899, - [1900] = 1899, + [1883] = 1882, + [1884] = 1880, + [1885] = 1882, + [1886] = 1880, + [1887] = 1880, + [1888] = 1888, + [1889] = 1888, + [1890] = 1005, + [1891] = 399, + [1892] = 409, + [1893] = 1009, + [1894] = 1007, + [1895] = 1895, + [1896] = 1022, + [1897] = 1006, + [1898] = 1008, + [1899] = 1010, + [1900] = 1013, [1901] = 1012, - [1902] = 444, - [1903] = 440, - [1904] = 1904, - [1905] = 1013, - [1906] = 1032, - [1907] = 1023, - [1908] = 1022, - [1909] = 1014, - [1910] = 1015, - [1911] = 1031, - [1912] = 1020, - [1913] = 1017, - [1914] = 1026, - [1915] = 1021, - [1916] = 1022, - [1917] = 1038, - [1918] = 1043, - [1919] = 1037, - [1920] = 1023, - [1921] = 1040, - [1922] = 1031, - [1923] = 1069, - [1924] = 1032, - [1925] = 1085, - [1926] = 1926, - [1927] = 1927, - [1928] = 1052, - [1929] = 1068, - [1930] = 1055, - [1931] = 1927, - [1932] = 1932, - [1933] = 1076, - [1934] = 1049, - [1935] = 1056, - [1936] = 1936, - [1937] = 1082, - [1938] = 1057, - [1939] = 1073, - [1940] = 1071, - [1941] = 239, - [1942] = 1084, - [1943] = 1074, - [1944] = 1944, - [1945] = 1051, - [1946] = 1060, - [1947] = 274, - [1948] = 1066, - [1949] = 1944, - [1950] = 1070, - [1951] = 1062, - [1952] = 1054, - [1953] = 1582, - [1954] = 1048, - [1955] = 1059, - [1956] = 1061, - [1957] = 172, - [1958] = 1064, - [1959] = 1926, - [1960] = 1944, - [1961] = 275, - [1962] = 1053, - [1963] = 1240, - [1964] = 1153, - [1965] = 1926, - [1966] = 1151, - [1967] = 1237, - [1968] = 1139, - [1969] = 1444, - [1970] = 1128, - [1971] = 1159, - [1972] = 1157, - [1973] = 1255, - [1974] = 1160, - [1975] = 1975, - [1976] = 1145, - [1977] = 1155, - [1978] = 1154, - [1979] = 1579, - [1980] = 1446, - [1981] = 1248, - [1982] = 1250, - [1983] = 1156, - [1984] = 1585, - [1985] = 1551, - [1986] = 1347, - [1987] = 1274, - [1988] = 1384, - [1989] = 1989, - [1990] = 1362, - [1991] = 1374, - [1992] = 1251, + [1902] = 1011, + [1903] = 1017, + [1904] = 1025, + [1905] = 1010, + [1906] = 1022, + [1907] = 1037, + [1908] = 1055, + [1909] = 1009, + [1910] = 1033, + [1911] = 1059, + [1912] = 1063, + [1913] = 1073, + [1914] = 1013, + [1915] = 1051, + [1916] = 1034, + [1917] = 1036, + [1918] = 1071, + [1919] = 1919, + [1920] = 1920, + [1921] = 1075, + [1922] = 1066, + [1923] = 1923, + [1924] = 1923, + [1925] = 1076, + [1926] = 1078, + [1927] = 1067, + [1928] = 1080, + [1929] = 1929, + [1930] = 1079, + [1931] = 1056, + [1932] = 281, + [1933] = 1038, + [1934] = 1050, + [1935] = 1935, + [1936] = 154, + [1937] = 1058, + [1938] = 1069, + [1939] = 1935, + [1940] = 1048, + [1941] = 1039, + [1942] = 1065, + [1943] = 1062, + [1944] = 1064, + [1945] = 1068, + [1946] = 1935, + [1947] = 1920, + [1948] = 1512, + [1949] = 1070, + [1950] = 250, + [1951] = 160, + [1952] = 1047, + [1953] = 1953, + [1954] = 1325, + [1955] = 1114, + [1956] = 1442, + [1957] = 1212, + [1958] = 1116, + [1959] = 1193, + [1960] = 1369, + [1961] = 1194, + [1962] = 1309, + [1963] = 1197, + [1964] = 1520, + [1965] = 1221, + [1966] = 1456, + [1967] = 1332, + [1968] = 1920, + [1969] = 1437, + [1970] = 1226, + [1971] = 1086, + [1972] = 1108, + [1973] = 1973, + [1974] = 1217, + [1975] = 1128, + [1976] = 1429, + [1977] = 1311, + [1978] = 1312, + [1979] = 1502, + [1980] = 1529, + [1981] = 1455, + [1982] = 1091, + [1983] = 1101, + [1984] = 1428, + [1985] = 1985, + [1986] = 1986, + [1987] = 402, + [1988] = 1988, + [1989] = 1010, + [1990] = 1013, + [1991] = 1013, + [1992] = 1009, [1993] = 1993, - [1994] = 1994, - [1995] = 433, - [1996] = 1996, - [1997] = 1031, - [1998] = 1031, - [1999] = 1032, - [2000] = 1022, - [2001] = 1032, - [2002] = 2002, - [2003] = 1023, - [2004] = 1031, - [2005] = 1904, - [2006] = 1023, + [1994] = 1022, + [1995] = 1995, + [1996] = 1010, + [1997] = 1997, + [1998] = 1895, + [1999] = 1022, + [2000] = 1010, + [2001] = 1022, + [2002] = 1013, + [2003] = 1009, + [2004] = 1009, + [2005] = 2005, + [2006] = 2006, [2007] = 2007, [2008] = 2008, - [2009] = 1032, - [2010] = 1022, - [2011] = 1022, - [2012] = 1023, - [2013] = 2013, - [2014] = 2014, + [2009] = 2006, + [2010] = 2010, + [2011] = 2011, + [2012] = 2008, + [2013] = 2007, + [2014] = 2005, [2015] = 2015, - [2016] = 1031, + [2016] = 2015, [2017] = 2017, [2018] = 2018, - [2019] = 2019, - [2020] = 2020, - [2021] = 2020, + [2019] = 2018, + [2020] = 2017, + [2021] = 2021, [2022] = 2022, - [2023] = 1932, - [2024] = 2024, + [2023] = 2023, + [2024] = 146, [2025] = 2025, - [2026] = 2026, + [2026] = 1022, [2027] = 2027, - [2028] = 1023, + [2028] = 2028, [2029] = 2029, - [2030] = 157, - [2031] = 2026, + [2030] = 2030, + [2031] = 1010, [2032] = 2032, - [2033] = 159, - [2034] = 1032, - [2035] = 163, + [2033] = 1013, + [2034] = 2028, + [2035] = 2035, [2036] = 2036, [2037] = 2037, - [2038] = 161, - [2039] = 2022, - [2040] = 1022, - [2041] = 2015, - [2042] = 160, - [2043] = 2024, - [2044] = 2025, - [2045] = 2045, + [2038] = 1009, + [2039] = 141, + [2040] = 2040, + [2041] = 2022, + [2042] = 2030, + [2043] = 2027, + [2044] = 2021, + [2045] = 2037, [2046] = 2046, - [2047] = 2047, - [2048] = 2048, - [2049] = 1932, + [2047] = 2025, + [2048] = 145, + [2049] = 2032, [2050] = 2050, [2051] = 2051, - [2052] = 2046, + [2052] = 1919, [2053] = 2053, [2054] = 2054, [2055] = 2055, [2056] = 2056, [2057] = 2057, - [2058] = 2056, + [2058] = 2046, [2059] = 2059, - [2060] = 2060, - [2061] = 2061, - [2062] = 2046, + [2060] = 142, + [2061] = 143, + [2062] = 2062, [2063] = 2063, [2064] = 2064, [2065] = 2065, [2066] = 2066, [2067] = 2067, [2068] = 2068, - [2069] = 1936, + [2069] = 2069, [2070] = 2070, - [2071] = 2053, + [2071] = 2071, [2072] = 2072, [2073] = 2073, [2074] = 2074, [2075] = 2075, - [2076] = 2076, + [2076] = 1929, [2077] = 2077, [2078] = 2078, - [2079] = 1932, + [2079] = 2079, [2080] = 2080, - [2081] = 170, - [2082] = 2054, + [2081] = 2081, + [2082] = 2082, [2083] = 2083, [2084] = 2084, [2085] = 2085, @@ -5927,189 +5935,189 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2088] = 2088, [2089] = 2089, [2090] = 2090, - [2091] = 2091, + [2091] = 2074, [2092] = 2092, [2093] = 2093, [2094] = 2094, [2095] = 2095, [2096] = 2096, - [2097] = 2097, - [2098] = 2098, + [2097] = 1919, + [2098] = 2096, [2099] = 2099, - [2100] = 1040, - [2101] = 1038, - [2102] = 1936, - [2103] = 2103, - [2104] = 2104, - [2105] = 1037, + [2100] = 2100, + [2101] = 2073, + [2102] = 2102, + [2103] = 179, + [2104] = 1919, + [2105] = 2105, [2106] = 2106, - [2107] = 2106, - [2108] = 2108, + [2107] = 2107, + [2108] = 2093, [2109] = 2109, [2110] = 2110, [2111] = 2111, - [2112] = 2099, - [2113] = 2110, - [2114] = 2114, - [2115] = 2094, - [2116] = 2099, - [2117] = 2111, + [2112] = 2112, + [2113] = 2093, + [2114] = 2094, + [2115] = 1037, + [2116] = 2116, + [2117] = 2117, [2118] = 2118, - [2119] = 2108, + [2119] = 1036, [2120] = 2120, [2121] = 2121, - [2122] = 2097, - [2123] = 2114, - [2124] = 2109, - [2125] = 2125, + [2122] = 1034, + [2123] = 2123, + [2124] = 2118, + [2125] = 1919, [2126] = 2126, - [2127] = 2125, + [2127] = 2127, [2128] = 2128, - [2129] = 1936, - [2130] = 1932, - [2131] = 2096, - [2132] = 2095, + [2129] = 2120, + [2130] = 2130, + [2131] = 2131, + [2132] = 2123, [2133] = 2133, - [2134] = 2134, + [2134] = 1929, [2135] = 2135, - [2136] = 2133, - [2137] = 2118, - [2138] = 2135, + [2136] = 2136, + [2137] = 2137, + [2138] = 2121, [2139] = 2139, - [2140] = 2139, - [2141] = 2134, - [2142] = 2126, - [2143] = 2143, - [2144] = 2135, - [2145] = 2121, - [2146] = 2146, - [2147] = 2103, - [2148] = 2146, - [2149] = 2104, + [2140] = 2140, + [2141] = 2141, + [2142] = 2116, + [2143] = 2128, + [2144] = 2140, + [2145] = 2145, + [2146] = 2117, + [2147] = 1033, + [2148] = 2148, + [2149] = 2131, [2150] = 2150, - [2151] = 2151, - [2152] = 2152, - [2153] = 1043, - [2154] = 2154, - [2155] = 2155, - [2156] = 2156, - [2157] = 2157, - [2158] = 2158, - [2159] = 2159, + [2151] = 2117, + [2152] = 2130, + [2153] = 2153, + [2154] = 2150, + [2155] = 2127, + [2156] = 2139, + [2157] = 1929, + [2158] = 2148, + [2159] = 2139, [2160] = 2160, - [2161] = 2161, - [2162] = 2162, + [2161] = 2136, + [2162] = 2153, [2163] = 2163, [2164] = 2164, [2165] = 2165, [2166] = 2166, - [2167] = 2155, - [2168] = 2168, + [2167] = 2167, + [2168] = 2166, [2169] = 2169, [2170] = 2170, - [2171] = 2171, + [2171] = 2170, [2172] = 2172, - [2173] = 2173, + [2173] = 2169, [2174] = 2174, [2175] = 2175, [2176] = 2176, [2177] = 2177, - [2178] = 2170, + [2178] = 2178, [2179] = 2179, [2180] = 2180, - [2181] = 1936, + [2181] = 2179, [2182] = 2182, [2183] = 2183, - [2184] = 2176, - [2185] = 2185, + [2184] = 2184, + [2185] = 2184, [2186] = 2186, [2187] = 2187, [2188] = 2188, - [2189] = 2189, + [2189] = 2186, [2190] = 2190, [2191] = 2191, [2192] = 2192, - [2193] = 2193, - [2194] = 2156, - [2195] = 2188, - [2196] = 2159, - [2197] = 2161, - [2198] = 2164, - [2199] = 2199, - [2200] = 2160, + [2193] = 2187, + [2194] = 2163, + [2195] = 2195, + [2196] = 2196, + [2197] = 2197, + [2198] = 2191, + [2199] = 1929, + [2200] = 2188, [2201] = 2201, [2202] = 2202, - [2203] = 2187, - [2204] = 2168, - [2205] = 2190, - [2206] = 2189, - [2207] = 2166, - [2208] = 2199, - [2209] = 2209, - [2210] = 2180, - [2211] = 2186, - [2212] = 2193, - [2213] = 2182, - [2214] = 2202, - [2215] = 2215, - [2216] = 2216, + [2203] = 2164, + [2204] = 2204, + [2205] = 2205, + [2206] = 2206, + [2207] = 2182, + [2208] = 2208, + [2209] = 2201, + [2210] = 2196, + [2211] = 2180, + [2212] = 2212, + [2213] = 2204, + [2214] = 2167, + [2215] = 2175, + [2216] = 2206, [2217] = 2217, [2218] = 2218, [2219] = 2219, [2220] = 2220, [2221] = 2221, [2222] = 2222, - [2223] = 1996, + [2223] = 2223, [2224] = 2224, [2225] = 2225, [2226] = 2226, [2227] = 2227, - [2228] = 2215, - [2229] = 2224, + [2228] = 2228, + [2229] = 2229, [2230] = 2230, [2231] = 2231, - [2232] = 2232, + [2232] = 2217, [2233] = 2233, [2234] = 2234, - [2235] = 2235, - [2236] = 2235, - [2237] = 2234, - [2238] = 2232, + [2235] = 2225, + [2236] = 2236, + [2237] = 2236, + [2238] = 2238, [2239] = 2239, [2240] = 2240, - [2241] = 2227, - [2242] = 2231, - [2243] = 2243, + [2241] = 2241, + [2242] = 2242, + [2243] = 1986, [2244] = 2244, [2245] = 2245, [2246] = 2246, [2247] = 2247, - [2248] = 2219, + [2248] = 2248, [2249] = 2249, [2250] = 2250, [2251] = 2251, - [2252] = 2222, - [2253] = 2253, - [2254] = 2254, - [2255] = 2225, - [2256] = 2256, - [2257] = 2256, - [2258] = 2253, - [2259] = 2220, - [2260] = 2260, - [2261] = 2261, - [2262] = 2243, - [2263] = 2240, - [2264] = 2216, - [2265] = 2244, - [2266] = 2218, - [2267] = 2260, - [2268] = 2249, - [2269] = 2230, - [2270] = 2224, - [2271] = 2250, - [2272] = 2272, - [2273] = 440, + [2252] = 2251, + [2253] = 2248, + [2254] = 2219, + [2255] = 2246, + [2256] = 2229, + [2257] = 2249, + [2258] = 2221, + [2259] = 2222, + [2260] = 2239, + [2261] = 2238, + [2262] = 2250, + [2263] = 2223, + [2264] = 2231, + [2265] = 2265, + [2266] = 2230, + [2267] = 2228, + [2268] = 2234, + [2269] = 2229, + [2270] = 2240, + [2271] = 2265, + [2272] = 2224, + [2273] = 2273, [2274] = 2274, [2275] = 2275, [2276] = 2276, @@ -6118,466 +6126,466 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2279] = 2279, [2280] = 2280, [2281] = 2281, - [2282] = 2282, + [2282] = 399, [2283] = 2283, - [2284] = 2284, + [2284] = 2280, [2285] = 2285, [2286] = 2286, [2287] = 2287, [2288] = 2288, [2289] = 2289, - [2290] = 2290, - [2291] = 2291, + [2290] = 2285, + [2291] = 2286, [2292] = 2292, [2293] = 2293, [2294] = 2294, - [2295] = 2295, + [2295] = 402, [2296] = 2296, - [2297] = 2297, - [2298] = 2296, - [2299] = 2295, - [2300] = 2300, - [2301] = 2301, - [2302] = 2007, - [2303] = 2293, + [2297] = 2274, + [2298] = 2298, + [2299] = 2299, + [2300] = 2289, + [2301] = 2281, + [2302] = 2275, + [2303] = 2303, [2304] = 2304, - [2305] = 2002, + [2305] = 2305, [2306] = 2306, - [2307] = 2276, + [2307] = 2307, [2308] = 2308, - [2309] = 2304, + [2309] = 2309, [2310] = 2310, - [2311] = 2290, + [2311] = 2311, [2312] = 2312, - [2313] = 2291, - [2314] = 2289, + [2313] = 2305, + [2314] = 2279, [2315] = 2315, - [2316] = 2316, - [2317] = 2317, - [2318] = 2318, - [2319] = 2278, - [2320] = 2308, - [2321] = 2284, - [2322] = 2293, - [2323] = 2277, - [2324] = 2279, - [2325] = 2316, - [2326] = 2280, - [2327] = 2327, - [2328] = 2275, - [2329] = 2285, - [2330] = 2283, - [2331] = 2281, - [2332] = 2332, - [2333] = 2293, - [2334] = 2287, - [2335] = 2272, - [2336] = 2288, + [2316] = 2304, + [2317] = 2288, + [2318] = 2299, + [2319] = 2298, + [2320] = 2288, + [2321] = 2307, + [2322] = 2322, + [2323] = 2323, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 2283, + [2328] = 2328, + [2329] = 409, + [2330] = 2296, + [2331] = 2331, + [2332] = 2311, + [2333] = 2333, + [2334] = 2334, + [2335] = 2310, + [2336] = 2309, [2337] = 2337, - [2338] = 2337, - [2339] = 2310, - [2340] = 2297, - [2341] = 2327, - [2342] = 2312, - [2343] = 2275, - [2344] = 2344, - [2345] = 2332, - [2346] = 2286, - [2347] = 2347, - [2348] = 2008, - [2349] = 433, - [2350] = 2350, - [2351] = 444, - [2352] = 2308, - [2353] = 2353, - [2354] = 2294, - [2355] = 2317, - [2356] = 2274, - [2357] = 2292, - [2358] = 2347, - [2359] = 2353, - [2360] = 2315, - [2361] = 2361, - [2362] = 2362, - [2363] = 2363, + [2338] = 1997, + [2339] = 2339, + [2340] = 2304, + [2341] = 2341, + [2342] = 2331, + [2343] = 2287, + [2344] = 2277, + [2345] = 2328, + [2346] = 2326, + [2347] = 1993, + [2348] = 2277, + [2349] = 2349, + [2350] = 2323, + [2351] = 1995, + [2352] = 2294, + [2353] = 2276, + [2354] = 2354, + [2355] = 2322, + [2356] = 2292, + [2357] = 2293, + [2358] = 2303, + [2359] = 2304, + [2360] = 2308, + [2361] = 2310, + [2362] = 2309, + [2363] = 2333, [2364] = 2364, - [2365] = 2365, - [2366] = 1458, - [2367] = 1457, - [2368] = 2368, - [2369] = 2369, - [2370] = 2370, - [2371] = 2371, + [2365] = 2334, + [2366] = 2366, + [2367] = 2306, + [2368] = 2315, + [2369] = 2278, + [2370] = 2349, + [2371] = 2354, [2372] = 2372, - [2373] = 2361, - [2374] = 2369, + [2373] = 2373, + [2374] = 2374, [2375] = 2375, - [2376] = 2362, + [2376] = 2376, [2377] = 2377, [2378] = 2378, [2379] = 2379, [2380] = 2380, [2381] = 2381, [2382] = 2382, - [2383] = 2379, + [2383] = 2383, [2384] = 2384, - [2385] = 1447, + [2385] = 2385, [2386] = 2386, - [2387] = 1448, + [2387] = 2387, [2388] = 2388, [2389] = 2389, [2390] = 2390, [2391] = 2391, [2392] = 2392, - [2393] = 1011, - [2394] = 2394, - [2395] = 2380, + [2393] = 2393, + [2394] = 2384, + [2395] = 2376, [2396] = 2396, - [2397] = 2392, - [2398] = 2384, - [2399] = 2382, - [2400] = 2379, - [2401] = 2379, + [2397] = 2390, + [2398] = 2392, + [2399] = 2386, + [2400] = 2387, + [2401] = 2401, [2402] = 2402, [2403] = 2403, - [2404] = 2384, + [2404] = 1401, [2405] = 2405, - [2406] = 2381, - [2407] = 2368, + [2406] = 2377, + [2407] = 2407, [2408] = 2408, - [2409] = 2368, + [2409] = 2409, [2410] = 2410, - [2411] = 2381, + [2411] = 2411, [2412] = 2412, - [2413] = 2413, + [2413] = 2372, [2414] = 2414, - [2415] = 2415, - [2416] = 1455, - [2417] = 2371, + [2415] = 2408, + [2416] = 2416, + [2417] = 2417, [2418] = 2418, - [2419] = 1454, + [2419] = 2419, [2420] = 2420, - [2421] = 2421, + [2421] = 2386, [2422] = 2422, [2423] = 2423, [2424] = 2424, - [2425] = 2413, + [2425] = 2425, [2426] = 2426, - [2427] = 2427, - [2428] = 2427, + [2427] = 2383, + [2428] = 2428, [2429] = 2429, - [2430] = 2430, - [2431] = 2431, - [2432] = 2361, - [2433] = 2433, - [2434] = 2430, - [2435] = 2380, + [2430] = 1457, + [2431] = 1316, + [2432] = 2432, + [2433] = 1252, + [2434] = 2434, + [2435] = 2435, [2436] = 2429, - [2437] = 2414, - [2438] = 2438, - [2439] = 2378, - [2440] = 2405, - [2441] = 2396, - [2442] = 2412, + [2437] = 2409, + [2438] = 2425, + [2439] = 2402, + [2440] = 2374, + [2441] = 2379, + [2442] = 2442, [2443] = 2443, - [2444] = 2444, - [2445] = 2445, - [2446] = 2420, - [2447] = 2375, - [2448] = 2448, - [2449] = 2418, - [2450] = 2421, + [2444] = 2405, + [2445] = 2381, + [2446] = 1447, + [2447] = 2405, + [2448] = 2384, + [2449] = 2449, + [2450] = 2450, [2451] = 2451, - [2452] = 2452, - [2453] = 2453, - [2454] = 2454, + [2452] = 2392, + [2453] = 1304, + [2454] = 1306, [2455] = 2455, - [2456] = 2456, - [2457] = 2457, - [2458] = 2458, + [2456] = 1340, + [2457] = 2376, + [2458] = 2388, [2459] = 2459, - [2460] = 2460, - [2461] = 2461, - [2462] = 2462, - [2463] = 427, - [2464] = 2464, - [2465] = 2465, - [2466] = 2466, - [2467] = 2467, - [2468] = 2455, - [2469] = 2469, - [2470] = 2470, - [2471] = 2467, - [2472] = 2455, + [2460] = 2384, + [2461] = 1002, + [2462] = 2422, + [2463] = 2402, + [2464] = 2385, + [2465] = 2396, + [2466] = 2428, + [2467] = 2382, + [2468] = 2424, + [2469] = 1356, + [2470] = 1329, + [2471] = 2423, + [2472] = 2472, [2473] = 2473, [2474] = 2474, - [2475] = 2459, + [2475] = 2385, [2476] = 2476, [2477] = 2477, [2478] = 2478, - [2479] = 2470, + [2479] = 2479, [2480] = 2480, [2481] = 2481, [2482] = 2482, [2483] = 2483, [2484] = 2484, - [2485] = 425, - [2486] = 2486, - [2487] = 2454, + [2485] = 2484, + [2486] = 2480, + [2487] = 2487, [2488] = 2488, [2489] = 2489, [2490] = 2490, [2491] = 2491, [2492] = 2492, [2493] = 2493, - [2494] = 2480, - [2495] = 2476, + [2494] = 2494, + [2495] = 2482, [2496] = 2496, [2497] = 2497, [2498] = 2498, [2499] = 2499, [2500] = 2500, - [2501] = 2467, + [2501] = 2501, [2502] = 2502, [2503] = 2503, [2504] = 2504, [2505] = 2505, [2506] = 2506, - [2507] = 2505, - [2508] = 2490, - [2509] = 2455, - [2510] = 2510, + [2507] = 2051, + [2508] = 2053, + [2509] = 2054, + [2510] = 2055, [2511] = 2511, [2512] = 2512, [2513] = 2513, [2514] = 2514, [2515] = 2515, - [2516] = 2516, - [2517] = 2515, - [2518] = 2516, - [2519] = 2515, - [2520] = 2516, - [2521] = 2515, - [2522] = 2516, + [2516] = 2062, + [2517] = 2059, + [2518] = 2057, + [2519] = 2050, + [2520] = 2520, + [2521] = 2521, + [2522] = 2522, [2523] = 2523, - [2524] = 2524, - [2525] = 2499, - [2526] = 2515, - [2527] = 2516, - [2528] = 2506, - [2529] = 2014, - [2530] = 2019, - [2531] = 2018, - [2532] = 2017, + [2524] = 2479, + [2525] = 2525, + [2526] = 2491, + [2527] = 2527, + [2528] = 2528, + [2529] = 2529, + [2530] = 2530, + [2531] = 2531, + [2532] = 2493, [2533] = 2533, - [2534] = 2515, - [2535] = 2516, + [2534] = 2534, + [2535] = 2535, [2536] = 2536, - [2537] = 2029, + [2537] = 2537, [2538] = 2538, - [2539] = 2032, - [2540] = 2474, - [2541] = 2482, + [2539] = 2520, + [2540] = 2540, + [2541] = 2541, [2542] = 2542, - [2543] = 2037, - [2544] = 2504, - [2545] = 2465, - [2546] = 2515, - [2547] = 2516, + [2543] = 2543, + [2544] = 2544, + [2545] = 2545, + [2546] = 2545, + [2547] = 2547, [2548] = 2548, - [2549] = 2536, - [2550] = 2523, - [2551] = 2466, - [2552] = 2036, - [2553] = 2497, - [2554] = 2474, - [2555] = 2486, - [2556] = 2474, + [2549] = 2549, + [2550] = 404, + [2551] = 2551, + [2552] = 2552, + [2553] = 2545, + [2554] = 2554, + [2555] = 2480, + [2556] = 2484, [2557] = 2557, - [2558] = 2558, - [2559] = 2486, - [2560] = 2461, - [2561] = 2515, - [2562] = 2516, - [2563] = 2548, - [2564] = 2536, + [2558] = 2520, + [2559] = 2482, + [2560] = 2560, + [2561] = 2561, + [2562] = 2478, + [2563] = 2534, + [2564] = 2503, [2565] = 2565, - [2566] = 2491, + [2566] = 2566, [2567] = 2567, - [2568] = 2533, - [2569] = 2569, - [2570] = 2523, - [2571] = 2512, + [2568] = 2498, + [2569] = 2499, + [2570] = 2561, + [2571] = 2500, [2572] = 2572, - [2573] = 2486, - [2574] = 2474, - [2575] = 2497, - [2576] = 2466, - [2577] = 2493, - [2578] = 2567, - [2579] = 2536, - [2580] = 2580, - [2581] = 2581, - [2582] = 2548, - [2583] = 2455, - [2584] = 2512, - [2585] = 2557, - [2586] = 2523, - [2587] = 2524, - [2588] = 2588, - [2589] = 2514, - [2590] = 2533, - [2591] = 2513, - [2592] = 2461, - [2593] = 2515, - [2594] = 2594, + [2573] = 2501, + [2574] = 2490, + [2575] = 2489, + [2576] = 2488, + [2577] = 2497, + [2578] = 2502, + [2579] = 2566, + [2580] = 2480, + [2581] = 2567, + [2582] = 2484, + [2583] = 2482, + [2584] = 2584, + [2585] = 2504, + [2586] = 2567, + [2587] = 2506, + [2588] = 2561, + [2589] = 2479, + [2590] = 2490, + [2591] = 2591, + [2592] = 2528, + [2593] = 2548, + [2594] = 406, [2595] = 2595, - [2596] = 2516, - [2597] = 2597, - [2598] = 2598, - [2599] = 2599, - [2600] = 2548, - [2601] = 2581, - [2602] = 2567, - [2603] = 2536, - [2604] = 2604, - [2605] = 2536, - [2606] = 2567, - [2607] = 2581, - [2608] = 2548, - [2609] = 2533, - [2610] = 2610, - [2611] = 2523, - [2612] = 2512, - [2613] = 2493, - [2614] = 2614, - [2615] = 2599, - [2616] = 2467, - [2617] = 2599, - [2618] = 2454, - [2619] = 2486, - [2620] = 2474, - [2621] = 2497, - [2622] = 2462, - [2623] = 2466, - [2624] = 2624, - [2625] = 2458, - [2626] = 2626, - [2627] = 2627, - [2628] = 2483, - [2629] = 2629, - [2630] = 2597, - [2631] = 2503, - [2632] = 2632, - [2633] = 2492, - [2634] = 2634, - [2635] = 2635, - [2636] = 2636, - [2637] = 2637, - [2638] = 2638, - [2639] = 2484, - [2640] = 2516, - [2641] = 2641, - [2642] = 2642, - [2643] = 2595, - [2644] = 2598, - [2645] = 2594, - [2646] = 2624, - [2647] = 2626, - [2648] = 2515, - [2649] = 2580, - [2650] = 2629, - [2651] = 2636, - [2652] = 2652, - [2653] = 2632, - [2654] = 2597, - [2655] = 2580, - [2656] = 2656, - [2657] = 2557, - [2658] = 2557, - [2659] = 2489, - [2660] = 2660, - [2661] = 2661, - [2662] = 2565, + [2596] = 2596, + [2597] = 2499, + [2598] = 2492, + [2599] = 2565, + [2600] = 2541, + [2601] = 2500, + [2602] = 2602, + [2603] = 2522, + [2604] = 2496, + [2605] = 2530, + [2606] = 2606, + [2607] = 2497, + [2608] = 2608, + [2609] = 2501, + [2610] = 2523, + [2611] = 2611, + [2612] = 2612, + [2613] = 2567, + [2614] = 2499, + [2615] = 2615, + [2616] = 2500, + [2617] = 2481, + [2618] = 2618, + [2619] = 2619, + [2620] = 2501, + [2621] = 2621, + [2622] = 2621, + [2623] = 2619, + [2624] = 2520, + [2625] = 2625, + [2626] = 2494, + [2627] = 2482, + [2628] = 2628, + [2629] = 2561, + [2630] = 2500, + [2631] = 2502, + [2632] = 2502, + [2633] = 2504, + [2634] = 2504, + [2635] = 2504, + [2636] = 2514, + [2637] = 2505, + [2638] = 2506, + [2639] = 2505, + [2640] = 2506, + [2641] = 2606, + [2642] = 2506, + [2643] = 2515, + [2644] = 2608, + [2645] = 2479, + [2646] = 2537, + [2647] = 2511, + [2648] = 2483, + [2649] = 2528, + [2650] = 2650, + [2651] = 2533, + [2652] = 2511, + [2653] = 2530, + [2654] = 2540, + [2655] = 2566, + [2656] = 2482, + [2657] = 2504, + [2658] = 2479, + [2659] = 2513, + [2660] = 2513, + [2661] = 2534, + [2662] = 2662, [2663] = 2663, - [2664] = 2664, - [2665] = 2665, - [2666] = 2538, - [2667] = 2667, - [2668] = 2663, - [2669] = 2638, - [2670] = 2515, - [2671] = 2661, - [2672] = 2542, - [2673] = 2664, - [2674] = 2524, - [2675] = 2516, - [2676] = 2514, - [2677] = 2469, + [2664] = 2528, + [2665] = 2535, + [2666] = 2663, + [2667] = 2522, + [2668] = 2668, + [2669] = 2523, + [2670] = 2670, + [2671] = 2561, + [2672] = 2479, + [2673] = 2479, + [2674] = 2527, + [2675] = 2528, + [2676] = 2528, + [2677] = 2527, [2678] = 2678, - [2679] = 2513, - [2680] = 2502, - [2681] = 2460, - [2682] = 2498, - [2683] = 2490, - [2684] = 2505, - [2685] = 2665, - [2686] = 2667, - [2687] = 2594, - [2688] = 2461, + [2679] = 2679, + [2680] = 2528, + [2681] = 2681, + [2682] = 2479, + [2683] = 2679, + [2684] = 2566, + [2685] = 2681, + [2686] = 2531, + [2687] = 2528, + [2688] = 2479, [2689] = 2689, - [2690] = 2690, - [2691] = 2691, - [2692] = 2692, - [2693] = 2693, + [2690] = 2528, + [2691] = 2479, + [2692] = 2529, + [2693] = 2612, [2694] = 2694, - [2695] = 2695, - [2696] = 2696, - [2697] = 2697, - [2698] = 2698, + [2695] = 2694, + [2696] = 2530, + [2697] = 2602, + [2698] = 2528, [2699] = 2699, - [2700] = 2700, - [2701] = 2701, + [2700] = 2479, + [2701] = 2528, [2702] = 2702, [2703] = 2703, - [2704] = 2704, + [2704] = 2554, [2705] = 2705, [2706] = 2706, - [2707] = 2707, - [2708] = 2708, + [2707] = 2567, + [2708] = 2668, [2709] = 2709, - [2710] = 2710, + [2710] = 2703, [2711] = 2711, - [2712] = 2712, - [2713] = 2713, - [2714] = 2693, + [2712] = 2678, + [2713] = 2702, + [2714] = 2699, [2715] = 2715, [2716] = 2716, - [2717] = 2705, + [2717] = 2717, [2718] = 2718, - [2719] = 2050, - [2720] = 2090, + [2719] = 2719, + [2720] = 2720, [2721] = 2721, [2722] = 2722, [2723] = 2723, [2724] = 2724, [2725] = 2725, - [2726] = 2726, + [2726] = 2725, [2727] = 2727, - [2728] = 2703, - [2729] = 2729, + [2728] = 2728, + [2729] = 2718, [2730] = 2730, [2731] = 2731, - [2732] = 2732, + [2732] = 2715, [2733] = 2733, - [2734] = 2700, + [2734] = 2734, [2735] = 2735, [2736] = 2736, [2737] = 2737, [2738] = 2738, [2739] = 2739, [2740] = 2740, - [2741] = 2741, + [2741] = 2740, [2742] = 2742, [2743] = 2743, [2744] = 2744, @@ -6586,11 +6594,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2747] = 2747, [2748] = 2748, [2749] = 2749, - [2750] = 2750, + [2750] = 2746, [2751] = 2751, [2752] = 2752, [2753] = 2753, - [2754] = 2754, + [2754] = 2721, [2755] = 2755, [2756] = 2756, [2757] = 2757, @@ -6600,529 +6608,529 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2761] = 2761, [2762] = 2762, [2763] = 2763, - [2764] = 2764, - [2765] = 2048, - [2766] = 2060, - [2767] = 2070, - [2768] = 2047, - [2769] = 2086, - [2770] = 2063, - [2771] = 2691, - [2772] = 2739, - [2773] = 2773, - [2774] = 2715, - [2775] = 2690, - [2776] = 2084, - [2777] = 2696, + [2764] = 2752, + [2765] = 2765, + [2766] = 2766, + [2767] = 2767, + [2768] = 2768, + [2769] = 2769, + [2770] = 2770, + [2771] = 2771, + [2772] = 2724, + [2773] = 2765, + [2774] = 2774, + [2775] = 2775, + [2776] = 2776, + [2777] = 2777, [2778] = 2778, [2779] = 2779, - [2780] = 170, + [2780] = 2780, [2781] = 2781, [2782] = 2782, - [2783] = 2783, + [2783] = 2736, [2784] = 2784, [2785] = 2785, - [2786] = 2732, + [2786] = 2786, [2787] = 2787, [2788] = 2788, [2789] = 2789, [2790] = 2790, - [2791] = 2759, + [2791] = 2791, [2792] = 2792, [2793] = 2793, [2794] = 2794, - [2795] = 2789, + [2795] = 2795, [2796] = 2796, - [2797] = 2722, + [2797] = 2797, [2798] = 2798, - [2799] = 2748, - [2800] = 2747, + [2799] = 2799, + [2800] = 2800, [2801] = 2801, - [2802] = 2740, + [2802] = 2802, [2803] = 2803, - [2804] = 2794, + [2804] = 2804, [2805] = 2805, - [2806] = 2803, - [2807] = 2807, + [2806] = 2800, + [2807] = 2748, [2808] = 2808, [2809] = 2809, - [2810] = 2726, - [2811] = 2736, - [2812] = 2730, + [2810] = 2810, + [2811] = 2755, + [2812] = 2812, [2813] = 2813, - [2814] = 2067, + [2814] = 2727, [2815] = 2815, - [2816] = 2773, - [2817] = 2085, - [2818] = 2755, - [2819] = 2819, + [2816] = 2788, + [2817] = 2817, + [2818] = 2818, + [2819] = 2723, [2820] = 2820, [2821] = 2821, [2822] = 2822, - [2823] = 2823, + [2823] = 2788, [2824] = 2824, - [2825] = 2087, + [2825] = 2825, [2826] = 2826, - [2827] = 2089, - [2828] = 2091, + [2827] = 2827, + [2828] = 2828, [2829] = 2829, - [2830] = 2093, + [2830] = 2830, [2831] = 2831, - [2832] = 2075, - [2833] = 2735, - [2834] = 2834, - [2835] = 2782, + [2832] = 2832, + [2833] = 2763, + [2834] = 2719, + [2835] = 2835, [2836] = 2836, - [2837] = 2755, - [2838] = 2838, - [2839] = 2737, + [2837] = 2837, + [2838] = 2788, + [2839] = 2839, [2840] = 2840, - [2841] = 2841, - [2842] = 2707, - [2843] = 2057, - [2844] = 2055, - [2845] = 2065, - [2846] = 2819, + [2841] = 2720, + [2842] = 2842, + [2843] = 2843, + [2844] = 2844, + [2845] = 2845, + [2846] = 2846, [2847] = 2847, [2848] = 2848, - [2849] = 2849, - [2850] = 2051, - [2851] = 2823, + [2849] = 2820, + [2850] = 2850, + [2851] = 2851, [2852] = 2852, - [2853] = 2853, - [2854] = 2826, - [2855] = 2059, + [2853] = 2734, + [2854] = 2716, + [2855] = 2855, [2856] = 2856, [2857] = 2857, - [2858] = 2829, - [2859] = 2061, + [2858] = 2858, + [2859] = 2859, [2860] = 2860, [2861] = 2861, - [2862] = 2862, - [2863] = 2755, + [2862] = 2717, + [2863] = 2863, [2864] = 2864, - [2865] = 2740, + [2865] = 2865, [2866] = 2866, [2867] = 2867, [2868] = 2868, - [2869] = 2869, + [2869] = 2723, [2870] = 2870, [2871] = 2871, - [2872] = 2741, + [2872] = 2872, [2873] = 2873, - [2874] = 2874, - [2875] = 2755, + [2874] = 2870, + [2875] = 2865, [2876] = 2876, - [2877] = 2877, + [2877] = 2860, [2878] = 2878, - [2879] = 2879, - [2880] = 2880, - [2881] = 2755, - [2882] = 2853, - [2883] = 2883, - [2884] = 2884, + [2879] = 2858, + [2880] = 2769, + [2881] = 2857, + [2882] = 2771, + [2883] = 2855, + [2884] = 2850, [2885] = 2885, - [2886] = 2886, + [2886] = 2870, [2887] = 2887, - [2888] = 2888, - [2889] = 2889, - [2890] = 2871, - [2891] = 2891, - [2892] = 2892, - [2893] = 2808, - [2894] = 2689, - [2895] = 2834, - [2896] = 2829, - [2897] = 2897, - [2898] = 2898, - [2899] = 2871, - [2900] = 2900, - [2901] = 2901, - [2902] = 2836, - [2903] = 2838, + [2888] = 2867, + [2889] = 2867, + [2890] = 2864, + [2891] = 2863, + [2892] = 2832, + [2893] = 2830, + [2894] = 2829, + [2895] = 2895, + [2896] = 2896, + [2897] = 2825, + [2898] = 2774, + [2899] = 2899, + [2900] = 2864, + [2901] = 2863, + [2902] = 2795, + [2903] = 2859, [2904] = 2904, - [2905] = 2805, - [2906] = 2088, - [2907] = 2064, - [2908] = 2798, - [2909] = 2796, - [2910] = 2074, - [2911] = 2077, - [2912] = 2792, - [2913] = 2790, - [2914] = 2080, - [2915] = 2826, - [2916] = 2743, - [2917] = 2788, - [2918] = 2840, - [2919] = 2841, + [2905] = 2791, + [2906] = 2789, + [2907] = 179, + [2908] = 2908, + [2909] = 2775, + [2910] = 2910, + [2911] = 2766, + [2912] = 407, + [2913] = 2913, + [2914] = 2914, + [2915] = 2915, + [2916] = 2100, + [2917] = 2763, + [2918] = 2105, + [2919] = 2739, [2920] = 2779, - [2921] = 2823, - [2922] = 2922, - [2923] = 2744, + [2921] = 2780, + [2922] = 2743, + [2923] = 2755, [2924] = 2924, - [2925] = 2697, - [2926] = 2730, - [2927] = 2726, + [2925] = 2089, + [2926] = 2785, + [2927] = 2079, [2928] = 2928, - [2929] = 2722, - [2930] = 2749, - [2931] = 2886, - [2932] = 2932, - [2933] = 2856, - [2934] = 2831, - [2935] = 2808, - [2936] = 2936, - [2937] = 2849, - [2938] = 2852, - [2939] = 2831, - [2940] = 2940, - [2941] = 2941, - [2942] = 2877, - [2943] = 2943, - [2944] = 2874, - [2945] = 2857, - [2946] = 2723, - [2947] = 2721, - [2948] = 2762, - [2949] = 2949, - [2950] = 2860, - [2951] = 2712, - [2952] = 2711, - [2953] = 2861, - [2954] = 2710, - [2955] = 2709, - [2956] = 2708, - [2957] = 2704, - [2958] = 2692, - [2959] = 2694, - [2960] = 2699, - [2961] = 2866, - [2962] = 2900, + [2929] = 2086, + [2930] = 2087, + [2931] = 2730, + [2932] = 2099, + [2933] = 2933, + [2934] = 2746, + [2935] = 2935, + [2936] = 2080, + [2937] = 2752, + [2938] = 2078, + [2939] = 2069, + [2940] = 2843, + [2941] = 2716, + [2942] = 2068, + [2943] = 2067, + [2944] = 2066, + [2945] = 2734, + [2946] = 2077, + [2947] = 2084, + [2948] = 2085, + [2949] = 2835, + [2950] = 2090, + [2951] = 2063, + [2952] = 2762, + [2953] = 2953, + [2954] = 2064, + [2955] = 2813, + [2956] = 2770, + [2957] = 2957, + [2958] = 2958, + [2959] = 2831, + [2960] = 2796, + [2961] = 2778, + [2962] = 2782, [2963] = 2963, - [2964] = 2964, - [2965] = 2965, - [2966] = 2083, - [2967] = 2073, - [2968] = 2072, - [2969] = 2969, - [2970] = 2760, - [2971] = 2066, - [2972] = 2758, - [2973] = 2755, - [2974] = 2068, - [2975] = 2975, + [2964] = 2075, + [2965] = 2107, + [2966] = 2787, + [2967] = 2967, + [2968] = 2968, + [2969] = 2804, + [2970] = 2970, + [2971] = 2971, + [2972] = 2972, + [2973] = 2973, + [2974] = 2974, + [2975] = 2081, [2976] = 2976, - [2977] = 2977, - [2978] = 2978, - [2979] = 2979, - [2980] = 2980, - [2981] = 2981, - [2982] = 2982, - [2983] = 2983, - [2984] = 2984, - [2985] = 2985, - [2986] = 2986, - [2987] = 2987, - [2988] = 2988, - [2989] = 2989, - [2990] = 2990, - [2991] = 2991, - [2992] = 2992, - [2993] = 2978, - [2994] = 2994, - [2995] = 2990, - [2996] = 2996, - [2997] = 2997, - [2998] = 2991, - [2999] = 2992, - [3000] = 3000, - [3001] = 3001, - [3002] = 3002, - [3003] = 2994, - [3004] = 2990, - [3005] = 3005, - [3006] = 3006, + [2977] = 2092, + [2978] = 2798, + [2979] = 2112, + [2980] = 2111, + [2981] = 2088, + [2982] = 2065, + [2983] = 2071, + [2984] = 2924, + [2985] = 2802, + [2986] = 2826, + [2987] = 2933, + [2988] = 2794, + [2989] = 2082, + [2990] = 2083, + [2991] = 2788, + [2992] = 2070, + [2993] = 2109, + [2994] = 2827, + [2995] = 2828, + [2996] = 2817, + [2997] = 2845, + [2998] = 2847, + [2999] = 2815, + [3000] = 2848, + [3001] = 2868, + [3002] = 2110, + [3003] = 2851, + [3004] = 2812, + [3005] = 2885, + [3006] = 2887, [3007] = 3007, - [3008] = 2976, - [3009] = 2983, - [3010] = 3010, - [3011] = 3011, + [3008] = 2106, + [3009] = 2072, + [3010] = 2768, + [3011] = 2784, [3012] = 3012, [3013] = 3013, [3014] = 3014, - [3015] = 3014, - [3016] = 2996, - [3017] = 3013, + [3015] = 3015, + [3016] = 3016, + [3017] = 3017, [3018] = 3018, - [3019] = 3019, + [3019] = 1197, [3020] = 3020, [3021] = 3021, - [3022] = 3019, + [3022] = 3022, [3023] = 3023, [3024] = 3024, - [3025] = 429, + [3025] = 1309, [3026] = 3026, - [3027] = 3027, - [3028] = 2980, + [3027] = 3024, + [3028] = 3028, [3029] = 3029, - [3030] = 3020, - [3031] = 3013, - [3032] = 3014, - [3033] = 2983, + [3030] = 3030, + [3031] = 3015, + [3032] = 3032, + [3033] = 3030, [3034] = 3034, - [3035] = 3035, - [3036] = 3036, - [3037] = 3037, - [3038] = 2984, + [3035] = 3029, + [3036] = 3032, + [3037] = 3017, + [3038] = 1108, [3039] = 3039, [3040] = 3040, - [3041] = 3041, + [3041] = 3028, [3042] = 3042, - [3043] = 3023, + [3043] = 3043, [3044] = 3044, [3045] = 3045, - [3046] = 3045, - [3047] = 2991, - [3048] = 3044, - [3049] = 3049, - [3050] = 3050, + [3046] = 3046, + [3047] = 3047, + [3048] = 3024, + [3049] = 3030, + [3050] = 1369, [3051] = 3051, [3052] = 3052, [3053] = 3053, [3054] = 3054, - [3055] = 3040, - [3056] = 2981, - [3057] = 2984, - [3058] = 3058, - [3059] = 3059, - [3060] = 3052, - [3061] = 2824, - [3062] = 2983, - [3063] = 2985, - [3064] = 2822, - [3065] = 3065, - [3066] = 3010, - [3067] = 2997, + [3055] = 3024, + [3056] = 3056, + [3057] = 3057, + [3058] = 3043, + [3059] = 3028, + [3060] = 3060, + [3061] = 3047, + [3062] = 3062, + [3063] = 3063, + [3064] = 3064, + [3065] = 3014, + [3066] = 3066, + [3067] = 3067, [3068] = 3068, [3069] = 3069, [3070] = 3070, [3071] = 3071, [3072] = 3072, [3073] = 3073, - [3074] = 3074, + [3074] = 3052, [3075] = 3075, - [3076] = 3069, - [3077] = 3042, + [3076] = 3076, + [3077] = 3028, [3078] = 3078, - [3079] = 3020, + [3079] = 3032, [3080] = 3080, [3081] = 3081, - [3082] = 3082, + [3082] = 3018, [3083] = 3083, - [3084] = 3084, - [3085] = 3037, - [3086] = 3027, - [3087] = 3053, - [3088] = 3088, + [3084] = 3017, + [3085] = 3085, + [3086] = 3086, + [3087] = 3087, + [3088] = 3030, [3089] = 3089, [3090] = 3090, [3091] = 3091, - [3092] = 3024, - [3093] = 3040, + [3092] = 3092, + [3093] = 3093, [3094] = 3094, - [3095] = 3044, - [3096] = 3096, + [3095] = 3095, + [3096] = 3013, [3097] = 3097, [3098] = 3098, - [3099] = 3045, - [3100] = 2997, - [3101] = 3012, + [3099] = 3094, + [3100] = 3100, + [3101] = 3101, [3102] = 3102, - [3103] = 2984, + [3103] = 3103, [3104] = 3104, - [3105] = 3105, + [3105] = 3015, [3106] = 3106, - [3107] = 2983, - [3108] = 3080, - [3109] = 2983, - [3110] = 3049, - [3111] = 3006, - [3112] = 3041, - [3113] = 3023, - [3114] = 2977, + [3107] = 3044, + [3108] = 3046, + [3109] = 3109, + [3110] = 3024, + [3111] = 3111, + [3112] = 3112, + [3113] = 3051, + [3114] = 3114, [3115] = 3115, [3116] = 3116, - [3117] = 3013, - [3118] = 3039, - [3119] = 3006, - [3120] = 2984, - [3121] = 1374, - [3122] = 3044, - [3123] = 3049, - [3124] = 3051, - [3125] = 2976, - [3126] = 3054, - [3127] = 2983, - [3128] = 3026, + [3117] = 3117, + [3118] = 3118, + [3119] = 3029, + [3120] = 3120, + [3121] = 3121, + [3122] = 3094, + [3123] = 1429, + [3124] = 3124, + [3125] = 3125, + [3126] = 3125, + [3127] = 3127, + [3128] = 3128, [3129] = 3129, [3130] = 3130, - [3131] = 3018, - [3132] = 3132, - [3133] = 3012, - [3134] = 3134, - [3135] = 3135, - [3136] = 3070, - [3137] = 3137, - [3138] = 3035, - [3139] = 3084, - [3140] = 3137, - [3141] = 3094, - [3142] = 3129, - [3143] = 3005, - [3144] = 2997, - [3145] = 3002, - [3146] = 3049, - [3147] = 2987, - [3148] = 2997, - [3149] = 3149, - [3150] = 2983, - [3151] = 3151, - [3152] = 3023, - [3153] = 3001, - [3154] = 2978, - [3155] = 3000, - [3156] = 3156, - [3157] = 2984, - [3158] = 3158, - [3159] = 3044, - [3160] = 3049, - [3161] = 3161, - [3162] = 3162, - [3163] = 2986, - [3164] = 3023, - [3165] = 3007, - [3166] = 2989, - [3167] = 3036, - [3168] = 3021, - [3169] = 3162, - [3170] = 3170, - [3171] = 3058, - [3172] = 3115, - [3173] = 2997, - [3174] = 3174, - [3175] = 3096, - [3176] = 3097, - [3177] = 3065, - [3178] = 2983, - [3179] = 3023, - [3180] = 3068, - [3181] = 3181, - [3182] = 2984, - [3183] = 3069, - [3184] = 3044, - [3185] = 3049, - [3186] = 1250, - [3187] = 3073, - [3188] = 3082, - [3189] = 3098, - [3190] = 2984, - [3191] = 1248, - [3192] = 3102, - [3193] = 3161, - [3194] = 3194, - [3195] = 3195, - [3196] = 3059, - [3197] = 2991, - [3198] = 2997, - [3199] = 3199, + [3131] = 3094, + [3132] = 3044, + [3133] = 3133, + [3134] = 3111, + [3135] = 3046, + [3136] = 3136, + [3137] = 3024, + [3138] = 3124, + [3139] = 3139, + [3140] = 3140, + [3141] = 3141, + [3142] = 3053, + [3143] = 3032, + [3144] = 3097, + [3145] = 3029, + [3146] = 3051, + [3147] = 3067, + [3148] = 3148, + [3149] = 3076, + [3150] = 3073, + [3151] = 3068, + [3152] = 3024, + [3153] = 3057, + [3154] = 3066, + [3155] = 3045, + [3156] = 3042, + [3157] = 3157, + [3158] = 3062, + [3159] = 3127, + [3160] = 3034, + [3161] = 3039, + [3162] = 3070, + [3163] = 3163, + [3164] = 3026, + [3165] = 3028, + [3166] = 3016, + [3167] = 3085, + [3168] = 3090, + [3169] = 3062, + [3170] = 2810, + [3171] = 2809, + [3172] = 3172, + [3173] = 3021, + [3174] = 3062, + [3175] = 3022, + [3176] = 3023, + [3177] = 3112, + [3178] = 3054, + [3179] = 3012, + [3180] = 3109, + [3181] = 3093, + [3182] = 3182, + [3183] = 3183, + [3184] = 3098, + [3185] = 3091, + [3186] = 3186, + [3187] = 3069, + [3188] = 3188, + [3189] = 3029, + [3190] = 3070, + [3191] = 3064, + [3192] = 3069, + [3193] = 3193, + [3194] = 3075, + [3195] = 3024, + [3196] = 3078, + [3197] = 3062, + [3198] = 3071, + [3199] = 3120, [3200] = 3200, - [3201] = 1157, - [3202] = 2983, - [3203] = 3023, - [3204] = 3204, - [3205] = 2984, - [3206] = 3081, - [3207] = 3044, - [3208] = 3049, - [3209] = 3130, - [3210] = 3210, - [3211] = 3211, - [3212] = 3156, - [3213] = 3174, - [3214] = 2983, - [3215] = 2984, - [3216] = 3199, - [3217] = 3044, - [3218] = 3049, - [3219] = 3059, - [3220] = 3011, - [3221] = 3044, - [3222] = 3049, - [3223] = 3181, - [3224] = 3075, - [3225] = 3044, - [3226] = 3049, - [3227] = 3227, - [3228] = 3073, - [3229] = 3044, - [3230] = 3049, - [3231] = 3231, - [3232] = 2976, - [3233] = 3231, - [3234] = 3151, - [3235] = 3235, - [3236] = 2990, - [3237] = 2984, - [3238] = 3027, - [3239] = 3235, - [3240] = 3195, - [3241] = 2209, - [3242] = 3068, + [3201] = 3201, + [3202] = 3028, + [3203] = 3070, + [3204] = 3085, + [3205] = 3090, + [3206] = 3071, + [3207] = 3207, + [3208] = 3060, + [3209] = 3201, + [3210] = 3183, + [3211] = 3063, + [3212] = 3186, + [3213] = 3140, + [3214] = 3060, + [3215] = 3200, + [3216] = 3020, + [3217] = 3028, + [3218] = 3218, + [3219] = 3028, + [3220] = 3220, + [3221] = 3024, + [3222] = 3040, + [3223] = 3223, + [3224] = 3028, + [3225] = 3111, + [3226] = 3085, + [3227] = 3090, + [3228] = 3116, + [3229] = 3118, + [3230] = 3115, + [3231] = 3083, + [3232] = 3232, + [3233] = 3085, + [3234] = 3234, + [3235] = 3083, + [3236] = 3086, + [3237] = 3085, + [3238] = 3238, + [3239] = 3013, + [3240] = 3086, + [3241] = 3054, + [3242] = 3024, [3243] = 3243, - [3244] = 3244, - [3245] = 3245, - [3246] = 3246, - [3247] = 3247, - [3248] = 3248, + [3244] = 3028, + [3245] = 3118, + [3246] = 3085, + [3247] = 3090, + [3248] = 3106, [3249] = 3249, - [3250] = 3250, - [3251] = 3251, - [3252] = 3252, - [3253] = 3253, - [3254] = 3254, - [3255] = 3255, - [3256] = 3256, - [3257] = 3257, + [3250] = 3090, + [3251] = 3090, + [3252] = 3103, + [3253] = 3024, + [3254] = 3028, + [3255] = 3182, + [3256] = 3085, + [3257] = 3090, [3258] = 3258, - [3259] = 3259, - [3260] = 3260, - [3261] = 3261, - [3262] = 3262, + [3259] = 3188, + [3260] = 3085, + [3261] = 3090, + [3262] = 3101, [3263] = 3263, - [3264] = 3264, - [3265] = 3265, + [3264] = 3085, + [3265] = 3090, [3266] = 3266, [3267] = 3267, - [3268] = 3268, - [3269] = 3269, - [3270] = 3270, - [3271] = 446, - [3272] = 3272, + [3268] = 3085, + [3269] = 3090, + [3270] = 3163, + [3271] = 3271, + [3272] = 3267, [3273] = 3273, - [3274] = 3274, - [3275] = 3275, + [3274] = 3243, + [3275] = 3273, [3276] = 3276, [3277] = 3277, - [3278] = 3244, - [3279] = 3279, - [3280] = 3257, - [3281] = 3281, - [3282] = 3259, - [3283] = 3283, - [3284] = 3284, - [3285] = 3285, - [3286] = 3286, + [3278] = 3278, + [3279] = 3094, + [3280] = 3276, + [3281] = 3278, + [3282] = 3072, + [3283] = 3125, + [3284] = 3046, + [3285] = 3271, + [3286] = 3238, [3287] = 3287, [3288] = 3288, [3289] = 3289, @@ -7131,9 +7139,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3292] = 3292, [3293] = 3293, [3294] = 3294, - [3295] = 3262, - [3296] = 3260, - [3297] = 3263, + [3295] = 3295, + [3296] = 3296, + [3297] = 3297, [3298] = 3298, [3299] = 3299, [3300] = 3300, @@ -7141,11 +7149,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3302] = 3302, [3303] = 3303, [3304] = 3304, - [3305] = 3291, + [3305] = 3292, [3306] = 3306, - [3307] = 3258, - [3308] = 3308, - [3309] = 3309, + [3307] = 3307, + [3308] = 3298, + [3309] = 395, [3310] = 3310, [3311] = 3311, [3312] = 3312, @@ -7156,217 +7164,259 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3317] = 3317, [3318] = 3318, [3319] = 3319, - [3320] = 3320, - [3321] = 3304, - [3322] = 3272, + [3320] = 3288, + [3321] = 3321, + [3322] = 3322, [3323] = 3323, - [3324] = 3324, - [3325] = 3289, + [3324] = 3323, + [3325] = 3325, [3326] = 3326, - [3327] = 3289, + [3327] = 3325, [3328] = 3328, [3329] = 3329, - [3330] = 3330, + [3330] = 3328, [3331] = 3331, [3332] = 3332, [3333] = 3333, [3334] = 3334, - [3335] = 3326, - [3336] = 3273, + [3335] = 3335, + [3336] = 3334, [3337] = 3337, [3338] = 3338, [3339] = 3339, - [3340] = 3314, - [3341] = 3341, + [3340] = 3340, + [3341] = 3291, [3342] = 3342, - [3343] = 3343, - [3344] = 3332, - [3345] = 3341, - [3346] = 3332, + [3343] = 3333, + [3344] = 3344, + [3345] = 3345, + [3346] = 3346, [3347] = 3347, - [3348] = 3314, - [3349] = 3316, - [3350] = 3350, - [3351] = 3274, + [3348] = 3335, + [3349] = 3349, + [3350] = 3347, + [3351] = 3351, [3352] = 3352, - [3353] = 3267, - [3354] = 3343, + [3353] = 3353, + [3354] = 3354, [3355] = 3355, [3356] = 3356, - [3357] = 3357, - [3358] = 3358, - [3359] = 3333, - [3360] = 3360, - [3361] = 3361, - [3362] = 3302, - [3363] = 3309, + [3357] = 3352, + [3358] = 3301, + [3359] = 3359, + [3360] = 3353, + [3361] = 3355, + [3362] = 3307, + [3363] = 3363, [3364] = 3364, - [3365] = 3304, + [3365] = 3365, [3366] = 3366, - [3367] = 3367, - [3368] = 3319, + [3367] = 3310, + [3368] = 3368, [3369] = 3369, - [3370] = 3370, - [3371] = 3333, + [3370] = 3359, + [3371] = 3371, [3372] = 3372, - [3373] = 3281, + [3373] = 3373, [3374] = 3374, - [3375] = 3375, + [3375] = 3318, [3376] = 3376, - [3377] = 3377, - [3378] = 3378, - [3379] = 3283, - [3380] = 3293, - [3381] = 3350, + [3377] = 3317, + [3378] = 3355, + [3379] = 3379, + [3380] = 3316, + [3381] = 3315, [3382] = 3382, - [3383] = 3248, - [3384] = 3298, + [3383] = 3383, + [3384] = 3384, [3385] = 3385, [3386] = 3386, [3387] = 3387, - [3388] = 3388, - [3389] = 3268, - [3390] = 3246, - [3391] = 3248, - [3392] = 3246, - [3393] = 3360, - [3394] = 3289, - [3395] = 3257, - [3396] = 3258, - [3397] = 3397, - [3398] = 3260, - [3399] = 3356, - [3400] = 3261, - [3401] = 3275, + [3388] = 3322, + [3389] = 3386, + [3390] = 3390, + [3391] = 3390, + [3392] = 3392, + [3393] = 3393, + [3394] = 3394, + [3395] = 3314, + [3396] = 3396, + [3397] = 3313, + [3398] = 3398, + [3399] = 3399, + [3400] = 3340, + [3401] = 3398, [3402] = 3402, - [3403] = 3273, - [3404] = 3276, + [3403] = 3403, + [3404] = 3312, [3405] = 3405, - [3406] = 3277, - [3407] = 3293, - [3408] = 3294, - [3409] = 3262, - [3410] = 3361, - [3411] = 3279, - [3412] = 3299, - [3413] = 3261, + [3406] = 3406, + [3407] = 3407, + [3408] = 3355, + [3409] = 3311, + [3410] = 3346, + [3411] = 3411, + [3412] = 3412, + [3413] = 3413, [3414] = 3414, [3415] = 3415, - [3416] = 3386, - [3417] = 3247, - [3418] = 3249, - [3419] = 3253, + [3416] = 3416, + [3417] = 3415, + [3418] = 3366, + [3419] = 3413, [3420] = 3420, - [3421] = 3248, + [3421] = 3421, [3422] = 3422, - [3423] = 3257, - [3424] = 3260, - [3425] = 3310, - [3426] = 3382, - [3427] = 3330, + [3423] = 3321, + [3424] = 3424, + [3425] = 3386, + [3426] = 3426, + [3427] = 3427, [3428] = 3428, - [3429] = 3262, - [3430] = 3250, - [3431] = 3311, - [3432] = 3432, - [3433] = 3255, - [3434] = 3331, - [3435] = 3257, - [3436] = 3260, - [3437] = 3262, - [3438] = 3257, - [3439] = 3260, - [3440] = 3262, - [3441] = 3257, - [3442] = 3260, - [3443] = 3262, - [3444] = 3257, - [3445] = 3260, - [3446] = 3257, - [3447] = 3260, - [3448] = 3257, - [3449] = 3260, - [3450] = 3257, - [3451] = 3260, - [3452] = 3318, - [3453] = 436, - [3454] = 3454, + [3429] = 3429, + [3430] = 3430, + [3431] = 3356, + [3432] = 3383, + [3433] = 3433, + [3434] = 3332, + [3435] = 3351, + [3436] = 3296, + [3437] = 3297, + [3438] = 3299, + [3439] = 3299, + [3440] = 3386, + [3441] = 3414, + [3442] = 3379, + [3443] = 3354, + [3444] = 3444, + [3445] = 3313, + [3446] = 3446, + [3447] = 3366, + [3448] = 3297, + [3449] = 3372, + [3450] = 3333, + [3451] = 3334, + [3452] = 3335, + [3453] = 3296, + [3454] = 3390, [3455] = 3455, - [3456] = 3378, - [3457] = 3357, - [3458] = 3320, - [3459] = 3338, - [3460] = 3252, - [3461] = 3256, - [3462] = 3342, - [3463] = 3301, - [3464] = 3464, - [3465] = 3465, - [3466] = 3308, - [3467] = 3314, - [3468] = 3268, - [3469] = 3300, - [3470] = 3375, + [3456] = 3344, + [3457] = 3413, + [3458] = 3294, + [3459] = 3420, + [3460] = 3460, + [3461] = 3346, + [3462] = 3371, + [3463] = 3368, + [3464] = 3383, + [3465] = 3326, + [3466] = 3296, + [3467] = 3299, + [3468] = 3373, + [3469] = 3469, + [3470] = 3340, [3471] = 3471, - [3472] = 3314, - [3473] = 3254, - [3474] = 3334, - [3475] = 3337, - [3476] = 3264, - [3477] = 3312, + [3472] = 3472, + [3473] = 3335, + [3474] = 3474, + [3475] = 3475, + [3476] = 3476, + [3477] = 3477, [3478] = 3478, - [3479] = 3329, - [3480] = 3420, + [3479] = 3296, + [3480] = 3299, [3481] = 3481, - [3482] = 3482, - [3483] = 3483, - [3484] = 3302, - [3485] = 3304, - [3486] = 3347, - [3487] = 3323, - [3488] = 3332, - [3489] = 3414, - [3490] = 3294, - [3491] = 3491, - [3492] = 3491, - [3493] = 3269, - [3494] = 3494, - [3495] = 3481, - [3496] = 3313, - [3497] = 3374, - [3498] = 3471, - [3499] = 3378, - [3500] = 3357, - [3501] = 3252, - [3502] = 3502, - [3503] = 3316, - [3504] = 3378, - [3505] = 3252, - [3506] = 3290, - [3507] = 3339, - [3508] = 3252, - [3509] = 3252, - [3510] = 3252, + [3482] = 3335, + [3483] = 3296, + [3484] = 3299, + [3485] = 3335, + [3486] = 3296, + [3487] = 3335, + [3488] = 3296, + [3489] = 3296, + [3490] = 3296, + [3491] = 3296, + [3492] = 3328, + [3493] = 3493, + [3494] = 403, + [3495] = 3430, + [3496] = 3496, + [3497] = 3471, + [3498] = 3347, + [3499] = 3460, + [3500] = 3422, + [3501] = 3421, + [3502] = 3290, + [3503] = 3503, + [3504] = 3504, + [3505] = 3505, + [3506] = 3405, + [3507] = 3321, + [3508] = 3508, + [3509] = 3509, + [3510] = 3355, [3511] = 3511, - [3512] = 3243, - [3513] = 3320, + [3512] = 3293, + [3513] = 3496, [3514] = 3369, - [3515] = 3306, - [3516] = 3494, - [3517] = 3483, - [3518] = 3387, - [3519] = 3454, - [3520] = 3415, - [3521] = 3265, - [3522] = 3316, + [3515] = 3515, + [3516] = 3300, + [3517] = 3383, + [3518] = 3518, + [3519] = 3519, + [3520] = 3349, + [3521] = 3365, + [3522] = 3522, [3523] = 3523, - [3524] = 3524, - [3525] = 3525, - [3526] = 3526, - [3527] = 3527, - [3528] = 3528, - [3529] = 3529, - [3530] = 3530, + [3524] = 3384, + [3525] = 3387, + [3526] = 3477, + [3527] = 3393, + [3528] = 3411, + [3529] = 3414, + [3530] = 3294, + [3531] = 3416, + [3532] = 3426, + [3533] = 3511, + [3534] = 3413, + [3535] = 3412, + [3536] = 3319, + [3537] = 3406, + [3538] = 3331, + [3539] = 3402, + [3540] = 3496, + [3541] = 3471, + [3542] = 3460, + [3543] = 3422, + [3544] = 3544, + [3545] = 3366, + [3546] = 3496, + [3547] = 3422, + [3548] = 3428, + [3549] = 3390, + [3550] = 3422, + [3551] = 3422, + [3552] = 3422, + [3553] = 3553, + [3554] = 3518, + [3555] = 3302, + [3556] = 3474, + [3557] = 3407, + [3558] = 3303, + [3559] = 3523, + [3560] = 3376, + [3561] = 3374, + [3562] = 3304, + [3563] = 3295, + [3564] = 3306, + [3565] = 3472, + [3566] = 3566, + [3567] = 3567, + [3568] = 3568, + [3569] = 3569, + [3570] = 3570, + [3571] = 3571, + [3572] = 3572, }; static inline bool sym_identifier_character_set_1(int32_t c) { @@ -12334,9 +12384,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(30); if (lookahead == '/') ADVANCE(27); if (lookahead == '0') ADVANCE(155); - if (lookahead == ':') ADVANCE(39); + if (lookahead == ':') ADVANCE(81); + if (lookahead == ';') ADVANCE(71); if (lookahead == '<') ADVANCE(118); + if (lookahead == '=') ADVANCE(99); if (lookahead == '>') ADVANCE(120); + if (lookahead == '?') ADVANCE(91); if (lookahead == '[') ADVANCE(75); if (lookahead == ']') ADVANCE(76); if (lookahead == 'b') ADVANCE(182); @@ -12367,10 +12420,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '0') ADVANCE(155); if (lookahead == ':') ADVANCE(39); if (lookahead == '<') ADVANCE(118); + if (lookahead == '=') ADVANCE(42); + if (lookahead == '?') ADVANCE(91); if (lookahead == '[') ADVANCE(75); if (lookahead == 'b') ADVANCE(182); if (lookahead == 'c') ADVANCE(183); if (lookahead == 'r') ADVANCE(184); + if (lookahead == '|') ADVANCE(122); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(10) if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); @@ -12664,6 +12720,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ',') ADVANCE(103); if (lookahead == '.') ADVANCE(30); if (lookahead == '/') ADVANCE(27); + if (lookahead == '0') ADVANCE(155); if (lookahead == ':') ADVANCE(80); if (lookahead == '<') ADVANCE(118); if (lookahead == 'r') ADVANCE(184); @@ -12671,6 +12728,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '}') ADVANCE(78); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(22) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(158); if (sym_identifier_character_set_2(lookahead)) ADVANCE(195); END_STATE(); case 23: @@ -14380,36 +14438,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 1, .external_lex_state = 2}, [43] = {.lex_state = 2, .external_lex_state = 2}, [44] = {.lex_state = 2, .external_lex_state = 2}, - [45] = {.lex_state = 2, .external_lex_state = 2}, + [45] = {.lex_state = 1, .external_lex_state = 2}, [46] = {.lex_state = 2, .external_lex_state = 2}, - [47] = {.lex_state = 2, .external_lex_state = 2}, + [47] = {.lex_state = 1, .external_lex_state = 2}, [48] = {.lex_state = 2, .external_lex_state = 2}, [49] = {.lex_state = 2, .external_lex_state = 2}, [50] = {.lex_state = 2, .external_lex_state = 2}, [51] = {.lex_state = 2, .external_lex_state = 2}, [52] = {.lex_state = 2, .external_lex_state = 2}, - [53] = {.lex_state = 2, .external_lex_state = 2}, - [54] = {.lex_state = 2, .external_lex_state = 2}, - [55] = {.lex_state = 2, .external_lex_state = 2}, + [53] = {.lex_state = 1, .external_lex_state = 2}, + [54] = {.lex_state = 1, .external_lex_state = 2}, + [55] = {.lex_state = 1, .external_lex_state = 2}, [56] = {.lex_state = 1, .external_lex_state = 2}, [57] = {.lex_state = 1, .external_lex_state = 2}, - [58] = {.lex_state = 2, .external_lex_state = 2}, - [59] = {.lex_state = 2, .external_lex_state = 2}, - [60] = {.lex_state = 2, .external_lex_state = 2}, + [58] = {.lex_state = 1, .external_lex_state = 2}, + [59] = {.lex_state = 1, .external_lex_state = 2}, + [60] = {.lex_state = 1, .external_lex_state = 2}, [61] = {.lex_state = 1, .external_lex_state = 2}, [62] = {.lex_state = 1, .external_lex_state = 2}, [63] = {.lex_state = 1, .external_lex_state = 2}, [64] = {.lex_state = 1, .external_lex_state = 2}, [65] = {.lex_state = 1, .external_lex_state = 2}, [66] = {.lex_state = 1, .external_lex_state = 2}, - [67] = {.lex_state = 1, .external_lex_state = 2}, - [68] = {.lex_state = 1, .external_lex_state = 2}, - [69] = {.lex_state = 1, .external_lex_state = 2}, - [70] = {.lex_state = 1, .external_lex_state = 2}, - [71] = {.lex_state = 1, .external_lex_state = 2}, - [72] = {.lex_state = 1, .external_lex_state = 2}, - [73] = {.lex_state = 1, .external_lex_state = 2}, - [74] = {.lex_state = 1, .external_lex_state = 2}, + [67] = {.lex_state = 9, .external_lex_state = 2}, + [68] = {.lex_state = 9, .external_lex_state = 2}, + [69] = {.lex_state = 9, .external_lex_state = 2}, + [70] = {.lex_state = 9, .external_lex_state = 2}, + [71] = {.lex_state = 9, .external_lex_state = 2}, + [72] = {.lex_state = 9, .external_lex_state = 2}, + [73] = {.lex_state = 9, .external_lex_state = 2}, + [74] = {.lex_state = 9, .external_lex_state = 2}, [75] = {.lex_state = 9, .external_lex_state = 2}, [76] = {.lex_state = 9, .external_lex_state = 2}, [77] = {.lex_state = 9, .external_lex_state = 2}, @@ -14447,134 +14505,134 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [109] = {.lex_state = 9, .external_lex_state = 2}, [110] = {.lex_state = 9, .external_lex_state = 2}, [111] = {.lex_state = 9, .external_lex_state = 2}, - [112] = {.lex_state = 9, .external_lex_state = 2}, - [113] = {.lex_state = 9, .external_lex_state = 2}, + [112] = {.lex_state = 67, .external_lex_state = 2}, + [113] = {.lex_state = 12, .external_lex_state = 2}, [114] = {.lex_state = 9, .external_lex_state = 2}, - [115] = {.lex_state = 9, .external_lex_state = 2}, - [116] = {.lex_state = 9, .external_lex_state = 2}, - [117] = {.lex_state = 9, .external_lex_state = 2}, - [118] = {.lex_state = 9, .external_lex_state = 2}, - [119] = {.lex_state = 12, .external_lex_state = 2}, + [115] = {.lex_state = 12, .external_lex_state = 2}, + [116] = {.lex_state = 12, .external_lex_state = 2}, + [117] = {.lex_state = 12, .external_lex_state = 2}, + [118] = {.lex_state = 12, .external_lex_state = 2}, + [119] = {.lex_state = 9, .external_lex_state = 2}, [120] = {.lex_state = 12, .external_lex_state = 2}, - [121] = {.lex_state = 9, .external_lex_state = 2}, - [122] = {.lex_state = 12, .external_lex_state = 2}, - [123] = {.lex_state = 12, .external_lex_state = 2}, - [124] = {.lex_state = 67, .external_lex_state = 2}, + [121] = {.lex_state = 12, .external_lex_state = 2}, + [122] = {.lex_state = 9, .external_lex_state = 2}, + [123] = {.lex_state = 9, .external_lex_state = 2}, + [124] = {.lex_state = 9, .external_lex_state = 2}, [125] = {.lex_state = 12, .external_lex_state = 2}, [126] = {.lex_state = 12, .external_lex_state = 2}, - [127] = {.lex_state = 9, .external_lex_state = 2}, + [127] = {.lex_state = 12, .external_lex_state = 2}, [128] = {.lex_state = 9, .external_lex_state = 2}, [129] = {.lex_state = 9, .external_lex_state = 2}, [130] = {.lex_state = 9, .external_lex_state = 2}, - [131] = {.lex_state = 12, .external_lex_state = 2}, + [131] = {.lex_state = 9, .external_lex_state = 2}, [132] = {.lex_state = 12, .external_lex_state = 2}, [133] = {.lex_state = 9, .external_lex_state = 2}, - [134] = {.lex_state = 9, .external_lex_state = 2}, - [135] = {.lex_state = 12, .external_lex_state = 2}, - [136] = {.lex_state = 9, .external_lex_state = 2}, - [137] = {.lex_state = 9, .external_lex_state = 2}, + [134] = {.lex_state = 12, .external_lex_state = 2}, + [135] = {.lex_state = 9, .external_lex_state = 2}, + [136] = {.lex_state = 12, .external_lex_state = 2}, + [137] = {.lex_state = 12, .external_lex_state = 2}, [138] = {.lex_state = 12, .external_lex_state = 2}, - [139] = {.lex_state = 12, .external_lex_state = 2}, - [140] = {.lex_state = 12, .external_lex_state = 2}, - [141] = {.lex_state = 9, .external_lex_state = 2}, - [142] = {.lex_state = 9, .external_lex_state = 2}, - [143] = {.lex_state = 12, .external_lex_state = 2}, - [144] = {.lex_state = 12, .external_lex_state = 2}, - [145] = {.lex_state = 12, .external_lex_state = 2}, - [146] = {.lex_state = 12, .external_lex_state = 2}, - [147] = {.lex_state = 12, .external_lex_state = 2}, + [139] = {.lex_state = 9, .external_lex_state = 2}, + [140] = {.lex_state = 9, .external_lex_state = 2}, + [141] = {.lex_state = 67, .external_lex_state = 2}, + [142] = {.lex_state = 67, .external_lex_state = 2}, + [143] = {.lex_state = 67, .external_lex_state = 2}, + [144] = {.lex_state = 9, .external_lex_state = 2}, + [145] = {.lex_state = 67, .external_lex_state = 2}, + [146] = {.lex_state = 67, .external_lex_state = 2}, + [147] = {.lex_state = 9, .external_lex_state = 2}, [148] = {.lex_state = 9, .external_lex_state = 2}, - [149] = {.lex_state = 12, .external_lex_state = 2}, - [150] = {.lex_state = 12, .external_lex_state = 2}, + [149] = {.lex_state = 9, .external_lex_state = 2}, + [150] = {.lex_state = 67, .external_lex_state = 2}, [151] = {.lex_state = 9, .external_lex_state = 2}, - [152] = {.lex_state = 12, .external_lex_state = 2}, - [153] = {.lex_state = 12, .external_lex_state = 2}, - [154] = {.lex_state = 9, .external_lex_state = 2}, + [152] = {.lex_state = 9, .external_lex_state = 2}, + [153] = {.lex_state = 9, .external_lex_state = 2}, + [154] = {.lex_state = 67, .external_lex_state = 2}, [155] = {.lex_state = 9, .external_lex_state = 2}, - [156] = {.lex_state = 9, .external_lex_state = 2}, - [157] = {.lex_state = 67, .external_lex_state = 2}, + [156] = {.lex_state = 67, .external_lex_state = 2}, + [157] = {.lex_state = 9, .external_lex_state = 2}, [158] = {.lex_state = 9, .external_lex_state = 2}, - [159] = {.lex_state = 67, .external_lex_state = 2}, + [159] = {.lex_state = 9, .external_lex_state = 2}, [160] = {.lex_state = 67, .external_lex_state = 2}, - [161] = {.lex_state = 67, .external_lex_state = 2}, + [161] = {.lex_state = 9, .external_lex_state = 2}, [162] = {.lex_state = 9, .external_lex_state = 2}, - [163] = {.lex_state = 67, .external_lex_state = 2}, + [163] = {.lex_state = 9, .external_lex_state = 2}, [164] = {.lex_state = 9, .external_lex_state = 2}, [165] = {.lex_state = 9, .external_lex_state = 2}, - [166] = {.lex_state = 67, .external_lex_state = 2}, + [166] = {.lex_state = 9, .external_lex_state = 2}, [167] = {.lex_state = 9, .external_lex_state = 2}, [168] = {.lex_state = 9, .external_lex_state = 2}, - [169] = {.lex_state = 9, .external_lex_state = 2}, - [170] = {.lex_state = 67, .external_lex_state = 2}, - [171] = {.lex_state = 9, .external_lex_state = 2}, - [172] = {.lex_state = 67, .external_lex_state = 2}, - [173] = {.lex_state = 9, .external_lex_state = 2}, + [169] = {.lex_state = 67, .external_lex_state = 2}, + [170] = {.lex_state = 9, .external_lex_state = 2}, + [171] = {.lex_state = 67, .external_lex_state = 2}, + [172] = {.lex_state = 9, .external_lex_state = 2}, + [173] = {.lex_state = 67, .external_lex_state = 2}, [174] = {.lex_state = 9, .external_lex_state = 2}, - [175] = {.lex_state = 9, .external_lex_state = 2}, + [175] = {.lex_state = 67, .external_lex_state = 2}, [176] = {.lex_state = 9, .external_lex_state = 2}, - [177] = {.lex_state = 9, .external_lex_state = 2}, + [177] = {.lex_state = 67, .external_lex_state = 2}, [178] = {.lex_state = 9, .external_lex_state = 2}, [179] = {.lex_state = 67, .external_lex_state = 2}, - [180] = {.lex_state = 9, .external_lex_state = 2}, + [180] = {.lex_state = 67, .external_lex_state = 2}, [181] = {.lex_state = 9, .external_lex_state = 2}, [182] = {.lex_state = 9, .external_lex_state = 2}, [183] = {.lex_state = 9, .external_lex_state = 2}, - [184] = {.lex_state = 9, .external_lex_state = 2}, + [184] = {.lex_state = 67, .external_lex_state = 2}, [185] = {.lex_state = 9, .external_lex_state = 2}, - [186] = {.lex_state = 9, .external_lex_state = 2}, + [186] = {.lex_state = 67, .external_lex_state = 2}, [187] = {.lex_state = 9, .external_lex_state = 2}, [188] = {.lex_state = 9, .external_lex_state = 2}, [189] = {.lex_state = 9, .external_lex_state = 2}, - [190] = {.lex_state = 67, .external_lex_state = 2}, - [191] = {.lex_state = 67, .external_lex_state = 2}, + [190] = {.lex_state = 9, .external_lex_state = 2}, + [191] = {.lex_state = 9, .external_lex_state = 2}, [192] = {.lex_state = 9, .external_lex_state = 2}, [193] = {.lex_state = 9, .external_lex_state = 2}, [194] = {.lex_state = 9, .external_lex_state = 2}, [195] = {.lex_state = 9, .external_lex_state = 2}, [196] = {.lex_state = 9, .external_lex_state = 2}, - [197] = {.lex_state = 9, .external_lex_state = 2}, + [197] = {.lex_state = 67, .external_lex_state = 2}, [198] = {.lex_state = 9, .external_lex_state = 2}, - [199] = {.lex_state = 9, .external_lex_state = 2}, + [199] = {.lex_state = 67, .external_lex_state = 2}, [200] = {.lex_state = 9, .external_lex_state = 2}, - [201] = {.lex_state = 67, .external_lex_state = 2}, + [201] = {.lex_state = 9, .external_lex_state = 2}, [202] = {.lex_state = 9, .external_lex_state = 2}, - [203] = {.lex_state = 9, .external_lex_state = 2}, + [203] = {.lex_state = 67, .external_lex_state = 2}, [204] = {.lex_state = 9, .external_lex_state = 2}, - [205] = {.lex_state = 67, .external_lex_state = 2}, + [205] = {.lex_state = 9, .external_lex_state = 2}, [206] = {.lex_state = 9, .external_lex_state = 2}, - [207] = {.lex_state = 67, .external_lex_state = 2}, - [208] = {.lex_state = 67, .external_lex_state = 2}, - [209] = {.lex_state = 67, .external_lex_state = 2}, - [210] = {.lex_state = 9, .external_lex_state = 2}, + [207] = {.lex_state = 9, .external_lex_state = 2}, + [208] = {.lex_state = 9, .external_lex_state = 2}, + [209] = {.lex_state = 9, .external_lex_state = 2}, + [210] = {.lex_state = 67, .external_lex_state = 2}, [211] = {.lex_state = 9, .external_lex_state = 2}, [212] = {.lex_state = 9, .external_lex_state = 2}, [213] = {.lex_state = 9, .external_lex_state = 2}, [214] = {.lex_state = 9, .external_lex_state = 2}, [215] = {.lex_state = 9, .external_lex_state = 2}, - [216] = {.lex_state = 67, .external_lex_state = 2}, + [216] = {.lex_state = 9, .external_lex_state = 2}, [217] = {.lex_state = 9, .external_lex_state = 2}, [218] = {.lex_state = 9, .external_lex_state = 2}, [219] = {.lex_state = 9, .external_lex_state = 2}, [220] = {.lex_state = 9, .external_lex_state = 2}, [221] = {.lex_state = 9, .external_lex_state = 2}, [222] = {.lex_state = 9, .external_lex_state = 2}, - [223] = {.lex_state = 67, .external_lex_state = 2}, + [223] = {.lex_state = 9, .external_lex_state = 2}, [224] = {.lex_state = 9, .external_lex_state = 2}, [225] = {.lex_state = 9, .external_lex_state = 2}, [226] = {.lex_state = 67, .external_lex_state = 2}, [227] = {.lex_state = 9, .external_lex_state = 2}, [228] = {.lex_state = 9, .external_lex_state = 2}, [229] = {.lex_state = 9, .external_lex_state = 2}, - [230] = {.lex_state = 9, .external_lex_state = 2}, + [230] = {.lex_state = 67, .external_lex_state = 2}, [231] = {.lex_state = 9, .external_lex_state = 2}, [232] = {.lex_state = 9, .external_lex_state = 2}, [233] = {.lex_state = 9, .external_lex_state = 2}, [234] = {.lex_state = 9, .external_lex_state = 2}, [235] = {.lex_state = 9, .external_lex_state = 2}, - [236] = {.lex_state = 9, .external_lex_state = 2}, - [237] = {.lex_state = 9, .external_lex_state = 2}, + [236] = {.lex_state = 67, .external_lex_state = 2}, + [237] = {.lex_state = 67, .external_lex_state = 2}, [238] = {.lex_state = 9, .external_lex_state = 2}, - [239] = {.lex_state = 67, .external_lex_state = 2}, + [239] = {.lex_state = 9, .external_lex_state = 2}, [240] = {.lex_state = 9, .external_lex_state = 2}, [241] = {.lex_state = 9, .external_lex_state = 2}, [242] = {.lex_state = 9, .external_lex_state = 2}, @@ -14600,7 +14658,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [262] = {.lex_state = 9, .external_lex_state = 2}, [263] = {.lex_state = 9, .external_lex_state = 2}, [264] = {.lex_state = 9, .external_lex_state = 2}, - [265] = {.lex_state = 67, .external_lex_state = 2}, + [265] = {.lex_state = 9, .external_lex_state = 2}, [266] = {.lex_state = 9, .external_lex_state = 2}, [267] = {.lex_state = 9, .external_lex_state = 2}, [268] = {.lex_state = 9, .external_lex_state = 2}, @@ -14609,235 +14667,235 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [271] = {.lex_state = 9, .external_lex_state = 2}, [272] = {.lex_state = 9, .external_lex_state = 2}, [273] = {.lex_state = 9, .external_lex_state = 2}, - [274] = {.lex_state = 67, .external_lex_state = 2}, - [275] = {.lex_state = 67, .external_lex_state = 2}, + [274] = {.lex_state = 9, .external_lex_state = 2}, + [275] = {.lex_state = 9, .external_lex_state = 2}, [276] = {.lex_state = 9, .external_lex_state = 2}, - [277] = {.lex_state = 67, .external_lex_state = 2}, + [277] = {.lex_state = 9, .external_lex_state = 2}, [278] = {.lex_state = 9, .external_lex_state = 2}, - [279] = {.lex_state = 67, .external_lex_state = 2}, + [279] = {.lex_state = 9, .external_lex_state = 2}, [280] = {.lex_state = 9, .external_lex_state = 2}, [281] = {.lex_state = 67, .external_lex_state = 2}, - [282] = {.lex_state = 67, .external_lex_state = 2}, + [282] = {.lex_state = 9, .external_lex_state = 2}, [283] = {.lex_state = 9, .external_lex_state = 2}, [284] = {.lex_state = 9, .external_lex_state = 2}, [285] = {.lex_state = 9, .external_lex_state = 2}, [286] = {.lex_state = 9, .external_lex_state = 2}, [287] = {.lex_state = 9, .external_lex_state = 2}, [288] = {.lex_state = 9, .external_lex_state = 2}, - [289] = {.lex_state = 9, .external_lex_state = 2}, - [290] = {.lex_state = 9, .external_lex_state = 2}, - [291] = {.lex_state = 9, .external_lex_state = 2}, - [292] = {.lex_state = 9, .external_lex_state = 2}, - [293] = {.lex_state = 9, .external_lex_state = 2}, - [294] = {.lex_state = 9, .external_lex_state = 2}, - [295] = {.lex_state = 9, .external_lex_state = 2}, - [296] = {.lex_state = 9, .external_lex_state = 2}, - [297] = {.lex_state = 9, .external_lex_state = 2}, - [298] = {.lex_state = 9, .external_lex_state = 2}, - [299] = {.lex_state = 9, .external_lex_state = 2}, - [300] = {.lex_state = 9, .external_lex_state = 2}, - [301] = {.lex_state = 9, .external_lex_state = 2}, - [302] = {.lex_state = 9, .external_lex_state = 2}, - [303] = {.lex_state = 9, .external_lex_state = 2}, - [304] = {.lex_state = 9, .external_lex_state = 2}, + [289] = {.lex_state = 10, .external_lex_state = 2}, + [290] = {.lex_state = 10, .external_lex_state = 2}, + [291] = {.lex_state = 67, .external_lex_state = 2}, + [292] = {.lex_state = 10, .external_lex_state = 2}, + [293] = {.lex_state = 10, .external_lex_state = 2}, + [294] = {.lex_state = 10, .external_lex_state = 2}, + [295] = {.lex_state = 10, .external_lex_state = 2}, + [296] = {.lex_state = 10, .external_lex_state = 2}, + [297] = {.lex_state = 10, .external_lex_state = 2}, + [298] = {.lex_state = 10, .external_lex_state = 2}, + [299] = {.lex_state = 10, .external_lex_state = 2}, + [300] = {.lex_state = 10, .external_lex_state = 2}, + [301] = {.lex_state = 10, .external_lex_state = 2}, + [302] = {.lex_state = 10, .external_lex_state = 2}, + [303] = {.lex_state = 10, .external_lex_state = 2}, + [304] = {.lex_state = 10, .external_lex_state = 2}, [305] = {.lex_state = 9, .external_lex_state = 2}, [306] = {.lex_state = 9, .external_lex_state = 2}, [307] = {.lex_state = 9, .external_lex_state = 2}, - [308] = {.lex_state = 9, .external_lex_state = 2}, - [309] = {.lex_state = 9, .external_lex_state = 2}, - [310] = {.lex_state = 9, .external_lex_state = 2}, - [311] = {.lex_state = 9, .external_lex_state = 2}, - [312] = {.lex_state = 9, .external_lex_state = 2}, - [313] = {.lex_state = 9, .external_lex_state = 2}, - [314] = {.lex_state = 9, .external_lex_state = 2}, - [315] = {.lex_state = 9, .external_lex_state = 2}, + [308] = {.lex_state = 10, .external_lex_state = 2}, + [309] = {.lex_state = 10, .external_lex_state = 2}, + [310] = {.lex_state = 8, .external_lex_state = 2}, + [311] = {.lex_state = 10, .external_lex_state = 2}, + [312] = {.lex_state = 10, .external_lex_state = 2}, + [313] = {.lex_state = 10, .external_lex_state = 2}, + [314] = {.lex_state = 8, .external_lex_state = 2}, + [315] = {.lex_state = 8, .external_lex_state = 2}, [316] = {.lex_state = 9, .external_lex_state = 2}, - [317] = {.lex_state = 9, .external_lex_state = 2}, - [318] = {.lex_state = 67, .external_lex_state = 2}, - [319] = {.lex_state = 10, .external_lex_state = 2}, - [320] = {.lex_state = 10, .external_lex_state = 2}, - [321] = {.lex_state = 10, .external_lex_state = 2}, - [322] = {.lex_state = 10, .external_lex_state = 2}, - [323] = {.lex_state = 10, .external_lex_state = 2}, - [324] = {.lex_state = 10, .external_lex_state = 2}, + [317] = {.lex_state = 8, .external_lex_state = 2}, + [318] = {.lex_state = 8, .external_lex_state = 2}, + [319] = {.lex_state = 8, .external_lex_state = 2}, + [320] = {.lex_state = 8, .external_lex_state = 2}, + [321] = {.lex_state = 8, .external_lex_state = 2}, + [322] = {.lex_state = 8, .external_lex_state = 2}, + [323] = {.lex_state = 8, .external_lex_state = 2}, + [324] = {.lex_state = 8, .external_lex_state = 2}, [325] = {.lex_state = 8, .external_lex_state = 2}, - [326] = {.lex_state = 10, .external_lex_state = 2}, - [327] = {.lex_state = 10, .external_lex_state = 2}, - [328] = {.lex_state = 10, .external_lex_state = 2}, - [329] = {.lex_state = 10, .external_lex_state = 2}, - [330] = {.lex_state = 10, .external_lex_state = 2}, - [331] = {.lex_state = 10, .external_lex_state = 2}, - [332] = {.lex_state = 10, .external_lex_state = 2}, - [333] = {.lex_state = 10, .external_lex_state = 2}, - [334] = {.lex_state = 9, .external_lex_state = 2}, + [326] = {.lex_state = 8, .external_lex_state = 2}, + [327] = {.lex_state = 8, .external_lex_state = 2}, + [328] = {.lex_state = 8, .external_lex_state = 2}, + [329] = {.lex_state = 8, .external_lex_state = 2}, + [330] = {.lex_state = 11, .external_lex_state = 2}, + [331] = {.lex_state = 8, .external_lex_state = 2}, + [332] = {.lex_state = 8, .external_lex_state = 2}, + [333] = {.lex_state = 9, .external_lex_state = 2}, + [334] = {.lex_state = 11, .external_lex_state = 2}, [335] = {.lex_state = 9, .external_lex_state = 2}, - [336] = {.lex_state = 10, .external_lex_state = 2}, + [336] = {.lex_state = 11, .external_lex_state = 2}, [337] = {.lex_state = 9, .external_lex_state = 2}, - [338] = {.lex_state = 10, .external_lex_state = 2}, + [338] = {.lex_state = 1, .external_lex_state = 2}, [339] = {.lex_state = 8, .external_lex_state = 2}, - [340] = {.lex_state = 8, .external_lex_state = 2}, + [340] = {.lex_state = 11, .external_lex_state = 2}, [341] = {.lex_state = 8, .external_lex_state = 2}, [342] = {.lex_state = 8, .external_lex_state = 2}, - [343] = {.lex_state = 11, .external_lex_state = 2}, - [344] = {.lex_state = 8, .external_lex_state = 2}, - [345] = {.lex_state = 8, .external_lex_state = 2}, + [343] = {.lex_state = 8, .external_lex_state = 2}, + [344] = {.lex_state = 11, .external_lex_state = 2}, + [345] = {.lex_state = 11, .external_lex_state = 2}, [346] = {.lex_state = 8, .external_lex_state = 2}, - [347] = {.lex_state = 8, .external_lex_state = 2}, - [348] = {.lex_state = 8, .external_lex_state = 2}, - [349] = {.lex_state = 8, .external_lex_state = 2}, + [347] = {.lex_state = 9, .external_lex_state = 2}, + [348] = {.lex_state = 11, .external_lex_state = 2}, + [349] = {.lex_state = 11, .external_lex_state = 2}, [350] = {.lex_state = 8, .external_lex_state = 2}, - [351] = {.lex_state = 8, .external_lex_state = 2}, - [352] = {.lex_state = 8, .external_lex_state = 2}, - [353] = {.lex_state = 8, .external_lex_state = 2}, - [354] = {.lex_state = 8, .external_lex_state = 2}, - [355] = {.lex_state = 10, .external_lex_state = 2}, - [356] = {.lex_state = 10, .external_lex_state = 2}, - [357] = {.lex_state = 10, .external_lex_state = 2}, - [358] = {.lex_state = 10, .external_lex_state = 2}, - [359] = {.lex_state = 11, .external_lex_state = 2}, + [351] = {.lex_state = 11, .external_lex_state = 2}, + [352] = {.lex_state = 9, .external_lex_state = 2}, + [353] = {.lex_state = 11, .external_lex_state = 2}, + [354] = {.lex_state = 9, .external_lex_state = 2}, + [355] = {.lex_state = 11, .external_lex_state = 2}, + [356] = {.lex_state = 8, .external_lex_state = 2}, + [357] = {.lex_state = 11, .external_lex_state = 2}, + [358] = {.lex_state = 9, .external_lex_state = 2}, + [359] = {.lex_state = 8, .external_lex_state = 2}, [360] = {.lex_state = 11, .external_lex_state = 2}, - [361] = {.lex_state = 11, .external_lex_state = 2}, + [361] = {.lex_state = 8, .external_lex_state = 2}, [362] = {.lex_state = 11, .external_lex_state = 2}, [363] = {.lex_state = 8, .external_lex_state = 2}, [364] = {.lex_state = 11, .external_lex_state = 2}, - [365] = {.lex_state = 11, .external_lex_state = 2}, + [365] = {.lex_state = 8, .external_lex_state = 2}, [366] = {.lex_state = 11, .external_lex_state = 2}, [367] = {.lex_state = 11, .external_lex_state = 2}, - [368] = {.lex_state = 1, .external_lex_state = 2}, + [368] = {.lex_state = 11, .external_lex_state = 2}, [369] = {.lex_state = 11, .external_lex_state = 2}, [370] = {.lex_state = 11, .external_lex_state = 2}, [371] = {.lex_state = 11, .external_lex_state = 2}, - [372] = {.lex_state = 8, .external_lex_state = 2}, - [373] = {.lex_state = 8, .external_lex_state = 2}, + [372] = {.lex_state = 11, .external_lex_state = 2}, + [373] = {.lex_state = 9, .external_lex_state = 2}, [374] = {.lex_state = 11, .external_lex_state = 2}, [375] = {.lex_state = 11, .external_lex_state = 2}, [376] = {.lex_state = 11, .external_lex_state = 2}, - [377] = {.lex_state = 8, .external_lex_state = 2}, - [378] = {.lex_state = 8, .external_lex_state = 2}, + [377] = {.lex_state = 11, .external_lex_state = 2}, + [378] = {.lex_state = 11, .external_lex_state = 2}, [379] = {.lex_state = 11, .external_lex_state = 2}, - [380] = {.lex_state = 11, .external_lex_state = 2}, + [380] = {.lex_state = 9, .external_lex_state = 2}, [381] = {.lex_state = 11, .external_lex_state = 2}, - [382] = {.lex_state = 8, .external_lex_state = 2}, - [383] = {.lex_state = 8, .external_lex_state = 2}, + [382] = {.lex_state = 11, .external_lex_state = 2}, + [383] = {.lex_state = 9, .external_lex_state = 2}, [384] = {.lex_state = 11, .external_lex_state = 2}, [385] = {.lex_state = 11, .external_lex_state = 2}, [386] = {.lex_state = 11, .external_lex_state = 2}, [387] = {.lex_state = 11, .external_lex_state = 2}, - [388] = {.lex_state = 11, .external_lex_state = 2}, - [389] = {.lex_state = 8, .external_lex_state = 2}, + [388] = {.lex_state = 8, .external_lex_state = 2}, + [389] = {.lex_state = 11, .external_lex_state = 2}, [390] = {.lex_state = 11, .external_lex_state = 2}, [391] = {.lex_state = 11, .external_lex_state = 2}, - [392] = {.lex_state = 11, .external_lex_state = 2}, + [392] = {.lex_state = 8, .external_lex_state = 2}, [393] = {.lex_state = 8, .external_lex_state = 2}, [394] = {.lex_state = 8, .external_lex_state = 2}, [395] = {.lex_state = 8, .external_lex_state = 2}, [396] = {.lex_state = 8, .external_lex_state = 2}, [397] = {.lex_state = 8, .external_lex_state = 2}, [398] = {.lex_state = 8, .external_lex_state = 2}, - [399] = {.lex_state = 11, .external_lex_state = 2}, - [400] = {.lex_state = 11, .external_lex_state = 2}, - [401] = {.lex_state = 11, .external_lex_state = 2}, - [402] = {.lex_state = 11, .external_lex_state = 2}, - [403] = {.lex_state = 11, .external_lex_state = 2}, - [404] = {.lex_state = 11, .external_lex_state = 2}, - [405] = {.lex_state = 11, .external_lex_state = 2}, - [406] = {.lex_state = 11, .external_lex_state = 2}, - [407] = {.lex_state = 11, .external_lex_state = 2}, + [399] = {.lex_state = 8, .external_lex_state = 2}, + [400] = {.lex_state = 8, .external_lex_state = 2}, + [401] = {.lex_state = 8, .external_lex_state = 2}, + [402] = {.lex_state = 8, .external_lex_state = 2}, + [403] = {.lex_state = 8, .external_lex_state = 2}, + [404] = {.lex_state = 8, .external_lex_state = 2}, + [405] = {.lex_state = 8, .external_lex_state = 2}, + [406] = {.lex_state = 8, .external_lex_state = 2}, + [407] = {.lex_state = 8, .external_lex_state = 2}, [408] = {.lex_state = 11, .external_lex_state = 2}, - [409] = {.lex_state = 11, .external_lex_state = 2}, - [410] = {.lex_state = 9, .external_lex_state = 2}, - [411] = {.lex_state = 9, .external_lex_state = 2}, - [412] = {.lex_state = 9, .external_lex_state = 2}, - [413] = {.lex_state = 9, .external_lex_state = 2}, - [414] = {.lex_state = 9, .external_lex_state = 2}, - [415] = {.lex_state = 9, .external_lex_state = 2}, - [416] = {.lex_state = 9, .external_lex_state = 2}, - [417] = {.lex_state = 9, .external_lex_state = 2}, - [418] = {.lex_state = 9, .external_lex_state = 2}, - [419] = {.lex_state = 9, .external_lex_state = 2}, - [420] = {.lex_state = 9, .external_lex_state = 2}, - [421] = {.lex_state = 8, .external_lex_state = 2}, - [422] = {.lex_state = 8, .external_lex_state = 2}, - [423] = {.lex_state = 8, .external_lex_state = 2}, - [424] = {.lex_state = 8, .external_lex_state = 2}, - [425] = {.lex_state = 8, .external_lex_state = 2}, - [426] = {.lex_state = 8, .external_lex_state = 2}, - [427] = {.lex_state = 8, .external_lex_state = 2}, - [428] = {.lex_state = 2, .external_lex_state = 2}, - [429] = {.lex_state = 8, .external_lex_state = 2}, - [430] = {.lex_state = 11, .external_lex_state = 2}, - [431] = {.lex_state = 8, .external_lex_state = 2}, - [432] = {.lex_state = 8, .external_lex_state = 2}, - [433] = {.lex_state = 8, .external_lex_state = 2}, - [434] = {.lex_state = 8, .external_lex_state = 2}, - [435] = {.lex_state = 8, .external_lex_state = 2}, - [436] = {.lex_state = 8, .external_lex_state = 2}, - [437] = {.lex_state = 8, .external_lex_state = 2}, - [438] = {.lex_state = 8, .external_lex_state = 2}, - [439] = {.lex_state = 8, .external_lex_state = 2}, - [440] = {.lex_state = 8, .external_lex_state = 2}, - [441] = {.lex_state = 11, .external_lex_state = 2}, - [442] = {.lex_state = 8, .external_lex_state = 2}, - [443] = {.lex_state = 8, .external_lex_state = 2}, - [444] = {.lex_state = 8, .external_lex_state = 2}, - [445] = {.lex_state = 8, .external_lex_state = 2}, - [446] = {.lex_state = 8, .external_lex_state = 2}, - [447] = {.lex_state = 8, .external_lex_state = 2}, - [448] = {.lex_state = 11, .external_lex_state = 2}, - [449] = {.lex_state = 11, .external_lex_state = 2}, - [450] = {.lex_state = 11, .external_lex_state = 2}, - [451] = {.lex_state = 11, .external_lex_state = 2}, - [452] = {.lex_state = 11, .external_lex_state = 2}, - [453] = {.lex_state = 11, .external_lex_state = 2}, - [454] = {.lex_state = 11, .external_lex_state = 2}, - [455] = {.lex_state = 11, .external_lex_state = 2}, - [456] = {.lex_state = 11, .external_lex_state = 2}, - [457] = {.lex_state = 11, .external_lex_state = 2}, - [458] = {.lex_state = 12, .external_lex_state = 2}, + [409] = {.lex_state = 8, .external_lex_state = 2}, + [410] = {.lex_state = 8, .external_lex_state = 2}, + [411] = {.lex_state = 8, .external_lex_state = 2}, + [412] = {.lex_state = 8, .external_lex_state = 2}, + [413] = {.lex_state = 11, .external_lex_state = 2}, + [414] = {.lex_state = 8, .external_lex_state = 2}, + [415] = {.lex_state = 2, .external_lex_state = 2}, + [416] = {.lex_state = 8, .external_lex_state = 2}, + [417] = {.lex_state = 8, .external_lex_state = 2}, + [418] = {.lex_state = 8, .external_lex_state = 2}, + [419] = {.lex_state = 11, .external_lex_state = 2}, + [420] = {.lex_state = 11, .external_lex_state = 2}, + [421] = {.lex_state = 11, .external_lex_state = 2}, + [422] = {.lex_state = 11, .external_lex_state = 2}, + [423] = {.lex_state = 11, .external_lex_state = 2}, + [424] = {.lex_state = 11, .external_lex_state = 2}, + [425] = {.lex_state = 11, .external_lex_state = 2}, + [426] = {.lex_state = 11, .external_lex_state = 2}, + [427] = {.lex_state = 11, .external_lex_state = 2}, + [428] = {.lex_state = 11, .external_lex_state = 2}, + [429] = {.lex_state = 12, .external_lex_state = 2}, + [430] = {.lex_state = 12, .external_lex_state = 2}, + [431] = {.lex_state = 9, .external_lex_state = 2}, + [432] = {.lex_state = 9, .external_lex_state = 2}, + [433] = {.lex_state = 9, .external_lex_state = 2}, + [434] = {.lex_state = 9, .external_lex_state = 2}, + [435] = {.lex_state = 9, .external_lex_state = 2}, + [436] = {.lex_state = 9, .external_lex_state = 2}, + [437] = {.lex_state = 9, .external_lex_state = 2}, + [438] = {.lex_state = 9, .external_lex_state = 2}, + [439] = {.lex_state = 9, .external_lex_state = 2}, + [440] = {.lex_state = 9, .external_lex_state = 2}, + [441] = {.lex_state = 9, .external_lex_state = 2}, + [442] = {.lex_state = 9, .external_lex_state = 2}, + [443] = {.lex_state = 9, .external_lex_state = 2}, + [444] = {.lex_state = 1, .external_lex_state = 2}, + [445] = {.lex_state = 1, .external_lex_state = 2}, + [446] = {.lex_state = 1, .external_lex_state = 2}, + [447] = {.lex_state = 1, .external_lex_state = 2}, + [448] = {.lex_state = 1, .external_lex_state = 2}, + [449] = {.lex_state = 1, .external_lex_state = 2}, + [450] = {.lex_state = 1, .external_lex_state = 2}, + [451] = {.lex_state = 1, .external_lex_state = 2}, + [452] = {.lex_state = 1, .external_lex_state = 2}, + [453] = {.lex_state = 1, .external_lex_state = 2}, + [454] = {.lex_state = 1, .external_lex_state = 2}, + [455] = {.lex_state = 1, .external_lex_state = 2}, + [456] = {.lex_state = 1, .external_lex_state = 2}, + [457] = {.lex_state = 1, .external_lex_state = 2}, + [458] = {.lex_state = 1, .external_lex_state = 2}, [459] = {.lex_state = 1, .external_lex_state = 2}, [460] = {.lex_state = 1, .external_lex_state = 2}, [461] = {.lex_state = 1, .external_lex_state = 2}, [462] = {.lex_state = 1, .external_lex_state = 2}, [463] = {.lex_state = 1, .external_lex_state = 2}, [464] = {.lex_state = 1, .external_lex_state = 2}, - [465] = {.lex_state = 9, .external_lex_state = 2}, + [465] = {.lex_state = 1, .external_lex_state = 2}, [466] = {.lex_state = 1, .external_lex_state = 2}, [467] = {.lex_state = 1, .external_lex_state = 2}, [468] = {.lex_state = 1, .external_lex_state = 2}, - [469] = {.lex_state = 1, .external_lex_state = 2}, - [470] = {.lex_state = 1, .external_lex_state = 2}, - [471] = {.lex_state = 1, .external_lex_state = 2}, - [472] = {.lex_state = 1, .external_lex_state = 2}, - [473] = {.lex_state = 1, .external_lex_state = 2}, - [474] = {.lex_state = 9, .external_lex_state = 2}, - [475] = {.lex_state = 1, .external_lex_state = 2}, - [476] = {.lex_state = 1, .external_lex_state = 2}, - [477] = {.lex_state = 1, .external_lex_state = 2}, - [478] = {.lex_state = 9, .external_lex_state = 2}, - [479] = {.lex_state = 1, .external_lex_state = 2}, - [480] = {.lex_state = 1, .external_lex_state = 2}, - [481] = {.lex_state = 1, .external_lex_state = 2}, - [482] = {.lex_state = 1, .external_lex_state = 2}, - [483] = {.lex_state = 9, .external_lex_state = 2}, - [484] = {.lex_state = 1, .external_lex_state = 2}, - [485] = {.lex_state = 1, .external_lex_state = 2}, - [486] = {.lex_state = 1, .external_lex_state = 2}, - [487] = {.lex_state = 1, .external_lex_state = 2}, - [488] = {.lex_state = 9, .external_lex_state = 2}, - [489] = {.lex_state = 9, .external_lex_state = 2}, - [490] = {.lex_state = 9, .external_lex_state = 2}, - [491] = {.lex_state = 9, .external_lex_state = 2}, - [492] = {.lex_state = 9, .external_lex_state = 2}, - [493] = {.lex_state = 9, .external_lex_state = 2}, - [494] = {.lex_state = 9, .external_lex_state = 2}, - [495] = {.lex_state = 9, .external_lex_state = 2}, - [496] = {.lex_state = 9, .external_lex_state = 2}, - [497] = {.lex_state = 9, .external_lex_state = 2}, - [498] = {.lex_state = 9, .external_lex_state = 2}, - [499] = {.lex_state = 9, .external_lex_state = 2}, - [500] = {.lex_state = 9, .external_lex_state = 2}, - [501] = {.lex_state = 9, .external_lex_state = 2}, - [502] = {.lex_state = 9, .external_lex_state = 2}, + [469] = {.lex_state = 9, .external_lex_state = 2}, + [470] = {.lex_state = 9, .external_lex_state = 2}, + [471] = {.lex_state = 9, .external_lex_state = 2}, + [472] = {.lex_state = 9, .external_lex_state = 2}, + [473] = {.lex_state = 69, .external_lex_state = 2}, + [474] = {.lex_state = 69, .external_lex_state = 2}, + [475] = {.lex_state = 7}, + [476] = {.lex_state = 69, .external_lex_state = 2}, + [477] = {.lex_state = 69, .external_lex_state = 2}, + [478] = {.lex_state = 69, .external_lex_state = 2}, + [479] = {.lex_state = 69, .external_lex_state = 2}, + [480] = {.lex_state = 69, .external_lex_state = 2}, + [481] = {.lex_state = 69, .external_lex_state = 2}, + [482] = {.lex_state = 69, .external_lex_state = 2}, + [483] = {.lex_state = 69, .external_lex_state = 2}, + [484] = {.lex_state = 69, .external_lex_state = 2}, + [485] = {.lex_state = 69, .external_lex_state = 2}, + [486] = {.lex_state = 69, .external_lex_state = 2}, + [487] = {.lex_state = 69, .external_lex_state = 2}, + [488] = {.lex_state = 69, .external_lex_state = 2}, + [489] = {.lex_state = 69, .external_lex_state = 2}, + [490] = {.lex_state = 69, .external_lex_state = 2}, + [491] = {.lex_state = 69, .external_lex_state = 2}, + [492] = {.lex_state = 69, .external_lex_state = 2}, + [493] = {.lex_state = 69, .external_lex_state = 2}, + [494] = {.lex_state = 69, .external_lex_state = 2}, + [495] = {.lex_state = 69, .external_lex_state = 2}, + [496] = {.lex_state = 69, .external_lex_state = 2}, + [497] = {.lex_state = 69, .external_lex_state = 2}, + [498] = {.lex_state = 69, .external_lex_state = 2}, + [499] = {.lex_state = 69, .external_lex_state = 2}, + [500] = {.lex_state = 69, .external_lex_state = 2}, + [501] = {.lex_state = 69, .external_lex_state = 2}, + [502] = {.lex_state = 69, .external_lex_state = 2}, [503] = {.lex_state = 69, .external_lex_state = 2}, [504] = {.lex_state = 69, .external_lex_state = 2}, [505] = {.lex_state = 69, .external_lex_state = 2}, @@ -14847,17 +14905,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [509] = {.lex_state = 69, .external_lex_state = 2}, [510] = {.lex_state = 69, .external_lex_state = 2}, [511] = {.lex_state = 69, .external_lex_state = 2}, - [512] = {.lex_state = 7}, + [512] = {.lex_state = 69, .external_lex_state = 2}, [513] = {.lex_state = 69, .external_lex_state = 2}, [514] = {.lex_state = 69, .external_lex_state = 2}, [515] = {.lex_state = 69, .external_lex_state = 2}, [516] = {.lex_state = 69, .external_lex_state = 2}, [517] = {.lex_state = 69, .external_lex_state = 2}, [518] = {.lex_state = 69, .external_lex_state = 2}, - [519] = {.lex_state = 9, .external_lex_state = 2}, + [519] = {.lex_state = 69, .external_lex_state = 2}, [520] = {.lex_state = 69, .external_lex_state = 2}, [521] = {.lex_state = 69, .external_lex_state = 2}, - [522] = {.lex_state = 69, .external_lex_state = 2}, + [522] = {.lex_state = 7}, [523] = {.lex_state = 69, .external_lex_state = 2}, [524] = {.lex_state = 69, .external_lex_state = 2}, [525] = {.lex_state = 69, .external_lex_state = 2}, @@ -14909,7 +14967,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [571] = {.lex_state = 69, .external_lex_state = 2}, [572] = {.lex_state = 69, .external_lex_state = 2}, [573] = {.lex_state = 69, .external_lex_state = 2}, - [574] = {.lex_state = 69, .external_lex_state = 2}, + [574] = {.lex_state = 7}, [575] = {.lex_state = 69, .external_lex_state = 2}, [576] = {.lex_state = 69, .external_lex_state = 2}, [577] = {.lex_state = 69, .external_lex_state = 2}, @@ -14926,10 +14984,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [588] = {.lex_state = 69, .external_lex_state = 2}, [589] = {.lex_state = 69, .external_lex_state = 2}, [590] = {.lex_state = 69, .external_lex_state = 2}, - [591] = {.lex_state = 7}, + [591] = {.lex_state = 69, .external_lex_state = 2}, [592] = {.lex_state = 69, .external_lex_state = 2}, [593] = {.lex_state = 69, .external_lex_state = 2}, - [594] = {.lex_state = 7}, + [594] = {.lex_state = 69, .external_lex_state = 2}, [595] = {.lex_state = 69, .external_lex_state = 2}, [596] = {.lex_state = 69, .external_lex_state = 2}, [597] = {.lex_state = 69, .external_lex_state = 2}, @@ -14943,7 +15001,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [605] = {.lex_state = 69, .external_lex_state = 2}, [606] = {.lex_state = 69, .external_lex_state = 2}, [607] = {.lex_state = 69, .external_lex_state = 2}, - [608] = {.lex_state = 7}, + [608] = {.lex_state = 69, .external_lex_state = 2}, [609] = {.lex_state = 69, .external_lex_state = 2}, [610] = {.lex_state = 69, .external_lex_state = 2}, [611] = {.lex_state = 69, .external_lex_state = 2}, @@ -14957,7 +15015,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [619] = {.lex_state = 69, .external_lex_state = 2}, [620] = {.lex_state = 69, .external_lex_state = 2}, [621] = {.lex_state = 69, .external_lex_state = 2}, - [622] = {.lex_state = 69, .external_lex_state = 2}, + [622] = {.lex_state = 9, .external_lex_state = 2}, [623] = {.lex_state = 69, .external_lex_state = 2}, [624] = {.lex_state = 69, .external_lex_state = 2}, [625] = {.lex_state = 69, .external_lex_state = 2}, @@ -14973,10 +15031,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [635] = {.lex_state = 69, .external_lex_state = 2}, [636] = {.lex_state = 69, .external_lex_state = 2}, [637] = {.lex_state = 69, .external_lex_state = 2}, - [638] = {.lex_state = 69, .external_lex_state = 2}, + [638] = {.lex_state = 9, .external_lex_state = 2}, [639] = {.lex_state = 69, .external_lex_state = 2}, [640] = {.lex_state = 69, .external_lex_state = 2}, - [641] = {.lex_state = 69, .external_lex_state = 2}, + [641] = {.lex_state = 7}, [642] = {.lex_state = 69, .external_lex_state = 2}, [643] = {.lex_state = 69, .external_lex_state = 2}, [644] = {.lex_state = 69, .external_lex_state = 2}, @@ -15029,7 +15087,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [691] = {.lex_state = 69, .external_lex_state = 2}, [692] = {.lex_state = 69, .external_lex_state = 2}, [693] = {.lex_state = 69, .external_lex_state = 2}, - [694] = {.lex_state = 69, .external_lex_state = 2}, + [694] = {.lex_state = 9, .external_lex_state = 2}, [695] = {.lex_state = 69, .external_lex_state = 2}, [696] = {.lex_state = 69, .external_lex_state = 2}, [697] = {.lex_state = 69, .external_lex_state = 2}, @@ -15037,7 +15095,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [699] = {.lex_state = 69, .external_lex_state = 2}, [700] = {.lex_state = 69, .external_lex_state = 2}, [701] = {.lex_state = 69, .external_lex_state = 2}, - [702] = {.lex_state = 69, .external_lex_state = 2}, + [702] = {.lex_state = 7}, [703] = {.lex_state = 69, .external_lex_state = 2}, [704] = {.lex_state = 69, .external_lex_state = 2}, [705] = {.lex_state = 69, .external_lex_state = 2}, @@ -15048,8 +15106,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [710] = {.lex_state = 69, .external_lex_state = 2}, [711] = {.lex_state = 69, .external_lex_state = 2}, [712] = {.lex_state = 69, .external_lex_state = 2}, - [713] = {.lex_state = 7}, - [714] = {.lex_state = 69, .external_lex_state = 2}, + [713] = {.lex_state = 69, .external_lex_state = 2}, + [714] = {.lex_state = 9, .external_lex_state = 2}, [715] = {.lex_state = 69, .external_lex_state = 2}, [716] = {.lex_state = 69, .external_lex_state = 2}, [717] = {.lex_state = 69, .external_lex_state = 2}, @@ -15082,34 +15140,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [744] = {.lex_state = 69, .external_lex_state = 2}, [745] = {.lex_state = 69, .external_lex_state = 2}, [746] = {.lex_state = 69, .external_lex_state = 2}, - [747] = {.lex_state = 69, .external_lex_state = 2}, - [748] = {.lex_state = 69, .external_lex_state = 2}, - [749] = {.lex_state = 69, .external_lex_state = 2}, - [750] = {.lex_state = 69, .external_lex_state = 2}, - [751] = {.lex_state = 69, .external_lex_state = 2}, - [752] = {.lex_state = 69, .external_lex_state = 2}, - [753] = {.lex_state = 69, .external_lex_state = 2}, - [754] = {.lex_state = 69, .external_lex_state = 2}, - [755] = {.lex_state = 69, .external_lex_state = 2}, - [756] = {.lex_state = 69, .external_lex_state = 2}, - [757] = {.lex_state = 69, .external_lex_state = 2}, - [758] = {.lex_state = 69, .external_lex_state = 2}, - [759] = {.lex_state = 69, .external_lex_state = 2}, - [760] = {.lex_state = 69, .external_lex_state = 2}, - [761] = {.lex_state = 69, .external_lex_state = 2}, - [762] = {.lex_state = 69, .external_lex_state = 2}, - [763] = {.lex_state = 69, .external_lex_state = 2}, - [764] = {.lex_state = 69, .external_lex_state = 2}, - [765] = {.lex_state = 69, .external_lex_state = 2}, - [766] = {.lex_state = 69, .external_lex_state = 2}, - [767] = {.lex_state = 69, .external_lex_state = 2}, - [768] = {.lex_state = 69, .external_lex_state = 2}, + [747] = {.lex_state = 9, .external_lex_state = 2}, + [748] = {.lex_state = 9, .external_lex_state = 2}, + [749] = {.lex_state = 9, .external_lex_state = 2}, + [750] = {.lex_state = 9, .external_lex_state = 2}, + [751] = {.lex_state = 13}, + [752] = {.lex_state = 9, .external_lex_state = 2}, + [753] = {.lex_state = 9, .external_lex_state = 2}, + [754] = {.lex_state = 9, .external_lex_state = 2}, + [755] = {.lex_state = 13}, + [756] = {.lex_state = 9, .external_lex_state = 2}, + [757] = {.lex_state = 9, .external_lex_state = 2}, + [758] = {.lex_state = 13}, + [759] = {.lex_state = 13}, + [760] = {.lex_state = 13}, + [761] = {.lex_state = 13}, + [762] = {.lex_state = 13}, + [763] = {.lex_state = 13}, + [764] = {.lex_state = 9, .external_lex_state = 2}, + [765] = {.lex_state = 13}, + [766] = {.lex_state = 13}, + [767] = {.lex_state = 13}, + [768] = {.lex_state = 9, .external_lex_state = 2}, [769] = {.lex_state = 9, .external_lex_state = 2}, - [770] = {.lex_state = 69, .external_lex_state = 2}, - [771] = {.lex_state = 69, .external_lex_state = 2}, - [772] = {.lex_state = 69, .external_lex_state = 2}, - [773] = {.lex_state = 69, .external_lex_state = 2}, - [774] = {.lex_state = 69, .external_lex_state = 2}, + [770] = {.lex_state = 9, .external_lex_state = 2}, + [771] = {.lex_state = 9, .external_lex_state = 2}, + [772] = {.lex_state = 9, .external_lex_state = 2}, + [773] = {.lex_state = 9, .external_lex_state = 2}, + [774] = {.lex_state = 9, .external_lex_state = 2}, [775] = {.lex_state = 9, .external_lex_state = 2}, [776] = {.lex_state = 9, .external_lex_state = 2}, [777] = {.lex_state = 9, .external_lex_state = 2}, @@ -15117,40 +15175,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [779] = {.lex_state = 9, .external_lex_state = 2}, [780] = {.lex_state = 9, .external_lex_state = 2}, [781] = {.lex_state = 9, .external_lex_state = 2}, - [782] = {.lex_state = 13}, - [783] = {.lex_state = 13}, - [784] = {.lex_state = 13}, - [785] = {.lex_state = 13}, - [786] = {.lex_state = 13}, - [787] = {.lex_state = 13}, - [788] = {.lex_state = 13}, - [789] = {.lex_state = 9, .external_lex_state = 2}, + [782] = {.lex_state = 9, .external_lex_state = 2}, + [783] = {.lex_state = 9, .external_lex_state = 2}, + [784] = {.lex_state = 9, .external_lex_state = 2}, + [785] = {.lex_state = 9, .external_lex_state = 2}, + [786] = {.lex_state = 9, .external_lex_state = 2}, + [787] = {.lex_state = 9, .external_lex_state = 2}, + [788] = {.lex_state = 9, .external_lex_state = 2}, + [789] = {.lex_state = 10, .external_lex_state = 2}, [790] = {.lex_state = 9, .external_lex_state = 2}, - [791] = {.lex_state = 13}, - [792] = {.lex_state = 13}, - [793] = {.lex_state = 13}, + [791] = {.lex_state = 9, .external_lex_state = 2}, + [792] = {.lex_state = 9, .external_lex_state = 2}, + [793] = {.lex_state = 9, .external_lex_state = 2}, [794] = {.lex_state = 9, .external_lex_state = 2}, [795] = {.lex_state = 9, .external_lex_state = 2}, [796] = {.lex_state = 9, .external_lex_state = 2}, [797] = {.lex_state = 9, .external_lex_state = 2}, [798] = {.lex_state = 9, .external_lex_state = 2}, [799] = {.lex_state = 9, .external_lex_state = 2}, - [800] = {.lex_state = 13}, + [800] = {.lex_state = 9, .external_lex_state = 2}, [801] = {.lex_state = 9, .external_lex_state = 2}, - [802] = {.lex_state = 9, .external_lex_state = 2}, + [802] = {.lex_state = 13}, [803] = {.lex_state = 9, .external_lex_state = 2}, - [804] = {.lex_state = 9, .external_lex_state = 2}, + [804] = {.lex_state = 13}, [805] = {.lex_state = 9, .external_lex_state = 2}, [806] = {.lex_state = 9, .external_lex_state = 2}, [807] = {.lex_state = 9, .external_lex_state = 2}, [808] = {.lex_state = 9, .external_lex_state = 2}, [809] = {.lex_state = 9, .external_lex_state = 2}, - [810] = {.lex_state = 9, .external_lex_state = 2}, - [811] = {.lex_state = 13}, + [810] = {.lex_state = 13}, + [811] = {.lex_state = 9, .external_lex_state = 2}, [812] = {.lex_state = 9, .external_lex_state = 2}, [813] = {.lex_state = 13}, - [814] = {.lex_state = 13}, - [815] = {.lex_state = 13}, + [814] = {.lex_state = 9, .external_lex_state = 2}, + [815] = {.lex_state = 9, .external_lex_state = 2}, [816] = {.lex_state = 9, .external_lex_state = 2}, [817] = {.lex_state = 9, .external_lex_state = 2}, [818] = {.lex_state = 9, .external_lex_state = 2}, @@ -15158,32 +15216,32 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [820] = {.lex_state = 9, .external_lex_state = 2}, [821] = {.lex_state = 9, .external_lex_state = 2}, [822] = {.lex_state = 9, .external_lex_state = 2}, - [823] = {.lex_state = 9, .external_lex_state = 2}, + [823] = {.lex_state = 13}, [824] = {.lex_state = 9, .external_lex_state = 2}, [825] = {.lex_state = 9, .external_lex_state = 2}, [826] = {.lex_state = 9, .external_lex_state = 2}, [827] = {.lex_state = 9, .external_lex_state = 2}, - [828] = {.lex_state = 9, .external_lex_state = 2}, - [829] = {.lex_state = 9, .external_lex_state = 2}, - [830] = {.lex_state = 9, .external_lex_state = 2}, - [831] = {.lex_state = 9, .external_lex_state = 2}, - [832] = {.lex_state = 9, .external_lex_state = 2}, - [833] = {.lex_state = 9, .external_lex_state = 2}, - [834] = {.lex_state = 9, .external_lex_state = 2}, - [835] = {.lex_state = 9, .external_lex_state = 2}, - [836] = {.lex_state = 9, .external_lex_state = 2}, - [837] = {.lex_state = 9, .external_lex_state = 2}, - [838] = {.lex_state = 9, .external_lex_state = 2}, - [839] = {.lex_state = 9, .external_lex_state = 2}, - [840] = {.lex_state = 9, .external_lex_state = 2}, - [841] = {.lex_state = 9, .external_lex_state = 2}, - [842] = {.lex_state = 9, .external_lex_state = 2}, - [843] = {.lex_state = 9, .external_lex_state = 2}, - [844] = {.lex_state = 9, .external_lex_state = 2}, + [828] = {.lex_state = 13}, + [829] = {.lex_state = 13}, + [830] = {.lex_state = 13}, + [831] = {.lex_state = 13}, + [832] = {.lex_state = 13}, + [833] = {.lex_state = 13}, + [834] = {.lex_state = 13}, + [835] = {.lex_state = 13}, + [836] = {.lex_state = 13}, + [837] = {.lex_state = 13}, + [838] = {.lex_state = 13}, + [839] = {.lex_state = 13}, + [840] = {.lex_state = 13}, + [841] = {.lex_state = 13}, + [842] = {.lex_state = 13}, + [843] = {.lex_state = 13}, + [844] = {.lex_state = 13}, [845] = {.lex_state = 13}, [846] = {.lex_state = 13}, [847] = {.lex_state = 13}, - [848] = {.lex_state = 9, .external_lex_state = 2}, + [848] = {.lex_state = 13}, [849] = {.lex_state = 13}, [850] = {.lex_state = 13}, [851] = {.lex_state = 13}, @@ -15317,7 +15375,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [979] = {.lex_state = 13}, [980] = {.lex_state = 13}, [981] = {.lex_state = 13}, - [982] = {.lex_state = 13}, + [982] = {.lex_state = 9, .external_lex_state = 2}, [983] = {.lex_state = 13}, [984] = {.lex_state = 13}, [985] = {.lex_state = 13}, @@ -15331,171 +15389,171 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [993] = {.lex_state = 13}, [994] = {.lex_state = 13}, [995] = {.lex_state = 13}, - [996] = {.lex_state = 13}, - [997] = {.lex_state = 13}, - [998] = {.lex_state = 13}, - [999] = {.lex_state = 13}, - [1000] = {.lex_state = 13}, - [1001] = {.lex_state = 13}, + [996] = {.lex_state = 9, .external_lex_state = 2}, + [997] = {.lex_state = 9, .external_lex_state = 2}, + [998] = {.lex_state = 12, .external_lex_state = 2}, + [999] = {.lex_state = 12, .external_lex_state = 2}, + [1000] = {.lex_state = 9, .external_lex_state = 2}, + [1001] = {.lex_state = 10, .external_lex_state = 2}, [1002] = {.lex_state = 13}, - [1003] = {.lex_state = 13}, - [1004] = {.lex_state = 13}, - [1005] = {.lex_state = 13}, - [1006] = {.lex_state = 12, .external_lex_state = 2}, - [1007] = {.lex_state = 12, .external_lex_state = 2}, - [1008] = {.lex_state = 12, .external_lex_state = 2}, - [1009] = {.lex_state = 9, .external_lex_state = 2}, - [1010] = {.lex_state = 10, .external_lex_state = 2}, - [1011] = {.lex_state = 13}, + [1003] = {.lex_state = 9, .external_lex_state = 2}, + [1004] = {.lex_state = 9, .external_lex_state = 2}, + [1005] = {.lex_state = 3}, + [1006] = {.lex_state = 3}, + [1007] = {.lex_state = 3}, + [1008] = {.lex_state = 3}, + [1009] = {.lex_state = 3}, + [1010] = {.lex_state = 3}, + [1011] = {.lex_state = 3}, [1012] = {.lex_state = 3}, [1013] = {.lex_state = 3}, - [1014] = {.lex_state = 3}, - [1015] = {.lex_state = 3}, + [1014] = {.lex_state = 7}, + [1015] = {.lex_state = 7}, [1016] = {.lex_state = 7}, [1017] = {.lex_state = 3}, [1018] = {.lex_state = 7}, [1019] = {.lex_state = 7}, - [1020] = {.lex_state = 3}, - [1021] = {.lex_state = 3}, + [1020] = {.lex_state = 7}, + [1021] = {.lex_state = 7}, [1022] = {.lex_state = 3}, - [1023] = {.lex_state = 3}, + [1023] = {.lex_state = 7}, [1024] = {.lex_state = 7}, - [1025] = {.lex_state = 7}, - [1026] = {.lex_state = 3}, - [1027] = {.lex_state = 7}, - [1028] = {.lex_state = 7}, - [1029] = {.lex_state = 7}, - [1030] = {.lex_state = 7}, - [1031] = {.lex_state = 3}, - [1032] = {.lex_state = 3}, - [1033] = {.lex_state = 9, .external_lex_state = 2}, - [1034] = {.lex_state = 21}, - [1035] = {.lex_state = 21}, - [1036] = {.lex_state = 21}, + [1025] = {.lex_state = 3}, + [1026] = {.lex_state = 9, .external_lex_state = 2}, + [1027] = {.lex_state = 21}, + [1028] = {.lex_state = 21}, + [1029] = {.lex_state = 21}, + [1030] = {.lex_state = 4}, + [1031] = {.lex_state = 21}, + [1032] = {.lex_state = 21}, + [1033] = {.lex_state = 4}, + [1034] = {.lex_state = 4}, + [1035] = {.lex_state = 4}, + [1036] = {.lex_state = 4}, [1037] = {.lex_state = 4}, - [1038] = {.lex_state = 4}, - [1039] = {.lex_state = 21}, - [1040] = {.lex_state = 4}, - [1041] = {.lex_state = 9, .external_lex_state = 2}, + [1038] = {.lex_state = 17}, + [1039] = {.lex_state = 17}, + [1040] = {.lex_state = 13}, + [1041] = {.lex_state = 4}, [1042] = {.lex_state = 4}, [1043] = {.lex_state = 4}, - [1044] = {.lex_state = 21}, + [1044] = {.lex_state = 4}, [1045] = {.lex_state = 4}, - [1046] = {.lex_state = 4}, - [1047] = {.lex_state = 13}, - [1048] = {.lex_state = 17}, - [1049] = {.lex_state = 4}, - [1050] = {.lex_state = 18}, - [1051] = {.lex_state = 17}, - [1052] = {.lex_state = 4}, - [1053] = {.lex_state = 17}, + [1046] = {.lex_state = 13}, + [1047] = {.lex_state = 17}, + [1048] = {.lex_state = 4}, + [1049] = {.lex_state = 18}, + [1050] = {.lex_state = 17}, + [1051] = {.lex_state = 4}, + [1052] = {.lex_state = 13}, + [1053] = {.lex_state = 13}, [1054] = {.lex_state = 4}, [1055] = {.lex_state = 4}, [1056] = {.lex_state = 17}, - [1057] = {.lex_state = 17}, - [1058] = {.lex_state = 18}, - [1059] = {.lex_state = 17}, - [1060] = {.lex_state = 17}, - [1061] = {.lex_state = 4}, - [1062] = {.lex_state = 17}, - [1063] = {.lex_state = 4}, - [1064] = {.lex_state = 17}, - [1065] = {.lex_state = 9, .external_lex_state = 2}, - [1066] = {.lex_state = 17}, - [1067] = {.lex_state = 13}, - [1068] = {.lex_state = 4}, - [1069] = {.lex_state = 3}, + [1057] = {.lex_state = 13}, + [1058] = {.lex_state = 17}, + [1059] = {.lex_state = 4}, + [1060] = {.lex_state = 13}, + [1061] = {.lex_state = 13}, + [1062] = {.lex_state = 4}, + [1063] = {.lex_state = 3}, + [1064] = {.lex_state = 4}, + [1065] = {.lex_state = 17}, + [1066] = {.lex_state = 4}, + [1067] = {.lex_state = 4}, + [1068] = {.lex_state = 17}, + [1069] = {.lex_state = 17}, [1070] = {.lex_state = 17}, - [1071] = {.lex_state = 17}, - [1072] = {.lex_state = 9, .external_lex_state = 2}, + [1071] = {.lex_state = 4}, + [1072] = {.lex_state = 4}, [1073] = {.lex_state = 4}, [1074] = {.lex_state = 4}, [1075] = {.lex_state = 4}, - [1076] = {.lex_state = 4}, - [1077] = {.lex_state = 9, .external_lex_state = 2}, + [1076] = {.lex_state = 17}, + [1077] = {.lex_state = 13}, [1078] = {.lex_state = 4}, [1079] = {.lex_state = 4}, - [1080] = {.lex_state = 4}, - [1081] = {.lex_state = 4}, + [1080] = {.lex_state = 17}, + [1081] = {.lex_state = 18}, [1082] = {.lex_state = 4}, - [1083] = {.lex_state = 4}, + [1083] = {.lex_state = 13}, [1084] = {.lex_state = 4}, - [1085] = {.lex_state = 4}, + [1085] = {.lex_state = 7}, [1086] = {.lex_state = 4}, [1087] = {.lex_state = 4}, - [1088] = {.lex_state = 7}, + [1088] = {.lex_state = 4}, [1089] = {.lex_state = 7}, - [1090] = {.lex_state = 4}, + [1090] = {.lex_state = 7}, [1091] = {.lex_state = 4}, - [1092] = {.lex_state = 7}, + [1092] = {.lex_state = 4}, [1093] = {.lex_state = 7}, - [1094] = {.lex_state = 7}, + [1094] = {.lex_state = 4}, [1095] = {.lex_state = 7}, [1096] = {.lex_state = 7}, [1097] = {.lex_state = 7}, [1098] = {.lex_state = 7}, [1099] = {.lex_state = 7}, [1100] = {.lex_state = 7}, - [1101] = {.lex_state = 7}, + [1101] = {.lex_state = 4}, [1102] = {.lex_state = 7}, [1103] = {.lex_state = 7}, - [1104] = {.lex_state = 7}, + [1104] = {.lex_state = 4}, [1105] = {.lex_state = 7}, [1106] = {.lex_state = 4}, [1107] = {.lex_state = 7}, - [1108] = {.lex_state = 7}, - [1109] = {.lex_state = 7}, + [1108] = {.lex_state = 4}, + [1109] = {.lex_state = 4}, [1110] = {.lex_state = 7}, [1111] = {.lex_state = 7}, - [1112] = {.lex_state = 7}, + [1112] = {.lex_state = 4}, [1113] = {.lex_state = 7}, - [1114] = {.lex_state = 7}, - [1115] = {.lex_state = 4}, + [1114] = {.lex_state = 4}, + [1115] = {.lex_state = 7}, [1116] = {.lex_state = 4}, [1117] = {.lex_state = 7}, [1118] = {.lex_state = 7}, [1119] = {.lex_state = 7}, [1120] = {.lex_state = 7}, - [1121] = {.lex_state = 7}, + [1121] = {.lex_state = 4}, [1122] = {.lex_state = 7}, - [1123] = {.lex_state = 4}, + [1123] = {.lex_state = 7}, [1124] = {.lex_state = 4}, [1125] = {.lex_state = 7}, - [1126] = {.lex_state = 7}, + [1126] = {.lex_state = 4}, [1127] = {.lex_state = 7}, [1128] = {.lex_state = 4}, [1129] = {.lex_state = 7}, - [1130] = {.lex_state = 7}, + [1130] = {.lex_state = 4}, [1131] = {.lex_state = 7}, [1132] = {.lex_state = 7}, [1133] = {.lex_state = 7}, [1134] = {.lex_state = 7}, [1135] = {.lex_state = 7}, [1136] = {.lex_state = 7}, - [1137] = {.lex_state = 7}, - [1138] = {.lex_state = 4}, - [1139] = {.lex_state = 4}, + [1137] = {.lex_state = 4}, + [1138] = {.lex_state = 7}, + [1139] = {.lex_state = 7}, [1140] = {.lex_state = 7}, [1141] = {.lex_state = 7}, [1142] = {.lex_state = 7}, [1143] = {.lex_state = 7}, [1144] = {.lex_state = 7}, - [1145] = {.lex_state = 4}, + [1145] = {.lex_state = 7}, [1146] = {.lex_state = 7}, - [1147] = {.lex_state = 4}, - [1148] = {.lex_state = 4}, + [1147] = {.lex_state = 7}, + [1148] = {.lex_state = 7}, [1149] = {.lex_state = 4}, [1150] = {.lex_state = 7}, [1151] = {.lex_state = 4}, - [1152] = {.lex_state = 7}, - [1153] = {.lex_state = 4}, + [1152] = {.lex_state = 4}, + [1153] = {.lex_state = 7}, [1154] = {.lex_state = 4}, [1155] = {.lex_state = 4}, - [1156] = {.lex_state = 4}, + [1156] = {.lex_state = 7}, [1157] = {.lex_state = 4}, - [1158] = {.lex_state = 4}, - [1159] = {.lex_state = 4}, - [1160] = {.lex_state = 4}, + [1158] = {.lex_state = 7}, + [1159] = {.lex_state = 7}, + [1160] = {.lex_state = 7}, [1161] = {.lex_state = 7}, [1162] = {.lex_state = 7}, [1163] = {.lex_state = 7}, @@ -15509,189 +15567,189 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1171] = {.lex_state = 7}, [1172] = {.lex_state = 7}, [1173] = {.lex_state = 7}, - [1174] = {.lex_state = 4}, + [1174] = {.lex_state = 7}, [1175] = {.lex_state = 7}, [1176] = {.lex_state = 7}, [1177] = {.lex_state = 7}, [1178] = {.lex_state = 4}, [1179] = {.lex_state = 7}, [1180] = {.lex_state = 7}, - [1181] = {.lex_state = 4}, + [1181] = {.lex_state = 7}, [1182] = {.lex_state = 4}, [1183] = {.lex_state = 7}, [1184] = {.lex_state = 7}, [1185] = {.lex_state = 7}, [1186] = {.lex_state = 7}, - [1187] = {.lex_state = 7}, - [1188] = {.lex_state = 7}, - [1189] = {.lex_state = 7}, - [1190] = {.lex_state = 7}, - [1191] = {.lex_state = 7}, - [1192] = {.lex_state = 7}, - [1193] = {.lex_state = 7}, - [1194] = {.lex_state = 7}, - [1195] = {.lex_state = 7}, + [1187] = {.lex_state = 4}, + [1188] = {.lex_state = 4}, + [1189] = {.lex_state = 4}, + [1190] = {.lex_state = 4}, + [1191] = {.lex_state = 4}, + [1192] = {.lex_state = 4}, + [1193] = {.lex_state = 4}, + [1194] = {.lex_state = 4}, + [1195] = {.lex_state = 4}, [1196] = {.lex_state = 7}, - [1197] = {.lex_state = 7}, + [1197] = {.lex_state = 4}, [1198] = {.lex_state = 7}, - [1199] = {.lex_state = 7}, + [1199] = {.lex_state = 4}, [1200] = {.lex_state = 7}, [1201] = {.lex_state = 7}, [1202] = {.lex_state = 7}, - [1203] = {.lex_state = 7}, + [1203] = {.lex_state = 4}, [1204] = {.lex_state = 7}, [1205] = {.lex_state = 7}, - [1206] = {.lex_state = 7}, - [1207] = {.lex_state = 7}, + [1206] = {.lex_state = 4}, + [1207] = {.lex_state = 4}, [1208] = {.lex_state = 7}, [1209] = {.lex_state = 7}, - [1210] = {.lex_state = 7}, - [1211] = {.lex_state = 4}, + [1210] = {.lex_state = 4}, + [1211] = {.lex_state = 7}, [1212] = {.lex_state = 4}, - [1213] = {.lex_state = 7}, - [1214] = {.lex_state = 7}, + [1213] = {.lex_state = 4}, + [1214] = {.lex_state = 4}, [1215] = {.lex_state = 7}, - [1216] = {.lex_state = 4}, - [1217] = {.lex_state = 7}, + [1216] = {.lex_state = 7}, + [1217] = {.lex_state = 4}, [1218] = {.lex_state = 7}, - [1219] = {.lex_state = 4}, - [1220] = {.lex_state = 4}, - [1221] = {.lex_state = 7}, - [1222] = {.lex_state = 7}, + [1219] = {.lex_state = 7}, + [1220] = {.lex_state = 7}, + [1221] = {.lex_state = 4}, + [1222] = {.lex_state = 4}, [1223] = {.lex_state = 7}, [1224] = {.lex_state = 7}, [1225] = {.lex_state = 7}, - [1226] = {.lex_state = 7}, + [1226] = {.lex_state = 4}, [1227] = {.lex_state = 7}, [1228] = {.lex_state = 7}, - [1229] = {.lex_state = 7}, + [1229] = {.lex_state = 9, .external_lex_state = 2}, [1230] = {.lex_state = 7}, - [1231] = {.lex_state = 4}, + [1231] = {.lex_state = 7}, [1232] = {.lex_state = 7}, - [1233] = {.lex_state = 7}, + [1233] = {.lex_state = 4}, [1234] = {.lex_state = 7}, - [1235] = {.lex_state = 7}, + [1235] = {.lex_state = 4}, [1236] = {.lex_state = 7}, - [1237] = {.lex_state = 4}, + [1237] = {.lex_state = 7}, [1238] = {.lex_state = 7}, [1239] = {.lex_state = 7}, - [1240] = {.lex_state = 4}, + [1240] = {.lex_state = 7}, [1241] = {.lex_state = 7}, [1242] = {.lex_state = 7}, - [1243] = {.lex_state = 7}, + [1243] = {.lex_state = 4}, [1244] = {.lex_state = 7}, [1245] = {.lex_state = 7}, - [1246] = {.lex_state = 7}, + [1246] = {.lex_state = 4}, [1247] = {.lex_state = 7}, - [1248] = {.lex_state = 4}, + [1248] = {.lex_state = 7}, [1249] = {.lex_state = 7}, - [1250] = {.lex_state = 4}, - [1251] = {.lex_state = 4}, - [1252] = {.lex_state = 7}, + [1250] = {.lex_state = 7}, + [1251] = {.lex_state = 7}, + [1252] = {.lex_state = 13}, [1253] = {.lex_state = 7}, [1254] = {.lex_state = 7}, [1255] = {.lex_state = 4}, [1256] = {.lex_state = 7}, [1257] = {.lex_state = 7}, - [1258] = {.lex_state = 7}, + [1258] = {.lex_state = 4}, [1259] = {.lex_state = 7}, - [1260] = {.lex_state = 4}, + [1260] = {.lex_state = 7}, [1261] = {.lex_state = 7}, - [1262] = {.lex_state = 4}, - [1263] = {.lex_state = 7}, - [1264] = {.lex_state = 4}, - [1265] = {.lex_state = 7}, + [1262] = {.lex_state = 7}, + [1263] = {.lex_state = 4}, + [1264] = {.lex_state = 7}, + [1265] = {.lex_state = 4}, [1266] = {.lex_state = 4}, [1267] = {.lex_state = 7}, - [1268] = {.lex_state = 4}, - [1269] = {.lex_state = 4}, - [1270] = {.lex_state = 4}, + [1268] = {.lex_state = 7}, + [1269] = {.lex_state = 7}, + [1270] = {.lex_state = 7}, [1271] = {.lex_state = 4}, [1272] = {.lex_state = 4}, - [1273] = {.lex_state = 4}, + [1273] = {.lex_state = 7}, [1274] = {.lex_state = 4}, - [1275] = {.lex_state = 7}, - [1276] = {.lex_state = 4}, + [1275] = {.lex_state = 4}, + [1276] = {.lex_state = 7}, [1277] = {.lex_state = 7}, - [1278] = {.lex_state = 7}, - [1279] = {.lex_state = 7}, + [1278] = {.lex_state = 4}, + [1279] = {.lex_state = 4}, [1280] = {.lex_state = 7}, [1281] = {.lex_state = 7}, [1282] = {.lex_state = 7}, [1283] = {.lex_state = 7}, [1284] = {.lex_state = 7}, - [1285] = {.lex_state = 7}, - [1286] = {.lex_state = 4}, - [1287] = {.lex_state = 4}, - [1288] = {.lex_state = 4}, + [1285] = {.lex_state = 4}, + [1286] = {.lex_state = 7}, + [1287] = {.lex_state = 7}, + [1288] = {.lex_state = 7}, [1289] = {.lex_state = 7}, - [1290] = {.lex_state = 4}, + [1290] = {.lex_state = 7}, [1291] = {.lex_state = 7}, - [1292] = {.lex_state = 7}, + [1292] = {.lex_state = 4}, [1293] = {.lex_state = 7}, [1294] = {.lex_state = 7}, [1295] = {.lex_state = 7}, - [1296] = {.lex_state = 7}, + [1296] = {.lex_state = 4}, [1297] = {.lex_state = 7}, [1298] = {.lex_state = 7}, - [1299] = {.lex_state = 4}, + [1299] = {.lex_state = 7}, [1300] = {.lex_state = 7}, [1301] = {.lex_state = 7}, [1302] = {.lex_state = 7}, [1303] = {.lex_state = 7}, - [1304] = {.lex_state = 7}, - [1305] = {.lex_state = 4}, - [1306] = {.lex_state = 7}, - [1307] = {.lex_state = 4}, + [1304] = {.lex_state = 13}, + [1305] = {.lex_state = 7}, + [1306] = {.lex_state = 13}, + [1307] = {.lex_state = 7}, [1308] = {.lex_state = 7}, - [1309] = {.lex_state = 7}, - [1310] = {.lex_state = 4}, - [1311] = {.lex_state = 7}, - [1312] = {.lex_state = 7}, + [1309] = {.lex_state = 4}, + [1310] = {.lex_state = 7}, + [1311] = {.lex_state = 4}, + [1312] = {.lex_state = 4}, [1313] = {.lex_state = 4}, [1314] = {.lex_state = 7}, [1315] = {.lex_state = 7}, - [1316] = {.lex_state = 7}, + [1316] = {.lex_state = 13}, [1317] = {.lex_state = 7}, [1318] = {.lex_state = 7}, [1319] = {.lex_state = 7}, [1320] = {.lex_state = 7}, [1321] = {.lex_state = 7}, - [1322] = {.lex_state = 4}, - [1323] = {.lex_state = 4}, - [1324] = {.lex_state = 4}, - [1325] = {.lex_state = 7}, + [1322] = {.lex_state = 7}, + [1323] = {.lex_state = 7}, + [1324] = {.lex_state = 7}, + [1325] = {.lex_state = 4}, [1326] = {.lex_state = 7}, [1327] = {.lex_state = 7}, [1328] = {.lex_state = 7}, - [1329] = {.lex_state = 7}, - [1330] = {.lex_state = 4}, + [1329] = {.lex_state = 13}, + [1330] = {.lex_state = 7}, [1331] = {.lex_state = 7}, - [1332] = {.lex_state = 7}, - [1333] = {.lex_state = 7}, + [1332] = {.lex_state = 4}, + [1333] = {.lex_state = 4}, [1334] = {.lex_state = 7}, [1335] = {.lex_state = 7}, - [1336] = {.lex_state = 7}, - [1337] = {.lex_state = 4}, + [1336] = {.lex_state = 4}, + [1337] = {.lex_state = 7}, [1338] = {.lex_state = 7}, - [1339] = {.lex_state = 4}, - [1340] = {.lex_state = 7}, - [1341] = {.lex_state = 7}, + [1339] = {.lex_state = 7}, + [1340] = {.lex_state = 13}, + [1341] = {.lex_state = 4}, [1342] = {.lex_state = 7}, [1343] = {.lex_state = 7}, [1344] = {.lex_state = 7}, - [1345] = {.lex_state = 7}, + [1345] = {.lex_state = 4}, [1346] = {.lex_state = 4}, - [1347] = {.lex_state = 4}, + [1347] = {.lex_state = 7}, [1348] = {.lex_state = 7}, [1349] = {.lex_state = 7}, [1350] = {.lex_state = 7}, [1351] = {.lex_state = 7}, [1352] = {.lex_state = 7}, [1353] = {.lex_state = 7}, - [1354] = {.lex_state = 7}, - [1355] = {.lex_state = 4}, - [1356] = {.lex_state = 7}, + [1354] = {.lex_state = 4}, + [1355] = {.lex_state = 7}, + [1356] = {.lex_state = 13}, [1357] = {.lex_state = 7}, [1358] = {.lex_state = 7}, [1359] = {.lex_state = 7}, @@ -15700,326 +15758,326 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1362] = {.lex_state = 4}, [1363] = {.lex_state = 7}, [1364] = {.lex_state = 7}, - [1365] = {.lex_state = 7}, + [1365] = {.lex_state = 4}, [1366] = {.lex_state = 7}, [1367] = {.lex_state = 7}, [1368] = {.lex_state = 7}, - [1369] = {.lex_state = 7}, - [1370] = {.lex_state = 7}, - [1371] = {.lex_state = 7}, + [1369] = {.lex_state = 4}, + [1370] = {.lex_state = 4}, + [1371] = {.lex_state = 4}, [1372] = {.lex_state = 7}, [1373] = {.lex_state = 7}, [1374] = {.lex_state = 4}, [1375] = {.lex_state = 7}, [1376] = {.lex_state = 7}, - [1377] = {.lex_state = 7}, + [1377] = {.lex_state = 9, .external_lex_state = 2}, [1378] = {.lex_state = 7}, - [1379] = {.lex_state = 4}, - [1380] = {.lex_state = 4}, - [1381] = {.lex_state = 7}, - [1382] = {.lex_state = 7}, - [1383] = {.lex_state = 4}, - [1384] = {.lex_state = 4}, - [1385] = {.lex_state = 7}, + [1379] = {.lex_state = 7}, + [1380] = {.lex_state = 7}, + [1381] = {.lex_state = 4}, + [1382] = {.lex_state = 4}, + [1383] = {.lex_state = 7}, + [1384] = {.lex_state = 7}, + [1385] = {.lex_state = 4}, [1386] = {.lex_state = 7}, - [1387] = {.lex_state = 4}, + [1387] = {.lex_state = 7}, [1388] = {.lex_state = 4}, [1389] = {.lex_state = 4}, - [1390] = {.lex_state = 4}, - [1391] = {.lex_state = 4}, + [1390] = {.lex_state = 7}, + [1391] = {.lex_state = 7}, [1392] = {.lex_state = 7}, [1393] = {.lex_state = 7}, [1394] = {.lex_state = 7}, [1395] = {.lex_state = 7}, [1396] = {.lex_state = 4}, - [1397] = {.lex_state = 4}, - [1398] = {.lex_state = 4}, - [1399] = {.lex_state = 4}, - [1400] = {.lex_state = 7}, - [1401] = {.lex_state = 7}, + [1397] = {.lex_state = 7}, + [1398] = {.lex_state = 7}, + [1399] = {.lex_state = 7}, + [1400] = {.lex_state = 4}, + [1401] = {.lex_state = 13}, [1402] = {.lex_state = 7}, [1403] = {.lex_state = 7}, [1404] = {.lex_state = 7}, [1405] = {.lex_state = 7}, - [1406] = {.lex_state = 7}, + [1406] = {.lex_state = 4}, [1407] = {.lex_state = 7}, [1408] = {.lex_state = 7}, [1409] = {.lex_state = 7}, [1410] = {.lex_state = 7}, [1411] = {.lex_state = 7}, - [1412] = {.lex_state = 4}, + [1412] = {.lex_state = 7}, [1413] = {.lex_state = 7}, [1414] = {.lex_state = 7}, [1415] = {.lex_state = 7}, [1416] = {.lex_state = 7}, - [1417] = {.lex_state = 7}, + [1417] = {.lex_state = 4}, [1418] = {.lex_state = 7}, [1419] = {.lex_state = 7}, - [1420] = {.lex_state = 4}, - [1421] = {.lex_state = 4}, - [1422] = {.lex_state = 4}, - [1423] = {.lex_state = 7}, - [1424] = {.lex_state = 7}, - [1425] = {.lex_state = 4}, + [1420] = {.lex_state = 7}, + [1421] = {.lex_state = 7}, + [1422] = {.lex_state = 7}, + [1423] = {.lex_state = 4}, + [1424] = {.lex_state = 4}, + [1425] = {.lex_state = 7}, [1426] = {.lex_state = 7}, [1427] = {.lex_state = 7}, [1428] = {.lex_state = 4}, [1429] = {.lex_state = 4}, - [1430] = {.lex_state = 4}, - [1431] = {.lex_state = 4}, + [1430] = {.lex_state = 7}, + [1431] = {.lex_state = 7}, [1432] = {.lex_state = 4}, [1433] = {.lex_state = 7}, [1434] = {.lex_state = 7}, [1435] = {.lex_state = 4}, - [1436] = {.lex_state = 4}, + [1436] = {.lex_state = 7}, [1437] = {.lex_state = 4}, - [1438] = {.lex_state = 4}, - [1439] = {.lex_state = 4}, + [1438] = {.lex_state = 7}, + [1439] = {.lex_state = 7}, [1440] = {.lex_state = 4}, [1441] = {.lex_state = 4}, [1442] = {.lex_state = 4}, [1443] = {.lex_state = 4}, - [1444] = {.lex_state = 4}, - [1445] = {.lex_state = 4}, - [1446] = {.lex_state = 4}, + [1444] = {.lex_state = 7}, + [1445] = {.lex_state = 7}, + [1446] = {.lex_state = 7}, [1447] = {.lex_state = 13}, - [1448] = {.lex_state = 13}, - [1449] = {.lex_state = 4}, - [1450] = {.lex_state = 6}, - [1451] = {.lex_state = 13}, - [1452] = {.lex_state = 13}, - [1453] = {.lex_state = 4}, - [1454] = {.lex_state = 13}, - [1455] = {.lex_state = 13}, - [1456] = {.lex_state = 13}, + [1448] = {.lex_state = 7}, + [1449] = {.lex_state = 7}, + [1450] = {.lex_state = 7}, + [1451] = {.lex_state = 7}, + [1452] = {.lex_state = 7}, + [1453] = {.lex_state = 7}, + [1454] = {.lex_state = 7}, + [1455] = {.lex_state = 4}, + [1456] = {.lex_state = 4}, [1457] = {.lex_state = 13}, [1458] = {.lex_state = 13}, - [1459] = {.lex_state = 4}, + [1459] = {.lex_state = 13}, [1460] = {.lex_state = 4}, - [1461] = {.lex_state = 4}, - [1462] = {.lex_state = 4}, - [1463] = {.lex_state = 6}, - [1464] = {.lex_state = 4}, - [1465] = {.lex_state = 6}, + [1461] = {.lex_state = 9, .external_lex_state = 2}, + [1462] = {.lex_state = 9, .external_lex_state = 2}, + [1463] = {.lex_state = 13}, + [1464] = {.lex_state = 13}, + [1465] = {.lex_state = 10, .external_lex_state = 2}, [1466] = {.lex_state = 4}, - [1467] = {.lex_state = 4}, - [1468] = {.lex_state = 4}, - [1469] = {.lex_state = 4}, - [1470] = {.lex_state = 4}, - [1471] = {.lex_state = 4}, + [1467] = {.lex_state = 9, .external_lex_state = 2}, + [1468] = {.lex_state = 9, .external_lex_state = 2}, + [1469] = {.lex_state = 9, .external_lex_state = 2}, + [1470] = {.lex_state = 10, .external_lex_state = 2}, + [1471] = {.lex_state = 13}, [1472] = {.lex_state = 4}, [1473] = {.lex_state = 4}, [1474] = {.lex_state = 4}, - [1475] = {.lex_state = 5}, - [1476] = {.lex_state = 6}, + [1475] = {.lex_state = 4}, + [1476] = {.lex_state = 4}, [1477] = {.lex_state = 4}, [1478] = {.lex_state = 4}, [1479] = {.lex_state = 4}, [1480] = {.lex_state = 4}, - [1481] = {.lex_state = 4}, + [1481] = {.lex_state = 6}, [1482] = {.lex_state = 4}, [1483] = {.lex_state = 13}, - [1484] = {.lex_state = 6}, - [1485] = {.lex_state = 6}, - [1486] = {.lex_state = 6}, - [1487] = {.lex_state = 6}, - [1488] = {.lex_state = 6}, - [1489] = {.lex_state = 6}, - [1490] = {.lex_state = 13}, + [1484] = {.lex_state = 4}, + [1485] = {.lex_state = 4}, + [1486] = {.lex_state = 4}, + [1487] = {.lex_state = 4}, + [1488] = {.lex_state = 4}, + [1489] = {.lex_state = 4}, + [1490] = {.lex_state = 4}, [1491] = {.lex_state = 4}, - [1492] = {.lex_state = 5}, - [1493] = {.lex_state = 6}, - [1494] = {.lex_state = 13}, - [1495] = {.lex_state = 13}, - [1496] = {.lex_state = 13}, - [1497] = {.lex_state = 13}, - [1498] = {.lex_state = 13}, - [1499] = {.lex_state = 13}, - [1500] = {.lex_state = 6}, + [1492] = {.lex_state = 4}, + [1493] = {.lex_state = 13}, + [1494] = {.lex_state = 4}, + [1495] = {.lex_state = 5}, + [1496] = {.lex_state = 6}, + [1497] = {.lex_state = 6}, + [1498] = {.lex_state = 6}, + [1499] = {.lex_state = 4}, + [1500] = {.lex_state = 4}, [1501] = {.lex_state = 13}, [1502] = {.lex_state = 13}, - [1503] = {.lex_state = 5}, - [1504] = {.lex_state = 5}, - [1505] = {.lex_state = 13}, - [1506] = {.lex_state = 5}, - [1507] = {.lex_state = 4}, - [1508] = {.lex_state = 5}, - [1509] = {.lex_state = 9, .external_lex_state = 2}, + [1503] = {.lex_state = 4}, + [1504] = {.lex_state = 4}, + [1505] = {.lex_state = 5}, + [1506] = {.lex_state = 9, .external_lex_state = 2}, + [1507] = {.lex_state = 5}, + [1508] = {.lex_state = 6}, + [1509] = {.lex_state = 4}, [1510] = {.lex_state = 4}, - [1511] = {.lex_state = 5}, - [1512] = {.lex_state = 4}, - [1513] = {.lex_state = 5}, - [1514] = {.lex_state = 5}, - [1515] = {.lex_state = 5}, - [1516] = {.lex_state = 5}, - [1517] = {.lex_state = 4}, - [1518] = {.lex_state = 4}, - [1519] = {.lex_state = 9, .external_lex_state = 2}, - [1520] = {.lex_state = 5}, - [1521] = {.lex_state = 4}, - [1522] = {.lex_state = 9, .external_lex_state = 2}, - [1523] = {.lex_state = 4}, - [1524] = {.lex_state = 5}, - [1525] = {.lex_state = 5}, - [1526] = {.lex_state = 5}, - [1527] = {.lex_state = 5}, - [1528] = {.lex_state = 4}, - [1529] = {.lex_state = 5}, - [1530] = {.lex_state = 9, .external_lex_state = 2}, - [1531] = {.lex_state = 5}, - [1532] = {.lex_state = 19}, + [1511] = {.lex_state = 13}, + [1512] = {.lex_state = 13}, + [1513] = {.lex_state = 9, .external_lex_state = 2}, + [1514] = {.lex_state = 4}, + [1515] = {.lex_state = 9, .external_lex_state = 2}, + [1516] = {.lex_state = 6}, + [1517] = {.lex_state = 6}, + [1518] = {.lex_state = 6}, + [1519] = {.lex_state = 4}, + [1520] = {.lex_state = 13}, + [1521] = {.lex_state = 9, .external_lex_state = 2}, + [1522] = {.lex_state = 5}, + [1523] = {.lex_state = 6}, + [1524] = {.lex_state = 6}, + [1525] = {.lex_state = 6}, + [1526] = {.lex_state = 13}, + [1527] = {.lex_state = 6}, + [1528] = {.lex_state = 5}, + [1529] = {.lex_state = 13}, + [1530] = {.lex_state = 4}, + [1531] = {.lex_state = 4}, + [1532] = {.lex_state = 5}, [1533] = {.lex_state = 4}, - [1534] = {.lex_state = 5}, - [1535] = {.lex_state = 13}, - [1536] = {.lex_state = 19}, - [1537] = {.lex_state = 19}, + [1534] = {.lex_state = 4}, + [1535] = {.lex_state = 4}, + [1536] = {.lex_state = 4}, + [1537] = {.lex_state = 4}, [1538] = {.lex_state = 4}, - [1539] = {.lex_state = 19}, - [1540] = {.lex_state = 5}, - [1541] = {.lex_state = 5}, - [1542] = {.lex_state = 4}, - [1543] = {.lex_state = 4}, + [1539] = {.lex_state = 4}, + [1540] = {.lex_state = 4}, + [1541] = {.lex_state = 4}, + [1542] = {.lex_state = 5}, + [1543] = {.lex_state = 5}, [1544] = {.lex_state = 4}, [1545] = {.lex_state = 5}, - [1546] = {.lex_state = 4}, - [1547] = {.lex_state = 4}, - [1548] = {.lex_state = 5}, + [1546] = {.lex_state = 5}, + [1547] = {.lex_state = 5}, + [1548] = {.lex_state = 4}, [1549] = {.lex_state = 5}, - [1550] = {.lex_state = 13}, - [1551] = {.lex_state = 13}, + [1550] = {.lex_state = 5}, + [1551] = {.lex_state = 4}, [1552] = {.lex_state = 5}, - [1553] = {.lex_state = 19}, + [1553] = {.lex_state = 4}, [1554] = {.lex_state = 5}, - [1555] = {.lex_state = 6}, + [1555] = {.lex_state = 5}, [1556] = {.lex_state = 4}, [1557] = {.lex_state = 5}, [1558] = {.lex_state = 5}, - [1559] = {.lex_state = 19}, - [1560] = {.lex_state = 19}, + [1559] = {.lex_state = 4}, + [1560] = {.lex_state = 4}, [1561] = {.lex_state = 5}, [1562] = {.lex_state = 4}, [1563] = {.lex_state = 4}, - [1564] = {.lex_state = 19}, + [1564] = {.lex_state = 4}, [1565] = {.lex_state = 4}, - [1566] = {.lex_state = 19}, + [1566] = {.lex_state = 5}, [1567] = {.lex_state = 4}, [1568] = {.lex_state = 4}, - [1569] = {.lex_state = 4}, + [1569] = {.lex_state = 5}, [1570] = {.lex_state = 5}, - [1571] = {.lex_state = 19}, - [1572] = {.lex_state = 5}, - [1573] = {.lex_state = 5}, - [1574] = {.lex_state = 4}, - [1575] = {.lex_state = 4}, - [1576] = {.lex_state = 5}, + [1571] = {.lex_state = 13}, + [1572] = {.lex_state = 4}, + [1573] = {.lex_state = 4}, + [1574] = {.lex_state = 5}, + [1575] = {.lex_state = 13}, + [1576] = {.lex_state = 19}, [1577] = {.lex_state = 5}, - [1578] = {.lex_state = 13}, - [1579] = {.lex_state = 13}, - [1580] = {.lex_state = 5}, - [1581] = {.lex_state = 4}, - [1582] = {.lex_state = 13}, - [1583] = {.lex_state = 5}, - [1584] = {.lex_state = 19}, - [1585] = {.lex_state = 13}, - [1586] = {.lex_state = 5}, - [1587] = {.lex_state = 5}, - [1588] = {.lex_state = 19}, + [1578] = {.lex_state = 5}, + [1579] = {.lex_state = 5}, + [1580] = {.lex_state = 4}, + [1581] = {.lex_state = 19}, + [1582] = {.lex_state = 4}, + [1583] = {.lex_state = 19}, + [1584] = {.lex_state = 4}, + [1585] = {.lex_state = 4}, + [1586] = {.lex_state = 19}, + [1587] = {.lex_state = 6}, + [1588] = {.lex_state = 4}, [1589] = {.lex_state = 4}, [1590] = {.lex_state = 4}, [1591] = {.lex_state = 4}, - [1592] = {.lex_state = 5}, + [1592] = {.lex_state = 4}, [1593] = {.lex_state = 4}, [1594] = {.lex_state = 4}, - [1595] = {.lex_state = 5}, + [1595] = {.lex_state = 19}, [1596] = {.lex_state = 5}, - [1597] = {.lex_state = 4}, - [1598] = {.lex_state = 4}, - [1599] = {.lex_state = 5}, + [1597] = {.lex_state = 19}, + [1598] = {.lex_state = 5}, + [1599] = {.lex_state = 19}, [1600] = {.lex_state = 5}, - [1601] = {.lex_state = 5}, - [1602] = {.lex_state = 4}, + [1601] = {.lex_state = 4}, + [1602] = {.lex_state = 19}, [1603] = {.lex_state = 5}, - [1604] = {.lex_state = 5}, - [1605] = {.lex_state = 5}, + [1604] = {.lex_state = 4}, + [1605] = {.lex_state = 4}, [1606] = {.lex_state = 5}, - [1607] = {.lex_state = 5}, - [1608] = {.lex_state = 5}, - [1609] = {.lex_state = 5}, - [1610] = {.lex_state = 5}, - [1611] = {.lex_state = 4}, - [1612] = {.lex_state = 5}, + [1607] = {.lex_state = 19}, + [1608] = {.lex_state = 4}, + [1609] = {.lex_state = 19}, + [1610] = {.lex_state = 19}, + [1611] = {.lex_state = 5}, + [1612] = {.lex_state = 4}, [1613] = {.lex_state = 5}, - [1614] = {.lex_state = 5}, - [1615] = {.lex_state = 5}, - [1616] = {.lex_state = 5}, + [1614] = {.lex_state = 19}, + [1615] = {.lex_state = 4}, + [1616] = {.lex_state = 4}, [1617] = {.lex_state = 5}, [1618] = {.lex_state = 5}, [1619] = {.lex_state = 5}, - [1620] = {.lex_state = 5}, + [1620] = {.lex_state = 13}, [1621] = {.lex_state = 5}, [1622] = {.lex_state = 5}, [1623] = {.lex_state = 5}, - [1624] = {.lex_state = 5}, + [1624] = {.lex_state = 4}, [1625] = {.lex_state = 5}, - [1626] = {.lex_state = 5}, - [1627] = {.lex_state = 5}, + [1626] = {.lex_state = 4}, + [1627] = {.lex_state = 4}, [1628] = {.lex_state = 5}, - [1629] = {.lex_state = 5}, + [1629] = {.lex_state = 4}, [1630] = {.lex_state = 5}, [1631] = {.lex_state = 5}, [1632] = {.lex_state = 5}, [1633] = {.lex_state = 5}, [1634] = {.lex_state = 5}, [1635] = {.lex_state = 5}, - [1636] = {.lex_state = 5}, - [1637] = {.lex_state = 5}, + [1636] = {.lex_state = 4}, + [1637] = {.lex_state = 4}, [1638] = {.lex_state = 5}, [1639] = {.lex_state = 5}, [1640] = {.lex_state = 5}, - [1641] = {.lex_state = 5}, - [1642] = {.lex_state = 5}, + [1641] = {.lex_state = 4}, + [1642] = {.lex_state = 4}, [1643] = {.lex_state = 5}, [1644] = {.lex_state = 5}, - [1645] = {.lex_state = 5}, + [1645] = {.lex_state = 4}, [1646] = {.lex_state = 5}, [1647] = {.lex_state = 5}, [1648] = {.lex_state = 4}, - [1649] = {.lex_state = 5}, - [1650] = {.lex_state = 5}, + [1649] = {.lex_state = 4}, + [1650] = {.lex_state = 4}, [1651] = {.lex_state = 5}, [1652] = {.lex_state = 5}, - [1653] = {.lex_state = 5}, + [1653] = {.lex_state = 4}, [1654] = {.lex_state = 5}, - [1655] = {.lex_state = 5}, - [1656] = {.lex_state = 5}, + [1655] = {.lex_state = 4}, + [1656] = {.lex_state = 4}, [1657] = {.lex_state = 5}, [1658] = {.lex_state = 5}, [1659] = {.lex_state = 5}, [1660] = {.lex_state = 5}, - [1661] = {.lex_state = 5}, - [1662] = {.lex_state = 5}, - [1663] = {.lex_state = 5}, - [1664] = {.lex_state = 4}, - [1665] = {.lex_state = 5}, + [1661] = {.lex_state = 4}, + [1662] = {.lex_state = 4}, + [1663] = {.lex_state = 4}, + [1664] = {.lex_state = 5}, + [1665] = {.lex_state = 4}, [1666] = {.lex_state = 5}, - [1667] = {.lex_state = 4}, + [1667] = {.lex_state = 5}, [1668] = {.lex_state = 5}, [1669] = {.lex_state = 5}, [1670] = {.lex_state = 5}, - [1671] = {.lex_state = 5}, - [1672] = {.lex_state = 5}, + [1671] = {.lex_state = 4}, + [1672] = {.lex_state = 4}, [1673] = {.lex_state = 5}, [1674] = {.lex_state = 5}, [1675] = {.lex_state = 5}, [1676] = {.lex_state = 5}, - [1677] = {.lex_state = 5}, - [1678] = {.lex_state = 5}, + [1677] = {.lex_state = 4}, + [1678] = {.lex_state = 4}, [1679] = {.lex_state = 5}, [1680] = {.lex_state = 5}, [1681] = {.lex_state = 5}, [1682] = {.lex_state = 5}, [1683] = {.lex_state = 5}, - [1684] = {.lex_state = 5}, + [1684] = {.lex_state = 4}, [1685] = {.lex_state = 5}, [1686] = {.lex_state = 5}, [1687] = {.lex_state = 5}, @@ -16028,54 +16086,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1690] = {.lex_state = 5}, [1691] = {.lex_state = 5}, [1692] = {.lex_state = 5}, - [1693] = {.lex_state = 13}, - [1694] = {.lex_state = 5}, - [1695] = {.lex_state = 13}, + [1693] = {.lex_state = 5}, + [1694] = {.lex_state = 4}, + [1695] = {.lex_state = 5}, [1696] = {.lex_state = 5}, - [1697] = {.lex_state = 5}, - [1698] = {.lex_state = 5}, + [1697] = {.lex_state = 4}, + [1698] = {.lex_state = 4}, [1699] = {.lex_state = 5}, - [1700] = {.lex_state = 5}, + [1700] = {.lex_state = 4}, [1701] = {.lex_state = 5}, [1702] = {.lex_state = 4}, - [1703] = {.lex_state = 4}, - [1704] = {.lex_state = 5}, + [1703] = {.lex_state = 5}, + [1704] = {.lex_state = 4}, [1705] = {.lex_state = 4}, - [1706] = {.lex_state = 5}, + [1706] = {.lex_state = 4}, [1707] = {.lex_state = 5}, [1708] = {.lex_state = 4}, [1709] = {.lex_state = 5}, [1710] = {.lex_state = 5}, [1711] = {.lex_state = 5}, [1712] = {.lex_state = 4}, - [1713] = {.lex_state = 5}, - [1714] = {.lex_state = 5}, - [1715] = {.lex_state = 4}, - [1716] = {.lex_state = 5}, - [1717] = {.lex_state = 4}, - [1718] = {.lex_state = 4}, - [1719] = {.lex_state = 4}, + [1713] = {.lex_state = 4}, + [1714] = {.lex_state = 4}, + [1715] = {.lex_state = 5}, + [1716] = {.lex_state = 4}, + [1717] = {.lex_state = 5}, + [1718] = {.lex_state = 5}, + [1719] = {.lex_state = 5}, [1720] = {.lex_state = 4}, [1721] = {.lex_state = 5}, - [1722] = {.lex_state = 4}, + [1722] = {.lex_state = 5}, [1723] = {.lex_state = 5}, - [1724] = {.lex_state = 4}, + [1724] = {.lex_state = 5}, [1725] = {.lex_state = 5}, - [1726] = {.lex_state = 5}, + [1726] = {.lex_state = 4}, [1727] = {.lex_state = 5}, - [1728] = {.lex_state = 4}, + [1728] = {.lex_state = 5}, [1729] = {.lex_state = 5}, [1730] = {.lex_state = 5}, [1731] = {.lex_state = 5}, - [1732] = {.lex_state = 13}, + [1732] = {.lex_state = 5}, [1733] = {.lex_state = 5}, [1734] = {.lex_state = 4}, [1735] = {.lex_state = 4}, [1736] = {.lex_state = 5}, - [1737] = {.lex_state = 4}, + [1737] = {.lex_state = 5}, [1738] = {.lex_state = 4}, - [1739] = {.lex_state = 4}, - [1740] = {.lex_state = 4}, + [1739] = {.lex_state = 5}, + [1740] = {.lex_state = 5}, [1741] = {.lex_state = 5}, [1742] = {.lex_state = 4}, [1743] = {.lex_state = 5}, @@ -16083,82 +16141,82 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1745] = {.lex_state = 4}, [1746] = {.lex_state = 4}, [1747] = {.lex_state = 4}, - [1748] = {.lex_state = 5}, - [1749] = {.lex_state = 13}, - [1750] = {.lex_state = 5}, - [1751] = {.lex_state = 4}, + [1748] = {.lex_state = 4}, + [1749] = {.lex_state = 5}, + [1750] = {.lex_state = 4}, + [1751] = {.lex_state = 5}, [1752] = {.lex_state = 4}, [1753] = {.lex_state = 4}, [1754] = {.lex_state = 5}, - [1755] = {.lex_state = 4}, + [1755] = {.lex_state = 5}, [1756] = {.lex_state = 5}, [1757] = {.lex_state = 5}, - [1758] = {.lex_state = 4}, - [1759] = {.lex_state = 4}, - [1760] = {.lex_state = 4}, + [1758] = {.lex_state = 5}, + [1759] = {.lex_state = 5}, + [1760] = {.lex_state = 5}, [1761] = {.lex_state = 4}, - [1762] = {.lex_state = 4}, - [1763] = {.lex_state = 5}, + [1762] = {.lex_state = 5}, + [1763] = {.lex_state = 4}, [1764] = {.lex_state = 5}, - [1765] = {.lex_state = 5}, + [1765] = {.lex_state = 4}, [1766] = {.lex_state = 4}, - [1767] = {.lex_state = 5}, - [1768] = {.lex_state = 4}, - [1769] = {.lex_state = 4}, - [1770] = {.lex_state = 4}, - [1771] = {.lex_state = 4}, + [1767] = {.lex_state = 4}, + [1768] = {.lex_state = 5}, + [1769] = {.lex_state = 5}, + [1770] = {.lex_state = 5}, + [1771] = {.lex_state = 5}, [1772] = {.lex_state = 4}, - [1773] = {.lex_state = 4}, - [1774] = {.lex_state = 4}, - [1775] = {.lex_state = 4}, + [1773] = {.lex_state = 5}, + [1774] = {.lex_state = 5}, + [1775] = {.lex_state = 5}, [1776] = {.lex_state = 5}, - [1777] = {.lex_state = 4}, - [1778] = {.lex_state = 4}, + [1777] = {.lex_state = 5}, + [1778] = {.lex_state = 5}, [1779] = {.lex_state = 4}, - [1780] = {.lex_state = 5}, - [1781] = {.lex_state = 4}, - [1782] = {.lex_state = 4}, - [1783] = {.lex_state = 4}, - [1784] = {.lex_state = 4}, + [1780] = {.lex_state = 4}, + [1781] = {.lex_state = 5}, + [1782] = {.lex_state = 5}, + [1783] = {.lex_state = 5}, + [1784] = {.lex_state = 5}, [1785] = {.lex_state = 4}, [1786] = {.lex_state = 4}, - [1787] = {.lex_state = 4}, - [1788] = {.lex_state = 4}, + [1787] = {.lex_state = 5}, + [1788] = {.lex_state = 5}, [1789] = {.lex_state = 4}, - [1790] = {.lex_state = 4}, - [1791] = {.lex_state = 4}, + [1790] = {.lex_state = 5}, + [1791] = {.lex_state = 5}, [1792] = {.lex_state = 4}, - [1793] = {.lex_state = 5}, - [1794] = {.lex_state = 4}, + [1793] = {.lex_state = 4}, + [1794] = {.lex_state = 5}, [1795] = {.lex_state = 4}, [1796] = {.lex_state = 4}, - [1797] = {.lex_state = 4}, + [1797] = {.lex_state = 5}, [1798] = {.lex_state = 4}, - [1799] = {.lex_state = 4}, + [1799] = {.lex_state = 5}, [1800] = {.lex_state = 5}, [1801] = {.lex_state = 4}, [1802] = {.lex_state = 4}, - [1803] = {.lex_state = 4}, + [1803] = {.lex_state = 5}, [1804] = {.lex_state = 4}, [1805] = {.lex_state = 4}, - [1806] = {.lex_state = 5}, + [1806] = {.lex_state = 4}, [1807] = {.lex_state = 4}, - [1808] = {.lex_state = 5}, + [1808] = {.lex_state = 4}, [1809] = {.lex_state = 4}, [1810] = {.lex_state = 4}, [1811] = {.lex_state = 4}, - [1812] = {.lex_state = 4}, - [1813] = {.lex_state = 4}, + [1812] = {.lex_state = 5}, + [1813] = {.lex_state = 5}, [1814] = {.lex_state = 4}, - [1815] = {.lex_state = 4}, + [1815] = {.lex_state = 5}, [1816] = {.lex_state = 4}, - [1817] = {.lex_state = 4}, - [1818] = {.lex_state = 4}, + [1817] = {.lex_state = 5}, + [1818] = {.lex_state = 13}, [1819] = {.lex_state = 4}, - [1820] = {.lex_state = 4}, - [1821] = {.lex_state = 4}, - [1822] = {.lex_state = 4}, - [1823] = {.lex_state = 4}, + [1820] = {.lex_state = 5}, + [1821] = {.lex_state = 5}, + [1822] = {.lex_state = 5}, + [1823] = {.lex_state = 5}, [1824] = {.lex_state = 4}, [1825] = {.lex_state = 4}, [1826] = {.lex_state = 4}, @@ -16166,26 +16224,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1828] = {.lex_state = 4}, [1829] = {.lex_state = 5}, [1830] = {.lex_state = 4}, - [1831] = {.lex_state = 5}, - [1832] = {.lex_state = 4}, - [1833] = {.lex_state = 5}, - [1834] = {.lex_state = 5}, - [1835] = {.lex_state = 5}, + [1831] = {.lex_state = 4}, + [1832] = {.lex_state = 13}, + [1833] = {.lex_state = 4}, + [1834] = {.lex_state = 4}, + [1835] = {.lex_state = 4}, [1836] = {.lex_state = 4}, [1837] = {.lex_state = 4}, - [1838] = {.lex_state = 4}, + [1838] = {.lex_state = 5}, [1839] = {.lex_state = 4}, [1840] = {.lex_state = 4}, [1841] = {.lex_state = 4}, [1842] = {.lex_state = 4}, [1843] = {.lex_state = 4}, - [1844] = {.lex_state = 13}, - [1845] = {.lex_state = 5}, + [1844] = {.lex_state = 4}, + [1845] = {.lex_state = 4}, [1846] = {.lex_state = 4}, [1847] = {.lex_state = 4}, [1848] = {.lex_state = 4}, - [1849] = {.lex_state = 4}, - [1850] = {.lex_state = 4}, + [1849] = {.lex_state = 13}, + [1850] = {.lex_state = 5}, [1851] = {.lex_state = 4}, [1852] = {.lex_state = 4}, [1853] = {.lex_state = 4}, @@ -16198,19 +16256,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1860] = {.lex_state = 4}, [1861] = {.lex_state = 4}, [1862] = {.lex_state = 4}, - [1863] = {.lex_state = 5}, - [1864] = {.lex_state = 4}, - [1865] = {.lex_state = 4}, - [1866] = {.lex_state = 4}, - [1867] = {.lex_state = 4}, - [1868] = {.lex_state = 4}, - [1869] = {.lex_state = 4}, - [1870] = {.lex_state = 4}, - [1871] = {.lex_state = 4}, - [1872] = {.lex_state = 4}, + [1863] = {.lex_state = 4}, + [1864] = {.lex_state = 13}, + [1865] = {.lex_state = 13}, + [1866] = {.lex_state = 13}, + [1867] = {.lex_state = 13}, + [1868] = {.lex_state = 13}, + [1869] = {.lex_state = 13}, + [1870] = {.lex_state = 13}, + [1871] = {.lex_state = 13}, + [1872] = {.lex_state = 13}, [1873] = {.lex_state = 13}, - [1874] = {.lex_state = 4}, - [1875] = {.lex_state = 4}, + [1874] = {.lex_state = 13}, + [1875] = {.lex_state = 13}, [1876] = {.lex_state = 13}, [1877] = {.lex_state = 13}, [1878] = {.lex_state = 13}, @@ -16225,199 +16283,199 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1887] = {.lex_state = 13}, [1888] = {.lex_state = 13}, [1889] = {.lex_state = 13}, - [1890] = {.lex_state = 13}, - [1891] = {.lex_state = 13}, - [1892] = {.lex_state = 13}, - [1893] = {.lex_state = 13}, - [1894] = {.lex_state = 13}, - [1895] = {.lex_state = 13}, - [1896] = {.lex_state = 13}, - [1897] = {.lex_state = 13}, - [1898] = {.lex_state = 13}, - [1899] = {.lex_state = 13}, - [1900] = {.lex_state = 13}, - [1901] = {.lex_state = 15}, + [1890] = {.lex_state = 15}, + [1891] = {.lex_state = 26}, + [1892] = {.lex_state = 26}, + [1893] = {.lex_state = 15}, + [1894] = {.lex_state = 15}, + [1895] = {.lex_state = 15}, + [1896] = {.lex_state = 15}, + [1897] = {.lex_state = 15}, + [1898] = {.lex_state = 15}, + [1899] = {.lex_state = 15}, + [1900] = {.lex_state = 15}, + [1901] = {.lex_state = 26}, [1902] = {.lex_state = 26}, [1903] = {.lex_state = 26}, - [1904] = {.lex_state = 15}, + [1904] = {.lex_state = 26}, [1905] = {.lex_state = 15}, [1906] = {.lex_state = 15}, - [1907] = {.lex_state = 15}, - [1908] = {.lex_state = 15}, + [1907] = {.lex_state = 13}, + [1908] = {.lex_state = 13}, [1909] = {.lex_state = 15}, - [1910] = {.lex_state = 15}, - [1911] = {.lex_state = 15}, + [1910] = {.lex_state = 13}, + [1911] = {.lex_state = 13}, [1912] = {.lex_state = 26}, - [1913] = {.lex_state = 26}, - [1914] = {.lex_state = 26}, - [1915] = {.lex_state = 26}, - [1916] = {.lex_state = 15}, + [1913] = {.lex_state = 13}, + [1914] = {.lex_state = 15}, + [1915] = {.lex_state = 13}, + [1916] = {.lex_state = 13}, [1917] = {.lex_state = 13}, [1918] = {.lex_state = 13}, - [1919] = {.lex_state = 13}, + [1919] = {.lex_state = 15}, [1920] = {.lex_state = 15}, [1921] = {.lex_state = 13}, - [1922] = {.lex_state = 15}, - [1923] = {.lex_state = 26}, - [1924] = {.lex_state = 15}, - [1925] = {.lex_state = 13}, - [1926] = {.lex_state = 15}, + [1922] = {.lex_state = 13}, + [1923] = {.lex_state = 13}, + [1924] = {.lex_state = 13}, + [1925] = {.lex_state = 26}, + [1926] = {.lex_state = 13}, [1927] = {.lex_state = 13}, - [1928] = {.lex_state = 13}, + [1928] = {.lex_state = 26}, [1929] = {.lex_state = 13}, [1930] = {.lex_state = 13}, - [1931] = {.lex_state = 13}, - [1932] = {.lex_state = 15}, - [1933] = {.lex_state = 13}, - [1934] = {.lex_state = 13}, - [1935] = {.lex_state = 26}, - [1936] = {.lex_state = 13}, - [1937] = {.lex_state = 13}, + [1931] = {.lex_state = 26}, + [1932] = {.lex_state = 26}, + [1933] = {.lex_state = 26}, + [1934] = {.lex_state = 26}, + [1935] = {.lex_state = 15}, + [1936] = {.lex_state = 26}, + [1937] = {.lex_state = 26}, [1938] = {.lex_state = 26}, - [1939] = {.lex_state = 13}, - [1940] = {.lex_state = 26}, + [1939] = {.lex_state = 15}, + [1940] = {.lex_state = 13}, [1941] = {.lex_state = 26}, - [1942] = {.lex_state = 13}, + [1942] = {.lex_state = 26}, [1943] = {.lex_state = 13}, - [1944] = {.lex_state = 15}, + [1944] = {.lex_state = 13}, [1945] = {.lex_state = 26}, - [1946] = {.lex_state = 26}, - [1947] = {.lex_state = 26}, - [1948] = {.lex_state = 26}, - [1949] = {.lex_state = 15}, + [1946] = {.lex_state = 15}, + [1947] = {.lex_state = 15}, + [1948] = {.lex_state = 13}, + [1949] = {.lex_state = 26}, [1950] = {.lex_state = 26}, [1951] = {.lex_state = 26}, - [1952] = {.lex_state = 13}, + [1952] = {.lex_state = 26}, [1953] = {.lex_state = 13}, [1954] = {.lex_state = 26}, [1955] = {.lex_state = 26}, - [1956] = {.lex_state = 13}, + [1956] = {.lex_state = 26}, [1957] = {.lex_state = 26}, [1958] = {.lex_state = 26}, - [1959] = {.lex_state = 15}, - [1960] = {.lex_state = 15}, + [1959] = {.lex_state = 26}, + [1960] = {.lex_state = 26}, [1961] = {.lex_state = 26}, [1962] = {.lex_state = 26}, [1963] = {.lex_state = 26}, - [1964] = {.lex_state = 26}, - [1965] = {.lex_state = 15}, + [1964] = {.lex_state = 13}, + [1965] = {.lex_state = 26}, [1966] = {.lex_state = 26}, [1967] = {.lex_state = 26}, - [1968] = {.lex_state = 26}, + [1968] = {.lex_state = 15}, [1969] = {.lex_state = 26}, [1970] = {.lex_state = 26}, [1971] = {.lex_state = 26}, [1972] = {.lex_state = 26}, - [1973] = {.lex_state = 26}, + [1973] = {.lex_state = 13}, [1974] = {.lex_state = 26}, - [1975] = {.lex_state = 13}, + [1975] = {.lex_state = 26}, [1976] = {.lex_state = 26}, [1977] = {.lex_state = 26}, [1978] = {.lex_state = 26}, [1979] = {.lex_state = 13}, - [1980] = {.lex_state = 26}, + [1980] = {.lex_state = 13}, [1981] = {.lex_state = 26}, [1982] = {.lex_state = 26}, [1983] = {.lex_state = 26}, - [1984] = {.lex_state = 13}, + [1984] = {.lex_state = 26}, [1985] = {.lex_state = 13}, - [1986] = {.lex_state = 26}, + [1986] = {.lex_state = 13}, [1987] = {.lex_state = 26}, - [1988] = {.lex_state = 26}, - [1989] = {.lex_state = 13}, - [1990] = {.lex_state = 26}, - [1991] = {.lex_state = 26}, - [1992] = {.lex_state = 26}, - [1993] = {.lex_state = 13}, + [1988] = {.lex_state = 15}, + [1989] = {.lex_state = 15}, + [1990] = {.lex_state = 15}, + [1991] = {.lex_state = 15}, + [1992] = {.lex_state = 15}, + [1993] = {.lex_state = 26}, [1994] = {.lex_state = 15}, [1995] = {.lex_state = 26}, - [1996] = {.lex_state = 13}, - [1997] = {.lex_state = 15}, - [1998] = {.lex_state = 15}, + [1996] = {.lex_state = 15}, + [1997] = {.lex_state = 26}, + [1998] = {.lex_state = 16}, [1999] = {.lex_state = 15}, [2000] = {.lex_state = 15}, [2001] = {.lex_state = 15}, - [2002] = {.lex_state = 26}, + [2002] = {.lex_state = 15}, [2003] = {.lex_state = 15}, [2004] = {.lex_state = 15}, - [2005] = {.lex_state = 16}, - [2006] = {.lex_state = 15}, - [2007] = {.lex_state = 26}, - [2008] = {.lex_state = 26}, - [2009] = {.lex_state = 15}, - [2010] = {.lex_state = 15}, - [2011] = {.lex_state = 15}, - [2012] = {.lex_state = 15}, + [2005] = {.lex_state = 13}, + [2006] = {.lex_state = 13}, + [2007] = {.lex_state = 13}, + [2008] = {.lex_state = 13}, + [2009] = {.lex_state = 13}, + [2010] = {.lex_state = 13}, + [2011] = {.lex_state = 13}, + [2012] = {.lex_state = 13}, [2013] = {.lex_state = 13}, [2014] = {.lex_state = 13}, - [2015] = {.lex_state = 15}, - [2016] = {.lex_state = 16}, + [2015] = {.lex_state = 13}, + [2016] = {.lex_state = 13}, [2017] = {.lex_state = 13}, [2018] = {.lex_state = 13}, [2019] = {.lex_state = 13}, - [2020] = {.lex_state = 20}, - [2021] = {.lex_state = 20}, - [2022] = {.lex_state = 15}, - [2023] = {.lex_state = 15}, - [2024] = {.lex_state = 15}, + [2020] = {.lex_state = 13}, + [2021] = {.lex_state = 13}, + [2022] = {.lex_state = 20}, + [2023] = {.lex_state = 13}, + [2024] = {.lex_state = 26}, [2025] = {.lex_state = 15}, - [2026] = {.lex_state = 20}, - [2027] = {.lex_state = 13}, - [2028] = {.lex_state = 16}, - [2029] = {.lex_state = 13}, - [2030] = {.lex_state = 26}, - [2031] = {.lex_state = 20}, - [2032] = {.lex_state = 13}, - [2033] = {.lex_state = 26}, - [2034] = {.lex_state = 16}, - [2035] = {.lex_state = 26}, + [2026] = {.lex_state = 16}, + [2027] = {.lex_state = 20}, + [2028] = {.lex_state = 22}, + [2029] = {.lex_state = 15}, + [2030] = {.lex_state = 15}, + [2031] = {.lex_state = 16}, + [2032] = {.lex_state = 15}, + [2033] = {.lex_state = 16}, + [2034] = {.lex_state = 22}, + [2035] = {.lex_state = 13}, [2036] = {.lex_state = 13}, [2037] = {.lex_state = 13}, - [2038] = {.lex_state = 26}, - [2039] = {.lex_state = 15}, - [2040] = {.lex_state = 16}, - [2041] = {.lex_state = 15}, - [2042] = {.lex_state = 26}, - [2043] = {.lex_state = 15}, - [2044] = {.lex_state = 15}, + [2038] = {.lex_state = 16}, + [2039] = {.lex_state = 26}, + [2040] = {.lex_state = 13}, + [2041] = {.lex_state = 20}, + [2042] = {.lex_state = 15}, + [2043] = {.lex_state = 20}, + [2044] = {.lex_state = 13}, [2045] = {.lex_state = 13}, [2046] = {.lex_state = 15}, - [2047] = {.lex_state = 26}, + [2047] = {.lex_state = 15}, [2048] = {.lex_state = 26}, - [2049] = {.lex_state = 16}, - [2050] = {.lex_state = 26}, - [2051] = {.lex_state = 26}, + [2049] = {.lex_state = 15}, + [2050] = {.lex_state = 13}, + [2051] = {.lex_state = 13}, [2052] = {.lex_state = 15}, [2053] = {.lex_state = 13}, - [2054] = {.lex_state = 22}, - [2055] = {.lex_state = 26}, + [2054] = {.lex_state = 13}, + [2055] = {.lex_state = 13}, [2056] = {.lex_state = 13}, - [2057] = {.lex_state = 26}, - [2058] = {.lex_state = 13}, - [2059] = {.lex_state = 26}, + [2057] = {.lex_state = 13}, + [2058] = {.lex_state = 15}, + [2059] = {.lex_state = 13}, [2060] = {.lex_state = 26}, [2061] = {.lex_state = 26}, - [2062] = {.lex_state = 15}, + [2062] = {.lex_state = 13}, [2063] = {.lex_state = 26}, [2064] = {.lex_state = 26}, [2065] = {.lex_state = 26}, [2066] = {.lex_state = 26}, [2067] = {.lex_state = 26}, [2068] = {.lex_state = 26}, - [2069] = {.lex_state = 7}, + [2069] = {.lex_state = 26}, [2070] = {.lex_state = 26}, - [2071] = {.lex_state = 13}, + [2071] = {.lex_state = 26}, [2072] = {.lex_state = 26}, - [2073] = {.lex_state = 26}, - [2074] = {.lex_state = 26}, + [2073] = {.lex_state = 13}, + [2074] = {.lex_state = 22}, [2075] = {.lex_state = 26}, - [2076] = {.lex_state = 13}, + [2076] = {.lex_state = 7}, [2077] = {.lex_state = 26}, - [2078] = {.lex_state = 15}, - [2079] = {.lex_state = 15}, + [2078] = {.lex_state = 26}, + [2079] = {.lex_state = 26}, [2080] = {.lex_state = 26}, [2081] = {.lex_state = 26}, - [2082] = {.lex_state = 22}, + [2082] = {.lex_state = 26}, [2083] = {.lex_state = 26}, [2084] = {.lex_state = 26}, [2085] = {.lex_state = 26}, @@ -16426,77 +16484,77 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2088] = {.lex_state = 26}, [2089] = {.lex_state = 26}, [2090] = {.lex_state = 26}, - [2091] = {.lex_state = 26}, - [2092] = {.lex_state = 15}, - [2093] = {.lex_state = 26}, - [2094] = {.lex_state = 13}, - [2095] = {.lex_state = 13}, + [2091] = {.lex_state = 22}, + [2092] = {.lex_state = 26}, + [2093] = {.lex_state = 15}, + [2094] = {.lex_state = 22}, + [2095] = {.lex_state = 15}, [2096] = {.lex_state = 13}, [2097] = {.lex_state = 15}, - [2098] = {.lex_state = 68}, - [2099] = {.lex_state = 3}, - [2100] = {.lex_state = 16}, - [2101] = {.lex_state = 16}, - [2102] = {.lex_state = 7}, - [2103] = {.lex_state = 13}, - [2104] = {.lex_state = 13}, - [2105] = {.lex_state = 16}, - [2106] = {.lex_state = 13}, - [2107] = {.lex_state = 13}, - [2108] = {.lex_state = 22}, - [2109] = {.lex_state = 13}, - [2110] = {.lex_state = 13}, - [2111] = {.lex_state = 13}, - [2112] = {.lex_state = 3}, - [2113] = {.lex_state = 13}, - [2114] = {.lex_state = 13}, - [2115] = {.lex_state = 13}, - [2116] = {.lex_state = 3}, - [2117] = {.lex_state = 13}, + [2098] = {.lex_state = 13}, + [2099] = {.lex_state = 26}, + [2100] = {.lex_state = 26}, + [2101] = {.lex_state = 13}, + [2102] = {.lex_state = 13}, + [2103] = {.lex_state = 26}, + [2104] = {.lex_state = 16}, + [2105] = {.lex_state = 26}, + [2106] = {.lex_state = 26}, + [2107] = {.lex_state = 26}, + [2108] = {.lex_state = 15}, + [2109] = {.lex_state = 26}, + [2110] = {.lex_state = 26}, + [2111] = {.lex_state = 26}, + [2112] = {.lex_state = 26}, + [2113] = {.lex_state = 15}, + [2114] = {.lex_state = 22}, + [2115] = {.lex_state = 16}, + [2116] = {.lex_state = 15}, + [2117] = {.lex_state = 7}, [2118] = {.lex_state = 13}, - [2119] = {.lex_state = 22}, + [2119] = {.lex_state = 16}, [2120] = {.lex_state = 13}, [2121] = {.lex_state = 15}, - [2122] = {.lex_state = 15}, - [2123] = {.lex_state = 13}, + [2122] = {.lex_state = 16}, + [2123] = {.lex_state = 15}, [2124] = {.lex_state = 13}, - [2125] = {.lex_state = 13}, - [2126] = {.lex_state = 22}, + [2125] = {.lex_state = 15}, + [2126] = {.lex_state = 13}, [2127] = {.lex_state = 13}, [2128] = {.lex_state = 13}, - [2129] = {.lex_state = 16}, - [2130] = {.lex_state = 15}, + [2129] = {.lex_state = 13}, + [2130] = {.lex_state = 13}, [2131] = {.lex_state = 13}, - [2132] = {.lex_state = 13}, - [2133] = {.lex_state = 15}, - [2134] = {.lex_state = 13}, - [2135] = {.lex_state = 7}, + [2132] = {.lex_state = 15}, + [2133] = {.lex_state = 13}, + [2134] = {.lex_state = 7}, + [2135] = {.lex_state = 13}, [2136] = {.lex_state = 15}, [2137] = {.lex_state = 13}, - [2138] = {.lex_state = 7}, - [2139] = {.lex_state = 13}, + [2138] = {.lex_state = 15}, + [2139] = {.lex_state = 3}, [2140] = {.lex_state = 13}, [2141] = {.lex_state = 13}, - [2142] = {.lex_state = 22}, + [2142] = {.lex_state = 15}, [2143] = {.lex_state = 13}, - [2144] = {.lex_state = 7}, - [2145] = {.lex_state = 15}, - [2146] = {.lex_state = 15}, - [2147] = {.lex_state = 13}, - [2148] = {.lex_state = 15}, + [2144] = {.lex_state = 13}, + [2145] = {.lex_state = 22}, + [2146] = {.lex_state = 7}, + [2147] = {.lex_state = 16}, + [2148] = {.lex_state = 13}, [2149] = {.lex_state = 13}, [2150] = {.lex_state = 13}, - [2151] = {.lex_state = 13}, + [2151] = {.lex_state = 7}, [2152] = {.lex_state = 13}, - [2153] = {.lex_state = 16}, + [2153] = {.lex_state = 13}, [2154] = {.lex_state = 13}, [2155] = {.lex_state = 13}, - [2156] = {.lex_state = 13}, - [2157] = {.lex_state = 13}, + [2156] = {.lex_state = 3}, + [2157] = {.lex_state = 16}, [2158] = {.lex_state = 13}, - [2159] = {.lex_state = 13}, - [2160] = {.lex_state = 13}, - [2161] = {.lex_state = 13}, + [2159] = {.lex_state = 3}, + [2160] = {.lex_state = 68}, + [2161] = {.lex_state = 15}, [2162] = {.lex_state = 13}, [2163] = {.lex_state = 13}, [2164] = {.lex_state = 13}, @@ -16504,81 +16562,81 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2166] = {.lex_state = 13}, [2167] = {.lex_state = 13}, [2168] = {.lex_state = 13}, - [2169] = {.lex_state = 22}, + [2169] = {.lex_state = 13}, [2170] = {.lex_state = 22}, - [2171] = {.lex_state = 20}, - [2172] = {.lex_state = 13}, + [2171] = {.lex_state = 22}, + [2172] = {.lex_state = 20}, [2173] = {.lex_state = 13}, [2174] = {.lex_state = 13}, [2175] = {.lex_state = 13}, [2176] = {.lex_state = 13}, [2177] = {.lex_state = 13}, - [2178] = {.lex_state = 22}, + [2178] = {.lex_state = 13}, [2179] = {.lex_state = 13}, - [2180] = {.lex_state = 13}, - [2181] = {.lex_state = 7}, + [2180] = {.lex_state = 22}, + [2181] = {.lex_state = 13}, [2182] = {.lex_state = 13}, [2183] = {.lex_state = 13}, [2184] = {.lex_state = 13}, [2185] = {.lex_state = 13}, - [2186] = {.lex_state = 13}, - [2187] = {.lex_state = 22}, - [2188] = {.lex_state = 22}, - [2189] = {.lex_state = 13}, - [2190] = {.lex_state = 22}, + [2186] = {.lex_state = 22}, + [2187] = {.lex_state = 13}, + [2188] = {.lex_state = 13}, + [2189] = {.lex_state = 22}, + [2190] = {.lex_state = 13}, [2191] = {.lex_state = 13}, [2192] = {.lex_state = 13}, [2193] = {.lex_state = 13}, [2194] = {.lex_state = 13}, - [2195] = {.lex_state = 22}, + [2195] = {.lex_state = 13}, [2196] = {.lex_state = 13}, [2197] = {.lex_state = 13}, [2198] = {.lex_state = 13}, - [2199] = {.lex_state = 22}, + [2199] = {.lex_state = 7}, [2200] = {.lex_state = 13}, [2201] = {.lex_state = 13}, [2202] = {.lex_state = 13}, - [2203] = {.lex_state = 22}, - [2204] = {.lex_state = 13}, - [2205] = {.lex_state = 22}, - [2206] = {.lex_state = 13}, + [2203] = {.lex_state = 13}, + [2204] = {.lex_state = 22}, + [2205] = {.lex_state = 13}, + [2206] = {.lex_state = 22}, [2207] = {.lex_state = 13}, - [2208] = {.lex_state = 22}, + [2208] = {.lex_state = 13}, [2209] = {.lex_state = 13}, [2210] = {.lex_state = 13}, - [2211] = {.lex_state = 13}, + [2211] = {.lex_state = 22}, [2212] = {.lex_state = 13}, - [2213] = {.lex_state = 13}, + [2213] = {.lex_state = 22}, [2214] = {.lex_state = 13}, - [2215] = {.lex_state = 68}, - [2216] = {.lex_state = 68}, - [2217] = {.lex_state = 13}, - [2218] = {.lex_state = 13}, + [2215] = {.lex_state = 13}, + [2216] = {.lex_state = 22}, + [2217] = {.lex_state = 22}, + [2218] = {.lex_state = 68}, [2219] = {.lex_state = 68}, - [2220] = {.lex_state = 13}, - [2221] = {.lex_state = 15}, - [2222] = {.lex_state = 22}, - [2223] = {.lex_state = 16}, - [2224] = {.lex_state = 7}, + [2220] = {.lex_state = 15}, + [2221] = {.lex_state = 68}, + [2222] = {.lex_state = 68}, + [2223] = {.lex_state = 13}, + [2224] = {.lex_state = 13}, [2225] = {.lex_state = 22}, - [2226] = {.lex_state = 15}, - [2227] = {.lex_state = 68}, - [2228] = {.lex_state = 68}, + [2226] = {.lex_state = 68}, + [2227] = {.lex_state = 1}, + [2228] = {.lex_state = 22}, [2229] = {.lex_state = 7}, [2230] = {.lex_state = 1}, - [2231] = {.lex_state = 68}, - [2232] = {.lex_state = 68}, - [2233] = {.lex_state = 68}, + [2231] = {.lex_state = 13}, + [2232] = {.lex_state = 22}, + [2233] = {.lex_state = 13}, [2234] = {.lex_state = 68}, - [2235] = {.lex_state = 68}, - [2236] = {.lex_state = 68}, - [2237] = {.lex_state = 68}, + [2235] = {.lex_state = 22}, + [2236] = {.lex_state = 22}, + [2237] = {.lex_state = 22}, [2238] = {.lex_state = 68}, - [2239] = {.lex_state = 1}, - [2240] = {.lex_state = 13}, - [2241] = {.lex_state = 68}, + [2239] = {.lex_state = 68}, + [2240] = {.lex_state = 68}, + [2241] = {.lex_state = 13}, [2242] = {.lex_state = 68}, - [2243] = {.lex_state = 13}, + [2243] = {.lex_state = 16}, [2244] = {.lex_state = 68}, [2245] = {.lex_state = 68}, [2246] = {.lex_state = 68}, @@ -16587,484 +16645,484 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2249] = {.lex_state = 68}, [2250] = {.lex_state = 68}, [2251] = {.lex_state = 68}, - [2252] = {.lex_state = 22}, - [2253] = {.lex_state = 22}, - [2254] = {.lex_state = 13}, - [2255] = {.lex_state = 22}, - [2256] = {.lex_state = 22}, - [2257] = {.lex_state = 22}, - [2258] = {.lex_state = 22}, - [2259] = {.lex_state = 13}, + [2252] = {.lex_state = 68}, + [2253] = {.lex_state = 68}, + [2254] = {.lex_state = 68}, + [2255] = {.lex_state = 68}, + [2256] = {.lex_state = 7}, + [2257] = {.lex_state = 68}, + [2258] = {.lex_state = 68}, + [2259] = {.lex_state = 68}, [2260] = {.lex_state = 68}, [2261] = {.lex_state = 68}, - [2262] = {.lex_state = 13}, + [2262] = {.lex_state = 68}, [2263] = {.lex_state = 13}, - [2264] = {.lex_state = 68}, - [2265] = {.lex_state = 68}, - [2266] = {.lex_state = 13}, - [2267] = {.lex_state = 68}, + [2264] = {.lex_state = 13}, + [2265] = {.lex_state = 13}, + [2266] = {.lex_state = 1}, + [2267] = {.lex_state = 22}, [2268] = {.lex_state = 68}, - [2269] = {.lex_state = 1}, - [2270] = {.lex_state = 7}, - [2271] = {.lex_state = 68}, + [2269] = {.lex_state = 7}, + [2270] = {.lex_state = 68}, + [2271] = {.lex_state = 13}, [2272] = {.lex_state = 13}, - [2273] = {.lex_state = 16}, + [2273] = {.lex_state = 15}, [2274] = {.lex_state = 13}, - [2275] = {.lex_state = 26}, + [2275] = {.lex_state = 13}, [2276] = {.lex_state = 13}, - [2277] = {.lex_state = 13}, + [2277] = {.lex_state = 12}, [2278] = {.lex_state = 13}, [2279] = {.lex_state = 13}, [2280] = {.lex_state = 13}, [2281] = {.lex_state = 13}, - [2282] = {.lex_state = 68}, - [2283] = {.lex_state = 13}, + [2282] = {.lex_state = 16}, + [2283] = {.lex_state = 1}, [2284] = {.lex_state = 13}, [2285] = {.lex_state = 13}, - [2286] = {.lex_state = 13}, + [2286] = {.lex_state = 20}, [2287] = {.lex_state = 13}, - [2288] = {.lex_state = 13}, + [2288] = {.lex_state = 12}, [2289] = {.lex_state = 13}, - [2290] = {.lex_state = 1}, - [2291] = {.lex_state = 13}, + [2290] = {.lex_state = 13}, + [2291] = {.lex_state = 20}, [2292] = {.lex_state = 13}, [2293] = {.lex_state = 13}, - [2294] = {.lex_state = 13}, - [2295] = {.lex_state = 13}, + [2294] = {.lex_state = 17}, + [2295] = {.lex_state = 16}, [2296] = {.lex_state = 13}, [2297] = {.lex_state = 13}, [2298] = {.lex_state = 13}, [2299] = {.lex_state = 13}, [2300] = {.lex_state = 13}, - [2301] = {.lex_state = 26}, - [2302] = {.lex_state = 16}, - [2303] = {.lex_state = 13}, - [2304] = {.lex_state = 26}, - [2305] = {.lex_state = 16}, - [2306] = {.lex_state = 22}, - [2307] = {.lex_state = 13}, + [2301] = {.lex_state = 13}, + [2302] = {.lex_state = 13}, + [2303] = {.lex_state = 26}, + [2304] = {.lex_state = 13}, + [2305] = {.lex_state = 13}, + [2306] = {.lex_state = 13}, + [2307] = {.lex_state = 1}, [2308] = {.lex_state = 26}, [2309] = {.lex_state = 26}, - [2310] = {.lex_state = 13}, - [2311] = {.lex_state = 1}, - [2312] = {.lex_state = 1}, + [2310] = {.lex_state = 26}, + [2311] = {.lex_state = 13}, + [2312] = {.lex_state = 68}, [2313] = {.lex_state = 13}, [2314] = {.lex_state = 13}, [2315] = {.lex_state = 17}, - [2316] = {.lex_state = 17}, - [2317] = {.lex_state = 13}, + [2316] = {.lex_state = 13}, + [2317] = {.lex_state = 26}, [2318] = {.lex_state = 13}, [2319] = {.lex_state = 13}, [2320] = {.lex_state = 26}, - [2321] = {.lex_state = 13}, + [2321] = {.lex_state = 1}, [2322] = {.lex_state = 13}, [2323] = {.lex_state = 13}, - [2324] = {.lex_state = 13}, - [2325] = {.lex_state = 17}, + [2324] = {.lex_state = 68}, + [2325] = {.lex_state = 13}, [2326] = {.lex_state = 13}, - [2327] = {.lex_state = 13}, - [2328] = {.lex_state = 26}, - [2329] = {.lex_state = 13}, + [2327] = {.lex_state = 1}, + [2328] = {.lex_state = 13}, + [2329] = {.lex_state = 16}, [2330] = {.lex_state = 13}, [2331] = {.lex_state = 13}, [2332] = {.lex_state = 13}, - [2333] = {.lex_state = 13}, + [2333] = {.lex_state = 17}, [2334] = {.lex_state = 13}, - [2335] = {.lex_state = 13}, - [2336] = {.lex_state = 13}, - [2337] = {.lex_state = 20}, - [2338] = {.lex_state = 20}, + [2335] = {.lex_state = 26}, + [2336] = {.lex_state = 26}, + [2337] = {.lex_state = 26}, + [2338] = {.lex_state = 16}, [2339] = {.lex_state = 13}, [2340] = {.lex_state = 13}, - [2341] = {.lex_state = 13}, - [2342] = {.lex_state = 1}, - [2343] = {.lex_state = 12}, - [2344] = {.lex_state = 13}, + [2341] = {.lex_state = 26}, + [2342] = {.lex_state = 13}, + [2343] = {.lex_state = 13}, + [2344] = {.lex_state = 26}, [2345] = {.lex_state = 13}, [2346] = {.lex_state = 13}, - [2347] = {.lex_state = 13}, - [2348] = {.lex_state = 16}, - [2349] = {.lex_state = 16}, - [2350] = {.lex_state = 26}, + [2347] = {.lex_state = 16}, + [2348] = {.lex_state = 26}, + [2349] = {.lex_state = 13}, + [2350] = {.lex_state = 13}, [2351] = {.lex_state = 16}, - [2352] = {.lex_state = 12}, - [2353] = {.lex_state = 17}, + [2352] = {.lex_state = 17}, + [2353] = {.lex_state = 13}, [2354] = {.lex_state = 13}, [2355] = {.lex_state = 13}, [2356] = {.lex_state = 13}, [2357] = {.lex_state = 13}, - [2358] = {.lex_state = 13}, - [2359] = {.lex_state = 17}, - [2360] = {.lex_state = 17}, - [2361] = {.lex_state = 3}, - [2362] = {.lex_state = 7}, - [2363] = {.lex_state = 7}, - [2364] = {.lex_state = 13}, + [2358] = {.lex_state = 26}, + [2359] = {.lex_state = 13}, + [2360] = {.lex_state = 26}, + [2361] = {.lex_state = 26}, + [2362] = {.lex_state = 26}, + [2363] = {.lex_state = 17}, + [2364] = {.lex_state = 22}, [2365] = {.lex_state = 13}, - [2366] = {.lex_state = 26}, - [2367] = {.lex_state = 26}, - [2368] = {.lex_state = 13}, - [2369] = {.lex_state = 7}, + [2366] = {.lex_state = 13}, + [2367] = {.lex_state = 13}, + [2368] = {.lex_state = 17}, + [2369] = {.lex_state = 13}, [2370] = {.lex_state = 13}, - [2371] = {.lex_state = 7}, - [2372] = {.lex_state = 1}, - [2373] = {.lex_state = 3}, - [2374] = {.lex_state = 7}, - [2375] = {.lex_state = 7}, - [2376] = {.lex_state = 7}, + [2371] = {.lex_state = 13}, + [2372] = {.lex_state = 7}, + [2373] = {.lex_state = 13}, + [2374] = {.lex_state = 26}, + [2375] = {.lex_state = 171}, + [2376] = {.lex_state = 68}, [2377] = {.lex_state = 7}, - [2378] = {.lex_state = 7}, - [2379] = {.lex_state = 26}, - [2380] = {.lex_state = 26}, + [2378] = {.lex_state = 13}, + [2379] = {.lex_state = 7}, + [2380] = {.lex_state = 13}, [2381] = {.lex_state = 26}, - [2382] = {.lex_state = 26}, - [2383] = {.lex_state = 26}, + [2382] = {.lex_state = 7}, + [2383] = {.lex_state = 7}, [2384] = {.lex_state = 26}, [2385] = {.lex_state = 26}, [2386] = {.lex_state = 68}, - [2387] = {.lex_state = 26}, - [2388] = {.lex_state = 13}, - [2389] = {.lex_state = 13}, - [2390] = {.lex_state = 26}, - [2391] = {.lex_state = 13}, + [2387] = {.lex_state = 7}, + [2388] = {.lex_state = 7}, + [2389] = {.lex_state = 26}, + [2390] = {.lex_state = 7}, + [2391] = {.lex_state = 7}, [2392] = {.lex_state = 26}, [2393] = {.lex_state = 26}, - [2394] = {.lex_state = 13}, + [2394] = {.lex_state = 26}, [2395] = {.lex_state = 26}, - [2396] = {.lex_state = 7}, - [2397] = {.lex_state = 26}, - [2398] = {.lex_state = 68}, + [2396] = {.lex_state = 26}, + [2397] = {.lex_state = 7}, + [2398] = {.lex_state = 26}, [2399] = {.lex_state = 26}, - [2400] = {.lex_state = 26}, + [2400] = {.lex_state = 7}, [2401] = {.lex_state = 26}, [2402] = {.lex_state = 13}, - [2403] = {.lex_state = 13}, + [2403] = {.lex_state = 1}, [2404] = {.lex_state = 26}, - [2405] = {.lex_state = 7}, - [2406] = {.lex_state = 26}, + [2405] = {.lex_state = 3}, + [2406] = {.lex_state = 7}, [2407] = {.lex_state = 13}, - [2408] = {.lex_state = 13}, - [2409] = {.lex_state = 13}, - [2410] = {.lex_state = 1}, - [2411] = {.lex_state = 68}, + [2408] = {.lex_state = 7}, + [2409] = {.lex_state = 26}, + [2410] = {.lex_state = 13}, + [2411] = {.lex_state = 26}, [2412] = {.lex_state = 7}, - [2413] = {.lex_state = 26}, - [2414] = {.lex_state = 7}, - [2415] = {.lex_state = 171}, + [2413] = {.lex_state = 7}, + [2414] = {.lex_state = 13}, + [2415] = {.lex_state = 7}, [2416] = {.lex_state = 26}, - [2417] = {.lex_state = 7}, - [2418] = {.lex_state = 7}, - [2419] = {.lex_state = 26}, - [2420] = {.lex_state = 7}, - [2421] = {.lex_state = 7}, - [2422] = {.lex_state = 13}, - [2423] = {.lex_state = 13}, - [2424] = {.lex_state = 13}, - [2425] = {.lex_state = 26}, + [2417] = {.lex_state = 13}, + [2418] = {.lex_state = 13}, + [2419] = {.lex_state = 13}, + [2420] = {.lex_state = 13}, + [2421] = {.lex_state = 26}, + [2422] = {.lex_state = 7}, + [2423] = {.lex_state = 7}, + [2424] = {.lex_state = 7}, + [2425] = {.lex_state = 7}, [2426] = {.lex_state = 13}, [2427] = {.lex_state = 7}, [2428] = {.lex_state = 7}, [2429] = {.lex_state = 7}, - [2430] = {.lex_state = 7}, - [2431] = {.lex_state = 13}, - [2432] = {.lex_state = 3}, - [2433] = {.lex_state = 13}, - [2434] = {.lex_state = 7}, - [2435] = {.lex_state = 26}, + [2430] = {.lex_state = 26}, + [2431] = {.lex_state = 26}, + [2432] = {.lex_state = 13}, + [2433] = {.lex_state = 26}, + [2434] = {.lex_state = 13}, + [2435] = {.lex_state = 13}, [2436] = {.lex_state = 7}, - [2437] = {.lex_state = 7}, - [2438] = {.lex_state = 13}, - [2439] = {.lex_state = 7}, - [2440] = {.lex_state = 7}, + [2437] = {.lex_state = 26}, + [2438] = {.lex_state = 7}, + [2439] = {.lex_state = 13}, + [2440] = {.lex_state = 26}, [2441] = {.lex_state = 7}, [2442] = {.lex_state = 7}, - [2443] = {.lex_state = 26}, - [2444] = {.lex_state = 13}, - [2445] = {.lex_state = 3}, - [2446] = {.lex_state = 7}, - [2447] = {.lex_state = 7}, - [2448] = {.lex_state = 7}, - [2449] = {.lex_state = 7}, - [2450] = {.lex_state = 7}, + [2443] = {.lex_state = 3}, + [2444] = {.lex_state = 3}, + [2445] = {.lex_state = 26}, + [2446] = {.lex_state = 26}, + [2447] = {.lex_state = 3}, + [2448] = {.lex_state = 26}, + [2449] = {.lex_state = 26}, + [2450] = {.lex_state = 13}, [2451] = {.lex_state = 13}, - [2452] = {.lex_state = 13}, - [2453] = {.lex_state = 7, .external_lex_state = 3}, - [2454] = {.lex_state = 7}, - [2455] = {.lex_state = 1}, - [2456] = {.lex_state = 28}, - [2457] = {.lex_state = 28}, - [2458] = {.lex_state = 3}, - [2459] = {.lex_state = 7}, - [2460] = {.lex_state = 3}, - [2461] = {.lex_state = 7}, - [2462] = {.lex_state = 3}, - [2463] = {.lex_state = 68}, - [2464] = {.lex_state = 28}, - [2465] = {.lex_state = 3}, + [2452] = {.lex_state = 26}, + [2453] = {.lex_state = 26}, + [2454] = {.lex_state = 26}, + [2455] = {.lex_state = 13}, + [2456] = {.lex_state = 26}, + [2457] = {.lex_state = 26}, + [2458] = {.lex_state = 7}, + [2459] = {.lex_state = 1}, + [2460] = {.lex_state = 26}, + [2461] = {.lex_state = 26}, + [2462] = {.lex_state = 7}, + [2463] = {.lex_state = 13}, + [2464] = {.lex_state = 26}, + [2465] = {.lex_state = 26}, [2466] = {.lex_state = 7}, - [2467] = {.lex_state = 13}, - [2468] = {.lex_state = 1}, - [2469] = {.lex_state = 13}, - [2470] = {.lex_state = 7}, - [2471] = {.lex_state = 13}, - [2472] = {.lex_state = 1}, - [2473] = {.lex_state = 26}, - [2474] = {.lex_state = 7, .external_lex_state = 4}, - [2475] = {.lex_state = 7}, - [2476] = {.lex_state = 68}, + [2467] = {.lex_state = 7}, + [2468] = {.lex_state = 7}, + [2469] = {.lex_state = 26}, + [2470] = {.lex_state = 26}, + [2471] = {.lex_state = 7}, + [2472] = {.lex_state = 7, .external_lex_state = 3}, + [2473] = {.lex_state = 13}, + [2474] = {.lex_state = 13}, + [2475] = {.lex_state = 26}, + [2476] = {.lex_state = 13}, [2477] = {.lex_state = 13}, - [2478] = {.lex_state = 26}, - [2479] = {.lex_state = 7}, + [2478] = {.lex_state = 13}, + [2479] = {.lex_state = 3}, [2480] = {.lex_state = 7}, - [2481] = {.lex_state = 7, .external_lex_state = 4}, - [2482] = {.lex_state = 7}, - [2483] = {.lex_state = 7}, + [2481] = {.lex_state = 13}, + [2482] = {.lex_state = 7, .external_lex_state = 4}, + [2483] = {.lex_state = 3}, [2484] = {.lex_state = 7}, - [2485] = {.lex_state = 68}, + [2485] = {.lex_state = 7}, [2486] = {.lex_state = 7}, - [2487] = {.lex_state = 7}, - [2488] = {.lex_state = 28}, - [2489] = {.lex_state = 68}, - [2490] = {.lex_state = 3}, - [2491] = {.lex_state = 7}, + [2487] = {.lex_state = 68}, + [2488] = {.lex_state = 13}, + [2489] = {.lex_state = 13}, + [2490] = {.lex_state = 7}, + [2491] = {.lex_state = 3}, [2492] = {.lex_state = 13}, - [2493] = {.lex_state = 15}, - [2494] = {.lex_state = 7}, - [2495] = {.lex_state = 68}, - [2496] = {.lex_state = 68}, - [2497] = {.lex_state = 7}, + [2493] = {.lex_state = 3}, + [2494] = {.lex_state = 68}, + [2495] = {.lex_state = 7, .external_lex_state = 4}, + [2496] = {.lex_state = 13}, + [2497] = {.lex_state = 15}, [2498] = {.lex_state = 13}, [2499] = {.lex_state = 7}, [2500] = {.lex_state = 68}, - [2501] = {.lex_state = 13}, - [2502] = {.lex_state = 26}, + [2501] = {.lex_state = 7}, + [2502] = {.lex_state = 7}, [2503] = {.lex_state = 13}, - [2504] = {.lex_state = 13}, + [2504] = {.lex_state = 7, .external_lex_state = 4}, [2505] = {.lex_state = 3}, [2506] = {.lex_state = 68}, - [2507] = {.lex_state = 3}, - [2508] = {.lex_state = 3}, - [2509] = {.lex_state = 1}, - [2510] = {.lex_state = 7}, - [2511] = {.lex_state = 26}, + [2507] = {.lex_state = 16}, + [2508] = {.lex_state = 16}, + [2509] = {.lex_state = 16}, + [2510] = {.lex_state = 16}, + [2511] = {.lex_state = 3}, [2512] = {.lex_state = 7}, [2513] = {.lex_state = 68}, [2514] = {.lex_state = 68}, - [2515] = {.lex_state = 3}, - [2516] = {.lex_state = 3}, - [2517] = {.lex_state = 3}, - [2518] = {.lex_state = 3}, - [2519] = {.lex_state = 3}, - [2520] = {.lex_state = 3}, - [2521] = {.lex_state = 3}, + [2515] = {.lex_state = 7}, + [2516] = {.lex_state = 16}, + [2517] = {.lex_state = 16}, + [2518] = {.lex_state = 16}, + [2519] = {.lex_state = 16}, + [2520] = {.lex_state = 7}, + [2521] = {.lex_state = 26}, [2522] = {.lex_state = 3}, - [2523] = {.lex_state = 68}, - [2524] = {.lex_state = 68}, - [2525] = {.lex_state = 7}, + [2523] = {.lex_state = 3}, + [2524] = {.lex_state = 3}, + [2525] = {.lex_state = 68}, [2526] = {.lex_state = 3}, [2527] = {.lex_state = 3}, - [2528] = {.lex_state = 68}, - [2529] = {.lex_state = 16}, - [2530] = {.lex_state = 16}, - [2531] = {.lex_state = 16}, - [2532] = {.lex_state = 16}, - [2533] = {.lex_state = 7}, - [2534] = {.lex_state = 3}, - [2535] = {.lex_state = 3}, - [2536] = {.lex_state = 7, .external_lex_state = 4}, - [2537] = {.lex_state = 16}, - [2538] = {.lex_state = 68}, - [2539] = {.lex_state = 16}, - [2540] = {.lex_state = 7, .external_lex_state = 4}, - [2541] = {.lex_state = 7}, - [2542] = {.lex_state = 68}, - [2543] = {.lex_state = 16}, - [2544] = {.lex_state = 13}, - [2545] = {.lex_state = 3}, - [2546] = {.lex_state = 3}, - [2547] = {.lex_state = 3}, - [2548] = {.lex_state = 68}, - [2549] = {.lex_state = 7, .external_lex_state = 4}, + [2528] = {.lex_state = 3}, + [2529] = {.lex_state = 13}, + [2530] = {.lex_state = 7}, + [2531] = {.lex_state = 13}, + [2532] = {.lex_state = 3}, + [2533] = {.lex_state = 68}, + [2534] = {.lex_state = 68}, + [2535] = {.lex_state = 13}, + [2536] = {.lex_state = 68}, + [2537] = {.lex_state = 13}, + [2538] = {.lex_state = 28}, + [2539] = {.lex_state = 7}, + [2540] = {.lex_state = 68}, + [2541] = {.lex_state = 13}, + [2542] = {.lex_state = 28}, + [2543] = {.lex_state = 26}, + [2544] = {.lex_state = 26}, + [2545] = {.lex_state = 68}, + [2546] = {.lex_state = 68}, + [2547] = {.lex_state = 68}, + [2548] = {.lex_state = 7}, + [2549] = {.lex_state = 68}, [2550] = {.lex_state = 68}, - [2551] = {.lex_state = 7}, - [2552] = {.lex_state = 16}, - [2553] = {.lex_state = 7}, - [2554] = {.lex_state = 7, .external_lex_state = 4}, + [2551] = {.lex_state = 28}, + [2552] = {.lex_state = 68}, + [2553] = {.lex_state = 68}, + [2554] = {.lex_state = 3}, [2555] = {.lex_state = 7}, - [2556] = {.lex_state = 7, .external_lex_state = 4}, + [2556] = {.lex_state = 7}, [2557] = {.lex_state = 7}, - [2558] = {.lex_state = 13}, - [2559] = {.lex_state = 7}, - [2560] = {.lex_state = 7}, - [2561] = {.lex_state = 3}, - [2562] = {.lex_state = 3}, + [2558] = {.lex_state = 7}, + [2559] = {.lex_state = 7, .external_lex_state = 4}, + [2560] = {.lex_state = 26}, + [2561] = {.lex_state = 7}, + [2562] = {.lex_state = 13}, [2563] = {.lex_state = 68}, - [2564] = {.lex_state = 7, .external_lex_state = 4}, - [2565] = {.lex_state = 13}, - [2566] = {.lex_state = 7}, - [2567] = {.lex_state = 7}, - [2568] = {.lex_state = 7}, - [2569] = {.lex_state = 68}, - [2570] = {.lex_state = 68}, - [2571] = {.lex_state = 7}, + [2564] = {.lex_state = 13}, + [2565] = {.lex_state = 7}, + [2566] = {.lex_state = 13}, + [2567] = {.lex_state = 1}, + [2568] = {.lex_state = 13}, + [2569] = {.lex_state = 7}, + [2570] = {.lex_state = 7}, + [2571] = {.lex_state = 68}, [2572] = {.lex_state = 26}, [2573] = {.lex_state = 7}, - [2574] = {.lex_state = 7, .external_lex_state = 4}, - [2575] = {.lex_state = 7}, - [2576] = {.lex_state = 7}, + [2574] = {.lex_state = 7}, + [2575] = {.lex_state = 13}, + [2576] = {.lex_state = 13}, [2577] = {.lex_state = 15}, [2578] = {.lex_state = 7}, - [2579] = {.lex_state = 7, .external_lex_state = 4}, - [2580] = {.lex_state = 68}, - [2581] = {.lex_state = 3}, - [2582] = {.lex_state = 68}, - [2583] = {.lex_state = 1}, - [2584] = {.lex_state = 7}, - [2585] = {.lex_state = 7}, - [2586] = {.lex_state = 68}, + [2579] = {.lex_state = 13}, + [2580] = {.lex_state = 7}, + [2581] = {.lex_state = 1}, + [2582] = {.lex_state = 7}, + [2583] = {.lex_state = 7, .external_lex_state = 4}, + [2584] = {.lex_state = 26}, + [2585] = {.lex_state = 7, .external_lex_state = 4}, + [2586] = {.lex_state = 1}, [2587] = {.lex_state = 68}, - [2588] = {.lex_state = 68}, - [2589] = {.lex_state = 68}, + [2588] = {.lex_state = 7}, + [2589] = {.lex_state = 3}, [2590] = {.lex_state = 7}, - [2591] = {.lex_state = 68}, - [2592] = {.lex_state = 7}, - [2593] = {.lex_state = 3}, - [2594] = {.lex_state = 3}, - [2595] = {.lex_state = 13}, - [2596] = {.lex_state = 3}, - [2597] = {.lex_state = 68}, + [2591] = {.lex_state = 26}, + [2592] = {.lex_state = 3}, + [2593] = {.lex_state = 7}, + [2594] = {.lex_state = 68}, + [2595] = {.lex_state = 28}, + [2596] = {.lex_state = 26}, + [2597] = {.lex_state = 7}, [2598] = {.lex_state = 13}, - [2599] = {.lex_state = 3}, - [2600] = {.lex_state = 68}, - [2601] = {.lex_state = 3}, - [2602] = {.lex_state = 7}, - [2603] = {.lex_state = 7, .external_lex_state = 4}, - [2604] = {.lex_state = 26}, - [2605] = {.lex_state = 7, .external_lex_state = 4}, + [2599] = {.lex_state = 7}, + [2600] = {.lex_state = 13}, + [2601] = {.lex_state = 68}, + [2602] = {.lex_state = 68}, + [2603] = {.lex_state = 3}, + [2604] = {.lex_state = 13}, + [2605] = {.lex_state = 7}, [2606] = {.lex_state = 7}, - [2607] = {.lex_state = 3}, - [2608] = {.lex_state = 68}, + [2607] = {.lex_state = 15}, + [2608] = {.lex_state = 7}, [2609] = {.lex_state = 7}, - [2610] = {.lex_state = 7}, + [2610] = {.lex_state = 3}, [2611] = {.lex_state = 68}, - [2612] = {.lex_state = 7}, - [2613] = {.lex_state = 15}, - [2614] = {.lex_state = 26}, - [2615] = {.lex_state = 3}, - [2616] = {.lex_state = 13}, - [2617] = {.lex_state = 3}, - [2618] = {.lex_state = 7}, + [2612] = {.lex_state = 13}, + [2613] = {.lex_state = 1}, + [2614] = {.lex_state = 7}, + [2615] = {.lex_state = 7}, + [2616] = {.lex_state = 68}, + [2617] = {.lex_state = 13}, + [2618] = {.lex_state = 13}, [2619] = {.lex_state = 7}, - [2620] = {.lex_state = 7, .external_lex_state = 4}, + [2620] = {.lex_state = 7}, [2621] = {.lex_state = 7}, - [2622] = {.lex_state = 3}, + [2622] = {.lex_state = 7}, [2623] = {.lex_state = 7}, - [2624] = {.lex_state = 13}, - [2625] = {.lex_state = 3}, - [2626] = {.lex_state = 13}, - [2627] = {.lex_state = 68}, - [2628] = {.lex_state = 7}, - [2629] = {.lex_state = 13}, + [2624] = {.lex_state = 7}, + [2625] = {.lex_state = 68}, + [2626] = {.lex_state = 68}, + [2627] = {.lex_state = 7, .external_lex_state = 4}, + [2628] = {.lex_state = 68}, + [2629] = {.lex_state = 7}, [2630] = {.lex_state = 68}, - [2631] = {.lex_state = 13}, - [2632] = {.lex_state = 68}, - [2633] = {.lex_state = 13}, - [2634] = {.lex_state = 26}, - [2635] = {.lex_state = 7}, + [2631] = {.lex_state = 7}, + [2632] = {.lex_state = 7}, + [2633] = {.lex_state = 7, .external_lex_state = 4}, + [2634] = {.lex_state = 7, .external_lex_state = 4}, + [2635] = {.lex_state = 7, .external_lex_state = 4}, [2636] = {.lex_state = 68}, - [2637] = {.lex_state = 7}, - [2638] = {.lex_state = 13}, - [2639] = {.lex_state = 7}, - [2640] = {.lex_state = 3}, - [2641] = {.lex_state = 68}, + [2637] = {.lex_state = 3}, + [2638] = {.lex_state = 68}, + [2639] = {.lex_state = 3}, + [2640] = {.lex_state = 68}, + [2641] = {.lex_state = 7}, [2642] = {.lex_state = 68}, - [2643] = {.lex_state = 13}, - [2644] = {.lex_state = 13}, + [2643] = {.lex_state = 7}, + [2644] = {.lex_state = 7}, [2645] = {.lex_state = 3}, [2646] = {.lex_state = 13}, - [2647] = {.lex_state = 13}, + [2647] = {.lex_state = 3}, [2648] = {.lex_state = 3}, - [2649] = {.lex_state = 68}, - [2650] = {.lex_state = 13}, + [2649] = {.lex_state = 3}, + [2650] = {.lex_state = 26}, [2651] = {.lex_state = 68}, - [2652] = {.lex_state = 26}, - [2653] = {.lex_state = 68}, + [2652] = {.lex_state = 3}, + [2653] = {.lex_state = 7}, [2654] = {.lex_state = 68}, - [2655] = {.lex_state = 68}, - [2656] = {.lex_state = 68}, - [2657] = {.lex_state = 7}, - [2658] = {.lex_state = 7}, + [2655] = {.lex_state = 13}, + [2656] = {.lex_state = 7, .external_lex_state = 4}, + [2657] = {.lex_state = 7, .external_lex_state = 4}, + [2658] = {.lex_state = 3}, [2659] = {.lex_state = 68}, [2660] = {.lex_state = 68}, - [2661] = {.lex_state = 13}, - [2662] = {.lex_state = 13}, - [2663] = {.lex_state = 13}, - [2664] = {.lex_state = 13}, + [2661] = {.lex_state = 68}, + [2662] = {.lex_state = 7}, + [2663] = {.lex_state = 68}, + [2664] = {.lex_state = 3}, [2665] = {.lex_state = 13}, [2666] = {.lex_state = 68}, - [2667] = {.lex_state = 13}, - [2668] = {.lex_state = 13}, - [2669] = {.lex_state = 13}, - [2670] = {.lex_state = 3}, - [2671] = {.lex_state = 13}, - [2672] = {.lex_state = 68}, - [2673] = {.lex_state = 13}, - [2674] = {.lex_state = 68}, + [2667] = {.lex_state = 3}, + [2668] = {.lex_state = 7}, + [2669] = {.lex_state = 3}, + [2670] = {.lex_state = 7, .external_lex_state = 4}, + [2671] = {.lex_state = 7}, + [2672] = {.lex_state = 3}, + [2673] = {.lex_state = 3}, + [2674] = {.lex_state = 3}, [2675] = {.lex_state = 3}, - [2676] = {.lex_state = 68}, - [2677] = {.lex_state = 13}, - [2678] = {.lex_state = 68}, + [2676] = {.lex_state = 3}, + [2677] = {.lex_state = 3}, + [2678] = {.lex_state = 13}, [2679] = {.lex_state = 68}, - [2680] = {.lex_state = 26}, - [2681] = {.lex_state = 3}, - [2682] = {.lex_state = 13}, - [2683] = {.lex_state = 3}, - [2684] = {.lex_state = 3}, - [2685] = {.lex_state = 13}, + [2680] = {.lex_state = 3}, + [2681] = {.lex_state = 68}, + [2682] = {.lex_state = 3}, + [2683] = {.lex_state = 68}, + [2684] = {.lex_state = 13}, + [2685] = {.lex_state = 68}, [2686] = {.lex_state = 13}, [2687] = {.lex_state = 3}, - [2688] = {.lex_state = 7}, - [2689] = {.lex_state = 13}, - [2690] = {.lex_state = 68}, - [2691] = {.lex_state = 68}, - [2692] = {.lex_state = 68}, + [2688] = {.lex_state = 3}, + [2689] = {.lex_state = 26}, + [2690] = {.lex_state = 3}, + [2691] = {.lex_state = 3}, + [2692] = {.lex_state = 13}, [2693] = {.lex_state = 13}, - [2694] = {.lex_state = 68}, - [2695] = {.lex_state = 68}, - [2696] = {.lex_state = 13}, - [2697] = {.lex_state = 13}, - [2698] = {.lex_state = 68}, - [2699] = {.lex_state = 3}, - [2700] = {.lex_state = 68}, - [2701] = {.lex_state = 68}, - [2702] = {.lex_state = 68}, - [2703] = {.lex_state = 3}, + [2694] = {.lex_state = 13}, + [2695] = {.lex_state = 13}, + [2696] = {.lex_state = 7}, + [2697] = {.lex_state = 68}, + [2698] = {.lex_state = 3}, + [2699] = {.lex_state = 68}, + [2700] = {.lex_state = 3}, + [2701] = {.lex_state = 3}, + [2702] = {.lex_state = 26}, + [2703] = {.lex_state = 13}, [2704] = {.lex_state = 3}, - [2705] = {.lex_state = 68}, + [2705] = {.lex_state = 26}, [2706] = {.lex_state = 68}, - [2707] = {.lex_state = 3}, - [2708] = {.lex_state = 68}, - [2709] = {.lex_state = 68}, - [2710] = {.lex_state = 68}, - [2711] = {.lex_state = 68}, - [2712] = {.lex_state = 68}, - [2713] = {.lex_state = 68}, - [2714] = {.lex_state = 13}, + [2707] = {.lex_state = 1}, + [2708] = {.lex_state = 7}, + [2709] = {.lex_state = 26}, + [2710] = {.lex_state = 13}, + [2711] = {.lex_state = 26}, + [2712] = {.lex_state = 13}, + [2713] = {.lex_state = 26}, + [2714] = {.lex_state = 68}, [2715] = {.lex_state = 68}, [2716] = {.lex_state = 68}, - [2717] = {.lex_state = 68}, + [2717] = {.lex_state = 3}, [2718] = {.lex_state = 68}, - [2719] = {.lex_state = 16}, - [2720] = {.lex_state = 16}, + [2719] = {.lex_state = 68}, + [2720] = {.lex_state = 68}, [2721] = {.lex_state = 68}, [2722] = {.lex_state = 68}, [2723] = {.lex_state = 68}, [2724] = {.lex_state = 68}, - [2725] = {.lex_state = 68}, - [2726] = {.lex_state = 68}, - [2727] = {.lex_state = 13}, - [2728] = {.lex_state = 3}, - [2729] = {.lex_state = 13}, + [2725] = {.lex_state = 13}, + [2726] = {.lex_state = 13}, + [2727] = {.lex_state = 3}, + [2728] = {.lex_state = 68}, + [2729] = {.lex_state = 68}, [2730] = {.lex_state = 68}, [2731] = {.lex_state = 68}, [2732] = {.lex_state = 68}, @@ -17072,65 +17130,65 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2734] = {.lex_state = 68}, [2735] = {.lex_state = 68}, [2736] = {.lex_state = 13}, - [2737] = {.lex_state = 68}, - [2738] = {.lex_state = 17}, + [2737] = {.lex_state = 7}, + [2738] = {.lex_state = 68}, [2739] = {.lex_state = 68}, [2740] = {.lex_state = 68}, [2741] = {.lex_state = 68}, [2742] = {.lex_state = 68}, - [2743] = {.lex_state = 68}, + [2743] = {.lex_state = 13}, [2744] = {.lex_state = 68}, [2745] = {.lex_state = 68}, - [2746] = {.lex_state = 68}, + [2746] = {.lex_state = 3}, [2747] = {.lex_state = 68}, [2748] = {.lex_state = 68}, [2749] = {.lex_state = 68}, - [2750] = {.lex_state = 68}, + [2750] = {.lex_state = 3}, [2751] = {.lex_state = 68}, [2752] = {.lex_state = 68}, - [2753] = {.lex_state = 68}, + [2753] = {.lex_state = 17}, [2754] = {.lex_state = 68}, - [2755] = {.lex_state = 13}, + [2755] = {.lex_state = 68}, [2756] = {.lex_state = 68}, [2757] = {.lex_state = 68}, - [2758] = {.lex_state = 68}, + [2758] = {.lex_state = 13}, [2759] = {.lex_state = 68}, [2760] = {.lex_state = 68}, - [2761] = {.lex_state = 17}, + [2761] = {.lex_state = 13}, [2762] = {.lex_state = 68}, [2763] = {.lex_state = 68}, [2764] = {.lex_state = 68}, - [2765] = {.lex_state = 16}, - [2766] = {.lex_state = 16}, - [2767] = {.lex_state = 16}, - [2768] = {.lex_state = 16}, - [2769] = {.lex_state = 16}, - [2770] = {.lex_state = 16}, + [2765] = {.lex_state = 68}, + [2766] = {.lex_state = 68}, + [2767] = {.lex_state = 17}, + [2768] = {.lex_state = 3}, + [2769] = {.lex_state = 68}, + [2770] = {.lex_state = 68}, [2771] = {.lex_state = 68}, [2772] = {.lex_state = 68}, [2773] = {.lex_state = 68}, [2774] = {.lex_state = 68}, [2775] = {.lex_state = 68}, - [2776] = {.lex_state = 16}, - [2777] = {.lex_state = 13}, - [2778] = {.lex_state = 13}, + [2776] = {.lex_state = 68}, + [2777] = {.lex_state = 68}, + [2778] = {.lex_state = 68}, [2779] = {.lex_state = 68}, - [2780] = {.lex_state = 16}, - [2781] = {.lex_state = 68}, + [2780] = {.lex_state = 68}, + [2781] = {.lex_state = 13}, [2782] = {.lex_state = 68}, - [2783] = {.lex_state = 68}, - [2784] = {.lex_state = 68}, + [2783] = {.lex_state = 13}, + [2784] = {.lex_state = 13}, [2785] = {.lex_state = 68}, - [2786] = {.lex_state = 68}, + [2786] = {.lex_state = 7, .external_lex_state = 4}, [2787] = {.lex_state = 68}, - [2788] = {.lex_state = 68}, - [2789] = {.lex_state = 13}, + [2788] = {.lex_state = 13}, + [2789] = {.lex_state = 68}, [2790] = {.lex_state = 68}, [2791] = {.lex_state = 68}, [2792] = {.lex_state = 68}, [2793] = {.lex_state = 68}, - [2794] = {.lex_state = 3}, - [2795] = {.lex_state = 13}, + [2794] = {.lex_state = 68}, + [2795] = {.lex_state = 68}, [2796] = {.lex_state = 68}, [2797] = {.lex_state = 68}, [2798] = {.lex_state = 68}, @@ -17139,232 +17197,232 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2801] = {.lex_state = 68}, [2802] = {.lex_state = 68}, [2803] = {.lex_state = 68}, - [2804] = {.lex_state = 3}, + [2804] = {.lex_state = 68}, [2805] = {.lex_state = 68}, [2806] = {.lex_state = 68}, - [2807] = {.lex_state = 16}, - [2808] = {.lex_state = 3}, - [2809] = {.lex_state = 68}, - [2810] = {.lex_state = 68}, - [2811] = {.lex_state = 13}, + [2807] = {.lex_state = 68}, + [2808] = {.lex_state = 68}, + [2809] = {.lex_state = 7}, + [2810] = {.lex_state = 7}, + [2811] = {.lex_state = 68}, [2812] = {.lex_state = 68}, [2813] = {.lex_state = 68}, - [2814] = {.lex_state = 16}, - [2815] = {.lex_state = 13}, - [2816] = {.lex_state = 68}, - [2817] = {.lex_state = 16}, - [2818] = {.lex_state = 13}, + [2814] = {.lex_state = 3}, + [2815] = {.lex_state = 68}, + [2816] = {.lex_state = 13}, + [2817] = {.lex_state = 13}, + [2818] = {.lex_state = 68}, [2819] = {.lex_state = 68}, - [2820] = {.lex_state = 68}, + [2820] = {.lex_state = 13}, [2821] = {.lex_state = 68}, - [2822] = {.lex_state = 7}, - [2823] = {.lex_state = 68}, - [2824] = {.lex_state = 7}, - [2825] = {.lex_state = 16}, + [2822] = {.lex_state = 68}, + [2823] = {.lex_state = 13}, + [2824] = {.lex_state = 68}, + [2825] = {.lex_state = 68}, [2826] = {.lex_state = 68}, - [2827] = {.lex_state = 16}, - [2828] = {.lex_state = 16}, + [2827] = {.lex_state = 68}, + [2828] = {.lex_state = 68}, [2829] = {.lex_state = 68}, - [2830] = {.lex_state = 16}, + [2830] = {.lex_state = 68}, [2831] = {.lex_state = 68}, - [2832] = {.lex_state = 16}, + [2832] = {.lex_state = 68}, [2833] = {.lex_state = 68}, [2834] = {.lex_state = 68}, - [2835] = {.lex_state = 68}, + [2835] = {.lex_state = 13}, [2836] = {.lex_state = 68}, - [2837] = {.lex_state = 13}, - [2838] = {.lex_state = 68}, + [2837] = {.lex_state = 68}, + [2838] = {.lex_state = 13}, [2839] = {.lex_state = 68}, [2840] = {.lex_state = 68}, [2841] = {.lex_state = 68}, - [2842] = {.lex_state = 3}, - [2843] = {.lex_state = 16}, - [2844] = {.lex_state = 16}, - [2845] = {.lex_state = 16}, + [2842] = {.lex_state = 68}, + [2843] = {.lex_state = 68}, + [2844] = {.lex_state = 68}, + [2845] = {.lex_state = 68}, [2846] = {.lex_state = 68}, [2847] = {.lex_state = 68}, [2848] = {.lex_state = 68}, - [2849] = {.lex_state = 68}, - [2850] = {.lex_state = 16}, + [2849] = {.lex_state = 13}, + [2850] = {.lex_state = 68}, [2851] = {.lex_state = 68}, - [2852] = {.lex_state = 68}, + [2852] = {.lex_state = 13}, [2853] = {.lex_state = 68}, [2854] = {.lex_state = 68}, - [2855] = {.lex_state = 16}, + [2855] = {.lex_state = 68}, [2856] = {.lex_state = 68}, [2857] = {.lex_state = 68}, [2858] = {.lex_state = 68}, - [2859] = {.lex_state = 16}, + [2859] = {.lex_state = 68}, [2860] = {.lex_state = 68}, - [2861] = {.lex_state = 68}, - [2862] = {.lex_state = 68}, - [2863] = {.lex_state = 13}, - [2864] = {.lex_state = 17}, + [2861] = {.lex_state = 17}, + [2862] = {.lex_state = 3}, + [2863] = {.lex_state = 68}, + [2864] = {.lex_state = 68}, [2865] = {.lex_state = 68}, [2866] = {.lex_state = 68}, - [2867] = {.lex_state = 17}, + [2867] = {.lex_state = 68}, [2868] = {.lex_state = 68}, - [2869] = {.lex_state = 7}, + [2869] = {.lex_state = 68}, [2870] = {.lex_state = 68}, [2871] = {.lex_state = 68}, [2872] = {.lex_state = 68}, - [2873] = {.lex_state = 7}, + [2873] = {.lex_state = 68}, [2874] = {.lex_state = 68}, - [2875] = {.lex_state = 13}, + [2875] = {.lex_state = 68}, [2876] = {.lex_state = 68}, - [2877] = {.lex_state = 13}, - [2878] = {.lex_state = 68}, + [2877] = {.lex_state = 68}, + [2878] = {.lex_state = 7}, [2879] = {.lex_state = 68}, [2880] = {.lex_state = 68}, - [2881] = {.lex_state = 13}, + [2881] = {.lex_state = 68}, [2882] = {.lex_state = 68}, [2883] = {.lex_state = 68}, - [2884] = {.lex_state = 26}, + [2884] = {.lex_state = 68}, [2885] = {.lex_state = 68}, [2886] = {.lex_state = 68}, [2887] = {.lex_state = 68}, [2888] = {.lex_state = 68}, [2889] = {.lex_state = 68}, [2890] = {.lex_state = 68}, - [2891] = {.lex_state = 7, .external_lex_state = 4}, + [2891] = {.lex_state = 68}, [2892] = {.lex_state = 68}, - [2893] = {.lex_state = 3}, - [2894] = {.lex_state = 13}, + [2893] = {.lex_state = 68}, + [2894] = {.lex_state = 68}, [2895] = {.lex_state = 68}, [2896] = {.lex_state = 68}, [2897] = {.lex_state = 68}, [2898] = {.lex_state = 68}, [2899] = {.lex_state = 68}, [2900] = {.lex_state = 68}, - [2901] = {.lex_state = 17}, + [2901] = {.lex_state = 68}, [2902] = {.lex_state = 68}, [2903] = {.lex_state = 68}, [2904] = {.lex_state = 68}, [2905] = {.lex_state = 68}, - [2906] = {.lex_state = 16}, + [2906] = {.lex_state = 68}, [2907] = {.lex_state = 16}, - [2908] = {.lex_state = 68}, + [2908] = {.lex_state = 17}, [2909] = {.lex_state = 68}, - [2910] = {.lex_state = 16}, - [2911] = {.lex_state = 16}, - [2912] = {.lex_state = 68}, - [2913] = {.lex_state = 68}, - [2914] = {.lex_state = 16}, + [2910] = {.lex_state = 68}, + [2911] = {.lex_state = 68}, + [2912] = {.lex_state = 26}, + [2913] = {.lex_state = 26}, + [2914] = {.lex_state = 68}, [2915] = {.lex_state = 68}, - [2916] = {.lex_state = 68}, + [2916] = {.lex_state = 16}, [2917] = {.lex_state = 68}, - [2918] = {.lex_state = 68}, + [2918] = {.lex_state = 16}, [2919] = {.lex_state = 68}, [2920] = {.lex_state = 68}, [2921] = {.lex_state = 68}, - [2922] = {.lex_state = 68}, + [2922] = {.lex_state = 13}, [2923] = {.lex_state = 68}, - [2924] = {.lex_state = 68}, - [2925] = {.lex_state = 13}, + [2924] = {.lex_state = 3}, + [2925] = {.lex_state = 16}, [2926] = {.lex_state = 68}, - [2927] = {.lex_state = 68}, + [2927] = {.lex_state = 16}, [2928] = {.lex_state = 68}, - [2929] = {.lex_state = 68}, - [2930] = {.lex_state = 68}, + [2929] = {.lex_state = 16}, + [2930] = {.lex_state = 16}, [2931] = {.lex_state = 68}, - [2932] = {.lex_state = 68}, - [2933] = {.lex_state = 68}, - [2934] = {.lex_state = 68}, - [2935] = {.lex_state = 3}, - [2936] = {.lex_state = 68}, + [2932] = {.lex_state = 16}, + [2933] = {.lex_state = 3}, + [2934] = {.lex_state = 3}, + [2935] = {.lex_state = 68}, + [2936] = {.lex_state = 16}, [2937] = {.lex_state = 68}, - [2938] = {.lex_state = 68}, - [2939] = {.lex_state = 68}, + [2938] = {.lex_state = 16}, + [2939] = {.lex_state = 16}, [2940] = {.lex_state = 68}, [2941] = {.lex_state = 68}, - [2942] = {.lex_state = 13}, - [2943] = {.lex_state = 68}, - [2944] = {.lex_state = 68}, + [2942] = {.lex_state = 16}, + [2943] = {.lex_state = 16}, + [2944] = {.lex_state = 16}, [2945] = {.lex_state = 68}, - [2946] = {.lex_state = 68}, - [2947] = {.lex_state = 68}, - [2948] = {.lex_state = 68}, - [2949] = {.lex_state = 68}, - [2950] = {.lex_state = 68}, - [2951] = {.lex_state = 68}, + [2946] = {.lex_state = 16}, + [2947] = {.lex_state = 16}, + [2948] = {.lex_state = 16}, + [2949] = {.lex_state = 13}, + [2950] = {.lex_state = 16}, + [2951] = {.lex_state = 16}, [2952] = {.lex_state = 68}, [2953] = {.lex_state = 68}, - [2954] = {.lex_state = 68}, + [2954] = {.lex_state = 16}, [2955] = {.lex_state = 68}, [2956] = {.lex_state = 68}, - [2957] = {.lex_state = 3}, + [2957] = {.lex_state = 17}, [2958] = {.lex_state = 68}, [2959] = {.lex_state = 68}, - [2960] = {.lex_state = 3}, + [2960] = {.lex_state = 68}, [2961] = {.lex_state = 68}, [2962] = {.lex_state = 68}, [2963] = {.lex_state = 68}, - [2964] = {.lex_state = 68}, - [2965] = {.lex_state = 68}, - [2966] = {.lex_state = 16}, - [2967] = {.lex_state = 16}, - [2968] = {.lex_state = 16}, + [2964] = {.lex_state = 16}, + [2965] = {.lex_state = 16}, + [2966] = {.lex_state = 68}, + [2967] = {.lex_state = 68}, + [2968] = {.lex_state = 68}, [2969] = {.lex_state = 68}, [2970] = {.lex_state = 68}, - [2971] = {.lex_state = 16}, + [2971] = {.lex_state = 68}, [2972] = {.lex_state = 68}, - [2973] = {.lex_state = 13}, - [2974] = {.lex_state = 16}, - [2975] = {.lex_state = 68}, - [2976] = {.lex_state = 13}, - [2977] = {.lex_state = 68}, - [2978] = {.lex_state = 13}, - [2979] = {.lex_state = 68}, - [2980] = {.lex_state = 68}, - [2981] = {.lex_state = 68}, - [2982] = {.lex_state = 68}, - [2983] = {.lex_state = 13}, - [2984] = {.lex_state = 13}, - [2985] = {.lex_state = 13}, + [2973] = {.lex_state = 68}, + [2974] = {.lex_state = 68}, + [2975] = {.lex_state = 16}, + [2976] = {.lex_state = 68}, + [2977] = {.lex_state = 16}, + [2978] = {.lex_state = 68}, + [2979] = {.lex_state = 16}, + [2980] = {.lex_state = 16}, + [2981] = {.lex_state = 16}, + [2982] = {.lex_state = 16}, + [2983] = {.lex_state = 16}, + [2984] = {.lex_state = 3}, + [2985] = {.lex_state = 68}, [2986] = {.lex_state = 68}, - [2987] = {.lex_state = 68}, + [2987] = {.lex_state = 3}, [2988] = {.lex_state = 68}, - [2989] = {.lex_state = 13}, - [2990] = {.lex_state = 13}, + [2989] = {.lex_state = 16}, + [2990] = {.lex_state = 16}, [2991] = {.lex_state = 13}, - [2992] = {.lex_state = 13}, - [2993] = {.lex_state = 13}, - [2994] = {.lex_state = 3}, - [2995] = {.lex_state = 13}, + [2992] = {.lex_state = 16}, + [2993] = {.lex_state = 16}, + [2994] = {.lex_state = 68}, + [2995] = {.lex_state = 68}, [2996] = {.lex_state = 13}, [2997] = {.lex_state = 68}, - [2998] = {.lex_state = 13}, - [2999] = {.lex_state = 13}, + [2998] = {.lex_state = 68}, + [2999] = {.lex_state = 68}, [3000] = {.lex_state = 68}, [3001] = {.lex_state = 68}, - [3002] = {.lex_state = 68}, - [3003] = {.lex_state = 3}, - [3004] = {.lex_state = 13}, + [3002] = {.lex_state = 16}, + [3003] = {.lex_state = 68}, + [3004] = {.lex_state = 68}, [3005] = {.lex_state = 68}, - [3006] = {.lex_state = 13}, - [3007] = {.lex_state = 68}, - [3008] = {.lex_state = 13}, - [3009] = {.lex_state = 13}, - [3010] = {.lex_state = 13}, - [3011] = {.lex_state = 68}, + [3006] = {.lex_state = 68}, + [3007] = {.lex_state = 16}, + [3008] = {.lex_state = 16}, + [3009] = {.lex_state = 16}, + [3010] = {.lex_state = 3}, + [3011] = {.lex_state = 13}, [3012] = {.lex_state = 68}, [3013] = {.lex_state = 13}, - [3014] = {.lex_state = 13}, + [3014] = {.lex_state = 68}, [3015] = {.lex_state = 13}, - [3016] = {.lex_state = 13}, - [3017] = {.lex_state = 13}, - [3018] = {.lex_state = 68}, - [3019] = {.lex_state = 13}, + [3016] = {.lex_state = 68}, + [3017] = {.lex_state = 68}, + [3018] = {.lex_state = 13}, + [3019] = {.lex_state = 26}, [3020] = {.lex_state = 13}, [3021] = {.lex_state = 68}, - [3022] = {.lex_state = 13}, + [3022] = {.lex_state = 68}, [3023] = {.lex_state = 68}, - [3024] = {.lex_state = 68}, - [3025] = {.lex_state = 68}, - [3026] = {.lex_state = 68}, + [3024] = {.lex_state = 13}, + [3025] = {.lex_state = 26}, + [3026] = {.lex_state = 13}, [3027] = {.lex_state = 13}, - [3028] = {.lex_state = 68}, - [3029] = {.lex_state = 17}, + [3028] = {.lex_state = 13}, + [3029] = {.lex_state = 68}, [3030] = {.lex_state = 13}, [3031] = {.lex_state = 13}, [3032] = {.lex_state = 13}, @@ -17372,141 +17430,141 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3034] = {.lex_state = 68}, [3035] = {.lex_state = 68}, [3036] = {.lex_state = 13}, - [3037] = {.lex_state = 13}, - [3038] = {.lex_state = 13}, + [3037] = {.lex_state = 68}, + [3038] = {.lex_state = 26}, [3039] = {.lex_state = 68}, [3040] = {.lex_state = 13}, - [3041] = {.lex_state = 68}, - [3042] = {.lex_state = 13}, - [3043] = {.lex_state = 68}, + [3041] = {.lex_state = 13}, + [3042] = {.lex_state = 68}, + [3043] = {.lex_state = 13}, [3044] = {.lex_state = 13}, [3045] = {.lex_state = 68}, - [3046] = {.lex_state = 68}, + [3046] = {.lex_state = 13}, [3047] = {.lex_state = 13}, [3048] = {.lex_state = 13}, [3049] = {.lex_state = 13}, - [3050] = {.lex_state = 68}, + [3050] = {.lex_state = 26}, [3051] = {.lex_state = 68}, - [3052] = {.lex_state = 13}, + [3052] = {.lex_state = 68}, [3053] = {.lex_state = 68}, - [3054] = {.lex_state = 68}, + [3054] = {.lex_state = 13}, [3055] = {.lex_state = 13}, [3056] = {.lex_state = 68}, - [3057] = {.lex_state = 13}, - [3058] = {.lex_state = 68}, + [3057] = {.lex_state = 68}, + [3058] = {.lex_state = 13}, [3059] = {.lex_state = 13}, [3060] = {.lex_state = 13}, - [3061] = {.lex_state = 2}, - [3062] = {.lex_state = 13}, + [3061] = {.lex_state = 13}, + [3062] = {.lex_state = 68}, [3063] = {.lex_state = 13}, - [3064] = {.lex_state = 2}, + [3064] = {.lex_state = 68}, [3065] = {.lex_state = 68}, - [3066] = {.lex_state = 13}, + [3066] = {.lex_state = 68}, [3067] = {.lex_state = 68}, [3068] = {.lex_state = 68}, - [3069] = {.lex_state = 68}, - [3070] = {.lex_state = 68}, - [3071] = {.lex_state = 68}, - [3072] = {.lex_state = 68}, + [3069] = {.lex_state = 13}, + [3070] = {.lex_state = 13}, + [3071] = {.lex_state = 13}, + [3072] = {.lex_state = 13}, [3073] = {.lex_state = 68}, - [3074] = {.lex_state = 7}, - [3075] = {.lex_state = 68}, - [3076] = {.lex_state = 68}, + [3074] = {.lex_state = 68}, + [3075] = {.lex_state = 13}, + [3076] = {.lex_state = 13}, [3077] = {.lex_state = 13}, [3078] = {.lex_state = 68}, [3079] = {.lex_state = 13}, - [3080] = {.lex_state = 68}, - [3081] = {.lex_state = 68, .external_lex_state = 5}, - [3082] = {.lex_state = 68}, + [3080] = {.lex_state = 7, .external_lex_state = 5}, + [3081] = {.lex_state = 7, .external_lex_state = 5}, + [3082] = {.lex_state = 13}, [3083] = {.lex_state = 68}, [3084] = {.lex_state = 68}, [3085] = {.lex_state = 13}, - [3086] = {.lex_state = 13}, - [3087] = {.lex_state = 68}, - [3088] = {.lex_state = 7, .external_lex_state = 6}, - [3089] = {.lex_state = 7, .external_lex_state = 6}, - [3090] = {.lex_state = 68}, - [3091] = {.lex_state = 7, .external_lex_state = 6}, + [3086] = {.lex_state = 68}, + [3087] = {.lex_state = 17}, + [3088] = {.lex_state = 13}, + [3089] = {.lex_state = 68}, + [3090] = {.lex_state = 13}, + [3091] = {.lex_state = 68}, [3092] = {.lex_state = 68}, - [3093] = {.lex_state = 13}, + [3093] = {.lex_state = 68}, [3094] = {.lex_state = 68}, - [3095] = {.lex_state = 13}, - [3096] = {.lex_state = 68}, + [3095] = {.lex_state = 7, .external_lex_state = 5}, + [3096] = {.lex_state = 13}, [3097] = {.lex_state = 68}, [3098] = {.lex_state = 68}, [3099] = {.lex_state = 68}, [3100] = {.lex_state = 68}, [3101] = {.lex_state = 68}, - [3102] = {.lex_state = 68}, - [3103] = {.lex_state = 13}, + [3102] = {.lex_state = 7}, + [3103] = {.lex_state = 68}, [3104] = {.lex_state = 68}, - [3105] = {.lex_state = 68}, + [3105] = {.lex_state = 13}, [3106] = {.lex_state = 68}, [3107] = {.lex_state = 13}, - [3108] = {.lex_state = 68}, - [3109] = {.lex_state = 13}, + [3108] = {.lex_state = 13}, + [3109] = {.lex_state = 68}, [3110] = {.lex_state = 13}, - [3111] = {.lex_state = 13}, + [3111] = {.lex_state = 68}, [3112] = {.lex_state = 68}, [3113] = {.lex_state = 68}, [3114] = {.lex_state = 68}, [3115] = {.lex_state = 68}, [3116] = {.lex_state = 68}, - [3117] = {.lex_state = 13}, + [3117] = {.lex_state = 68}, [3118] = {.lex_state = 68}, - [3119] = {.lex_state = 13}, - [3120] = {.lex_state = 13}, - [3121] = {.lex_state = 26}, - [3122] = {.lex_state = 13}, - [3123] = {.lex_state = 13}, + [3119] = {.lex_state = 68}, + [3120] = {.lex_state = 68}, + [3121] = {.lex_state = 13}, + [3122] = {.lex_state = 68}, + [3123] = {.lex_state = 26}, [3124] = {.lex_state = 68}, - [3125] = {.lex_state = 13}, + [3125] = {.lex_state = 68}, [3126] = {.lex_state = 68}, - [3127] = {.lex_state = 13}, + [3127] = {.lex_state = 68, .external_lex_state = 6}, [3128] = {.lex_state = 68}, [3129] = {.lex_state = 68}, [3130] = {.lex_state = 68}, [3131] = {.lex_state = 68}, - [3132] = {.lex_state = 68}, + [3132] = {.lex_state = 13}, [3133] = {.lex_state = 68}, [3134] = {.lex_state = 68}, - [3135] = {.lex_state = 68}, + [3135] = {.lex_state = 13}, [3136] = {.lex_state = 68}, - [3137] = {.lex_state = 68}, + [3137] = {.lex_state = 13}, [3138] = {.lex_state = 68}, [3139] = {.lex_state = 68}, [3140] = {.lex_state = 68}, - [3141] = {.lex_state = 68}, + [3141] = {.lex_state = 26}, [3142] = {.lex_state = 68}, - [3143] = {.lex_state = 68}, + [3143] = {.lex_state = 13}, [3144] = {.lex_state = 68}, [3145] = {.lex_state = 68}, - [3146] = {.lex_state = 13}, + [3146] = {.lex_state = 68}, [3147] = {.lex_state = 68}, [3148] = {.lex_state = 68}, - [3149] = {.lex_state = 68}, - [3150] = {.lex_state = 13}, + [3149] = {.lex_state = 13}, + [3150] = {.lex_state = 68}, [3151] = {.lex_state = 68}, - [3152] = {.lex_state = 68}, + [3152] = {.lex_state = 13}, [3153] = {.lex_state = 68}, - [3154] = {.lex_state = 13}, + [3154] = {.lex_state = 68}, [3155] = {.lex_state = 68}, [3156] = {.lex_state = 68}, - [3157] = {.lex_state = 13}, - [3158] = {.lex_state = 13}, - [3159] = {.lex_state = 13}, - [3160] = {.lex_state = 13}, + [3157] = {.lex_state = 68}, + [3158] = {.lex_state = 68}, + [3159] = {.lex_state = 68, .external_lex_state = 6}, + [3160] = {.lex_state = 68}, [3161] = {.lex_state = 68}, - [3162] = {.lex_state = 68}, + [3162] = {.lex_state = 13}, [3163] = {.lex_state = 68}, - [3164] = {.lex_state = 68}, - [3165] = {.lex_state = 68}, - [3166] = {.lex_state = 13}, + [3164] = {.lex_state = 13}, + [3165] = {.lex_state = 13}, + [3166] = {.lex_state = 68}, [3167] = {.lex_state = 13}, - [3168] = {.lex_state = 68}, + [3168] = {.lex_state = 13}, [3169] = {.lex_state = 68}, - [3170] = {.lex_state = 68}, - [3171] = {.lex_state = 68}, + [3170] = {.lex_state = 2}, + [3171] = {.lex_state = 2}, [3172] = {.lex_state = 68}, [3173] = {.lex_state = 68}, [3174] = {.lex_state = 68}, @@ -17517,147 +17575,147 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3179] = {.lex_state = 68}, [3180] = {.lex_state = 68}, [3181] = {.lex_state = 68}, - [3182] = {.lex_state = 13}, + [3182] = {.lex_state = 68}, [3183] = {.lex_state = 68}, - [3184] = {.lex_state = 13}, - [3185] = {.lex_state = 13}, - [3186] = {.lex_state = 26}, - [3187] = {.lex_state = 68}, + [3184] = {.lex_state = 68}, + [3185] = {.lex_state = 68}, + [3186] = {.lex_state = 68}, + [3187] = {.lex_state = 13}, [3188] = {.lex_state = 68}, [3189] = {.lex_state = 68}, [3190] = {.lex_state = 13}, - [3191] = {.lex_state = 26}, - [3192] = {.lex_state = 68}, + [3191] = {.lex_state = 68}, + [3192] = {.lex_state = 13}, [3193] = {.lex_state = 68}, - [3194] = {.lex_state = 68}, - [3195] = {.lex_state = 68}, - [3196] = {.lex_state = 13}, - [3197] = {.lex_state = 13}, - [3198] = {.lex_state = 68}, + [3194] = {.lex_state = 13}, + [3195] = {.lex_state = 13}, + [3196] = {.lex_state = 68}, + [3197] = {.lex_state = 68}, + [3198] = {.lex_state = 13}, [3199] = {.lex_state = 68}, - [3200] = {.lex_state = 26}, - [3201] = {.lex_state = 26}, + [3200] = {.lex_state = 68}, + [3201] = {.lex_state = 3}, [3202] = {.lex_state = 13}, - [3203] = {.lex_state = 68}, - [3204] = {.lex_state = 7}, + [3203] = {.lex_state = 13}, + [3204] = {.lex_state = 13}, [3205] = {.lex_state = 13}, - [3206] = {.lex_state = 68, .external_lex_state = 5}, - [3207] = {.lex_state = 13}, + [3206] = {.lex_state = 13}, + [3207] = {.lex_state = 68}, [3208] = {.lex_state = 13}, - [3209] = {.lex_state = 68}, - [3210] = {.lex_state = 6}, - [3211] = {.lex_state = 68}, + [3209] = {.lex_state = 3}, + [3210] = {.lex_state = 68}, + [3211] = {.lex_state = 13}, [3212] = {.lex_state = 68}, [3213] = {.lex_state = 68}, [3214] = {.lex_state = 13}, - [3215] = {.lex_state = 13}, - [3216] = {.lex_state = 68}, + [3215] = {.lex_state = 68}, + [3216] = {.lex_state = 13}, [3217] = {.lex_state = 13}, - [3218] = {.lex_state = 13}, + [3218] = {.lex_state = 68}, [3219] = {.lex_state = 13}, [3220] = {.lex_state = 68}, [3221] = {.lex_state = 13}, [3222] = {.lex_state = 13}, - [3223] = {.lex_state = 68}, - [3224] = {.lex_state = 68}, - [3225] = {.lex_state = 13}, + [3223] = {.lex_state = 7}, + [3224] = {.lex_state = 13}, + [3225] = {.lex_state = 68}, [3226] = {.lex_state = 13}, - [3227] = {.lex_state = 68}, + [3227] = {.lex_state = 13}, [3228] = {.lex_state = 68}, - [3229] = {.lex_state = 13}, - [3230] = {.lex_state = 13}, + [3229] = {.lex_state = 68}, + [3230] = {.lex_state = 68}, [3231] = {.lex_state = 68}, - [3232] = {.lex_state = 13}, - [3233] = {.lex_state = 68}, + [3232] = {.lex_state = 68}, + [3233] = {.lex_state = 13}, [3234] = {.lex_state = 68}, - [3235] = {.lex_state = 13}, - [3236] = {.lex_state = 13}, + [3235] = {.lex_state = 68}, + [3236] = {.lex_state = 68}, [3237] = {.lex_state = 13}, [3238] = {.lex_state = 13}, [3239] = {.lex_state = 13}, [3240] = {.lex_state = 68}, - [3241] = {.lex_state = 26}, - [3242] = {.lex_state = 68}, - [3243] = {.lex_state = 13}, + [3241] = {.lex_state = 13}, + [3242] = {.lex_state = 13}, + [3243] = {.lex_state = 68}, [3244] = {.lex_state = 13}, [3245] = {.lex_state = 68}, - [3246] = {.lex_state = 68}, + [3246] = {.lex_state = 13}, [3247] = {.lex_state = 13}, [3248] = {.lex_state = 68}, - [3249] = {.lex_state = 13}, + [3249] = {.lex_state = 68}, [3250] = {.lex_state = 13}, [3251] = {.lex_state = 13}, - [3252] = {.lex_state = 17}, - [3253] = {.lex_state = 68}, - [3254] = {.lex_state = 68}, - [3255] = {.lex_state = 13}, - [3256] = {.lex_state = 17}, - [3257] = {.lex_state = 68}, - [3258] = {.lex_state = 13}, + [3252] = {.lex_state = 68}, + [3253] = {.lex_state = 13}, + [3254] = {.lex_state = 13}, + [3255] = {.lex_state = 68}, + [3256] = {.lex_state = 13}, + [3257] = {.lex_state = 13}, + [3258] = {.lex_state = 68}, [3259] = {.lex_state = 68}, - [3260] = {.lex_state = 68}, - [3261] = {.lex_state = 68}, + [3260] = {.lex_state = 13}, + [3261] = {.lex_state = 13}, [3262] = {.lex_state = 68}, [3263] = {.lex_state = 68}, - [3264] = {.lex_state = 17}, + [3264] = {.lex_state = 13}, [3265] = {.lex_state = 13}, [3266] = {.lex_state = 68}, [3267] = {.lex_state = 68}, - [3268] = {.lex_state = 68}, - [3269] = {.lex_state = 68}, + [3268] = {.lex_state = 13}, + [3269] = {.lex_state = 13}, [3270] = {.lex_state = 68}, - [3271] = {.lex_state = 69}, - [3272] = {.lex_state = 13}, + [3271] = {.lex_state = 68}, + [3272] = {.lex_state = 68}, [3273] = {.lex_state = 68}, - [3274] = {.lex_state = 13}, - [3275] = {.lex_state = 13}, - [3276] = {.lex_state = 13}, - [3277] = {.lex_state = 13}, - [3278] = {.lex_state = 13}, + [3274] = {.lex_state = 68}, + [3275] = {.lex_state = 68}, + [3276] = {.lex_state = 68}, + [3277] = {.lex_state = 68}, + [3278] = {.lex_state = 68}, [3279] = {.lex_state = 68}, [3280] = {.lex_state = 68}, [3281] = {.lex_state = 68}, - [3282] = {.lex_state = 68}, + [3282] = {.lex_state = 13}, [3283] = {.lex_state = 68}, - [3284] = {.lex_state = 69}, - [3285] = {.lex_state = 69}, - [3286] = {.lex_state = 69}, + [3284] = {.lex_state = 13}, + [3285] = {.lex_state = 68}, + [3286] = {.lex_state = 13}, [3287] = {.lex_state = 68}, - [3288] = {.lex_state = 69}, + [3288] = {.lex_state = 68}, [3289] = {.lex_state = 68}, - [3290] = {.lex_state = 13}, + [3290] = {.lex_state = 68}, [3291] = {.lex_state = 68}, [3292] = {.lex_state = 68}, [3293] = {.lex_state = 68}, - [3294] = {.lex_state = 13}, - [3295] = {.lex_state = 68}, + [3294] = {.lex_state = 68}, + [3295] = {.lex_state = 13}, [3296] = {.lex_state = 68}, - [3297] = {.lex_state = 68}, + [3297] = {.lex_state = 13}, [3298] = {.lex_state = 68}, [3299] = {.lex_state = 68}, - [3300] = {.lex_state = 68}, + [3300] = {.lex_state = 17}, [3301] = {.lex_state = 68}, - [3302] = {.lex_state = 68}, - [3303] = {.lex_state = 68}, - [3304] = {.lex_state = 68}, + [3302] = {.lex_state = 13}, + [3303] = {.lex_state = 13}, + [3304] = {.lex_state = 13}, [3305] = {.lex_state = 68}, [3306] = {.lex_state = 13}, - [3307] = {.lex_state = 13}, - [3308] = {.lex_state = 17}, - [3309] = {.lex_state = 68}, - [3310] = {.lex_state = 68}, + [3307] = {.lex_state = 68}, + [3308] = {.lex_state = 68}, + [3309] = {.lex_state = 69}, + [3310] = {.lex_state = 13}, [3311] = {.lex_state = 13}, [3312] = {.lex_state = 13}, [3313] = {.lex_state = 68}, - [3314] = {.lex_state = 68}, + [3314] = {.lex_state = 13}, [3315] = {.lex_state = 13}, [3316] = {.lex_state = 13}, - [3317] = {.lex_state = 68}, - [3318] = {.lex_state = 68}, - [3319] = {.lex_state = 13}, - [3320] = {.lex_state = 13}, + [3317] = {.lex_state = 13}, + [3318] = {.lex_state = 13}, + [3319] = {.lex_state = 68}, + [3320] = {.lex_state = 68}, [3321] = {.lex_state = 68}, - [3322] = {.lex_state = 13}, + [3322] = {.lex_state = 68}, [3323] = {.lex_state = 68}, [3324] = {.lex_state = 68}, [3325] = {.lex_state = 68}, @@ -17665,114 +17723,114 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3327] = {.lex_state = 68}, [3328] = {.lex_state = 13}, [3329] = {.lex_state = 68}, - [3330] = {.lex_state = 68}, - [3331] = {.lex_state = 68}, - [3332] = {.lex_state = 13}, + [3330] = {.lex_state = 13}, + [3331] = {.lex_state = 17}, + [3332] = {.lex_state = 68}, [3333] = {.lex_state = 68}, - [3334] = {.lex_state = 68}, + [3334] = {.lex_state = 13}, [3335] = {.lex_state = 68}, - [3336] = {.lex_state = 68}, + [3336] = {.lex_state = 13}, [3337] = {.lex_state = 68}, - [3338] = {.lex_state = 68}, - [3339] = {.lex_state = 68}, + [3338] = {.lex_state = 13}, + [3339] = {.lex_state = 13}, [3340] = {.lex_state = 68}, [3341] = {.lex_state = 68}, - [3342] = {.lex_state = 68}, - [3343] = {.lex_state = 13}, - [3344] = {.lex_state = 13}, + [3342] = {.lex_state = 17}, + [3343] = {.lex_state = 68}, + [3344] = {.lex_state = 68}, [3345] = {.lex_state = 68}, - [3346] = {.lex_state = 13}, - [3347] = {.lex_state = 17}, + [3346] = {.lex_state = 68}, + [3347] = {.lex_state = 68}, [3348] = {.lex_state = 68}, - [3349] = {.lex_state = 13}, + [3349] = {.lex_state = 17}, [3350] = {.lex_state = 68}, - [3351] = {.lex_state = 13}, - [3352] = {.lex_state = 68}, - [3353] = {.lex_state = 68}, - [3354] = {.lex_state = 13}, - [3355] = {.lex_state = 13}, + [3351] = {.lex_state = 68}, + [3352] = {.lex_state = 13}, + [3353] = {.lex_state = 13}, + [3354] = {.lex_state = 68}, + [3355] = {.lex_state = 68}, [3356] = {.lex_state = 68}, - [3357] = {.lex_state = 68}, - [3358] = {.lex_state = 13}, + [3357] = {.lex_state = 13}, + [3358] = {.lex_state = 68}, [3359] = {.lex_state = 68}, - [3360] = {.lex_state = 68}, + [3360] = {.lex_state = 13}, [3361] = {.lex_state = 68}, [3362] = {.lex_state = 68}, [3363] = {.lex_state = 68}, [3364] = {.lex_state = 7}, [3365] = {.lex_state = 68}, [3366] = {.lex_state = 13}, - [3367] = {.lex_state = 68, .external_lex_state = 7}, - [3368] = {.lex_state = 13}, - [3369] = {.lex_state = 68}, - [3370] = {.lex_state = 68, .external_lex_state = 7}, + [3367] = {.lex_state = 13}, + [3368] = {.lex_state = 68}, + [3369] = {.lex_state = 13}, + [3370] = {.lex_state = 68}, [3371] = {.lex_state = 68}, - [3372] = {.lex_state = 68, .external_lex_state = 7}, + [3372] = {.lex_state = 68}, [3373] = {.lex_state = 68}, - [3374] = {.lex_state = 68}, - [3375] = {.lex_state = 68}, - [3376] = {.lex_state = 169}, - [3377] = {.lex_state = 68}, - [3378] = {.lex_state = 17}, + [3374] = {.lex_state = 13}, + [3375] = {.lex_state = 13}, + [3376] = {.lex_state = 13}, + [3377] = {.lex_state = 13}, + [3378] = {.lex_state = 68}, [3379] = {.lex_state = 68}, - [3380] = {.lex_state = 68}, - [3381] = {.lex_state = 68}, - [3382] = {.lex_state = 68}, + [3380] = {.lex_state = 13}, + [3381] = {.lex_state = 13}, + [3382] = {.lex_state = 69}, [3383] = {.lex_state = 68}, - [3384] = {.lex_state = 68}, - [3385] = {.lex_state = 68}, - [3386] = {.lex_state = 13}, - [3387] = {.lex_state = 13}, + [3384] = {.lex_state = 13}, + [3385] = {.lex_state = 69}, + [3386] = {.lex_state = 68}, + [3387] = {.lex_state = 68}, [3388] = {.lex_state = 68}, [3389] = {.lex_state = 68}, [3390] = {.lex_state = 68}, [3391] = {.lex_state = 68}, [3392] = {.lex_state = 68}, [3393] = {.lex_state = 68}, - [3394] = {.lex_state = 68}, - [3395] = {.lex_state = 68}, - [3396] = {.lex_state = 13}, + [3394] = {.lex_state = 69}, + [3395] = {.lex_state = 13}, + [3396] = {.lex_state = 69}, [3397] = {.lex_state = 68}, [3398] = {.lex_state = 68}, [3399] = {.lex_state = 68}, [3400] = {.lex_state = 68}, - [3401] = {.lex_state = 13}, + [3401] = {.lex_state = 68}, [3402] = {.lex_state = 68}, - [3403] = {.lex_state = 68}, + [3403] = {.lex_state = 13}, [3404] = {.lex_state = 13}, - [3405] = {.lex_state = 13}, - [3406] = {.lex_state = 13}, - [3407] = {.lex_state = 68}, - [3408] = {.lex_state = 13}, - [3409] = {.lex_state = 68}, + [3405] = {.lex_state = 17}, + [3406] = {.lex_state = 68}, + [3407] = {.lex_state = 13}, + [3408] = {.lex_state = 68}, + [3409] = {.lex_state = 13}, [3410] = {.lex_state = 68}, [3411] = {.lex_state = 68}, [3412] = {.lex_state = 68}, - [3413] = {.lex_state = 68}, + [3413] = {.lex_state = 13}, [3414] = {.lex_state = 68}, [3415] = {.lex_state = 68}, - [3416] = {.lex_state = 13}, - [3417] = {.lex_state = 13}, + [3416] = {.lex_state = 68}, + [3417] = {.lex_state = 68}, [3418] = {.lex_state = 13}, - [3419] = {.lex_state = 68}, - [3420] = {.lex_state = 17}, - [3421] = {.lex_state = 68}, - [3422] = {.lex_state = 69}, + [3419] = {.lex_state = 13}, + [3420] = {.lex_state = 68}, + [3421] = {.lex_state = 17}, + [3422] = {.lex_state = 17}, [3423] = {.lex_state = 68}, - [3424] = {.lex_state = 68}, + [3424] = {.lex_state = 13}, [3425] = {.lex_state = 68}, [3426] = {.lex_state = 68}, [3427] = {.lex_state = 68}, - [3428] = {.lex_state = 17}, - [3429] = {.lex_state = 68}, - [3430] = {.lex_state = 13}, - [3431] = {.lex_state = 13}, - [3432] = {.lex_state = 13}, + [3428] = {.lex_state = 68}, + [3429] = {.lex_state = 17}, + [3430] = {.lex_state = 68}, + [3431] = {.lex_state = 68}, + [3432] = {.lex_state = 68}, [3433] = {.lex_state = 13}, [3434] = {.lex_state = 68}, [3435] = {.lex_state = 68}, [3436] = {.lex_state = 68}, - [3437] = {.lex_state = 68}, + [3437] = {.lex_state = 13}, [3438] = {.lex_state = 68}, [3439] = {.lex_state = 68}, [3440] = {.lex_state = 68}, @@ -17781,91 +17839,133 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3443] = {.lex_state = 68}, [3444] = {.lex_state = 68}, [3445] = {.lex_state = 68}, - [3446] = {.lex_state = 68}, - [3447] = {.lex_state = 68}, - [3448] = {.lex_state = 68}, + [3446] = {.lex_state = 13}, + [3447] = {.lex_state = 13}, + [3448] = {.lex_state = 13}, [3449] = {.lex_state = 68}, [3450] = {.lex_state = 68}, - [3451] = {.lex_state = 68}, + [3451] = {.lex_state = 13}, [3452] = {.lex_state = 68}, - [3453] = {.lex_state = 69}, - [3454] = {.lex_state = 13}, - [3455] = {.lex_state = 13}, - [3456] = {.lex_state = 17}, - [3457] = {.lex_state = 68}, - [3458] = {.lex_state = 13}, + [3453] = {.lex_state = 68}, + [3454] = {.lex_state = 68}, + [3455] = {.lex_state = 68}, + [3456] = {.lex_state = 68}, + [3457] = {.lex_state = 13}, + [3458] = {.lex_state = 68}, [3459] = {.lex_state = 68}, - [3460] = {.lex_state = 17}, - [3461] = {.lex_state = 17}, + [3460] = {.lex_state = 68}, + [3461] = {.lex_state = 68}, [3462] = {.lex_state = 68}, [3463] = {.lex_state = 68}, - [3464] = {.lex_state = 13}, + [3464] = {.lex_state = 68}, [3465] = {.lex_state = 68}, - [3466] = {.lex_state = 17}, + [3466] = {.lex_state = 68}, [3467] = {.lex_state = 68}, [3468] = {.lex_state = 68}, - [3469] = {.lex_state = 68}, + [3469] = {.lex_state = 13}, [3470] = {.lex_state = 68}, - [3471] = {.lex_state = 17}, + [3471] = {.lex_state = 68}, [3472] = {.lex_state = 68}, [3473] = {.lex_state = 68}, [3474] = {.lex_state = 68}, - [3475] = {.lex_state = 68}, - [3476] = {.lex_state = 17}, - [3477] = {.lex_state = 13}, - [3478] = {.lex_state = 69}, + [3475] = {.lex_state = 69}, + [3476] = {.lex_state = 13}, + [3477] = {.lex_state = 17}, + [3478] = {.lex_state = 7}, [3479] = {.lex_state = 68}, - [3480] = {.lex_state = 17}, - [3481] = {.lex_state = 68}, - [3482] = {.lex_state = 17}, + [3480] = {.lex_state = 68}, + [3481] = {.lex_state = 13}, + [3482] = {.lex_state = 68}, [3483] = {.lex_state = 68}, [3484] = {.lex_state = 68}, [3485] = {.lex_state = 68}, - [3486] = {.lex_state = 17}, + [3486] = {.lex_state = 68}, [3487] = {.lex_state = 68}, - [3488] = {.lex_state = 13}, + [3488] = {.lex_state = 68}, [3489] = {.lex_state = 68}, - [3490] = {.lex_state = 13}, + [3490] = {.lex_state = 68}, [3491] = {.lex_state = 68}, - [3492] = {.lex_state = 68}, + [3492] = {.lex_state = 13}, [3493] = {.lex_state = 68}, - [3494] = {.lex_state = 68}, + [3494] = {.lex_state = 69}, [3495] = {.lex_state = 68}, - [3496] = {.lex_state = 68}, + [3496] = {.lex_state = 17}, [3497] = {.lex_state = 68}, - [3498] = {.lex_state = 17}, - [3499] = {.lex_state = 17}, - [3500] = {.lex_state = 68}, + [3498] = {.lex_state = 68}, + [3499] = {.lex_state = 68}, + [3500] = {.lex_state = 17}, [3501] = {.lex_state = 17}, - [3502] = {.lex_state = 17}, - [3503] = {.lex_state = 13}, - [3504] = {.lex_state = 17}, - [3505] = {.lex_state = 17}, - [3506] = {.lex_state = 13}, + [3502] = {.lex_state = 68}, + [3503] = {.lex_state = 68, .external_lex_state = 7}, + [3504] = {.lex_state = 68, .external_lex_state = 7}, + [3505] = {.lex_state = 68, .external_lex_state = 7}, + [3506] = {.lex_state = 17}, [3507] = {.lex_state = 68}, - [3508] = {.lex_state = 17}, - [3509] = {.lex_state = 17}, - [3510] = {.lex_state = 17}, - [3511] = {.lex_state = 69}, - [3512] = {.lex_state = 13}, - [3513] = {.lex_state = 13}, - [3514] = {.lex_state = 68}, - [3515] = {.lex_state = 13}, - [3516] = {.lex_state = 68}, + [3508] = {.lex_state = 13}, + [3509] = {.lex_state = 169}, + [3510] = {.lex_state = 68}, + [3511] = {.lex_state = 68}, + [3512] = {.lex_state = 68}, + [3513] = {.lex_state = 17}, + [3514] = {.lex_state = 13}, + [3515] = {.lex_state = 17}, + [3516] = {.lex_state = 17}, [3517] = {.lex_state = 68}, [3518] = {.lex_state = 13}, - [3519] = {.lex_state = 13}, - [3520] = {.lex_state = 68}, - [3521] = {.lex_state = 13}, - [3522] = {.lex_state = 13}, - [3523] = {.lex_state = 7}, - [3524] = {(TSStateId)(-1)}, - [3525] = {(TSStateId)(-1)}, - [3526] = {(TSStateId)(-1)}, - [3527] = {(TSStateId)(-1)}, - [3528] = {(TSStateId)(-1)}, - [3529] = {(TSStateId)(-1)}, - [3530] = {(TSStateId)(-1)}, + [3519] = {.lex_state = 68}, + [3520] = {.lex_state = 17}, + [3521] = {.lex_state = 68}, + [3522] = {.lex_state = 17}, + [3523] = {.lex_state = 68}, + [3524] = {.lex_state = 13}, + [3525] = {.lex_state = 68}, + [3526] = {.lex_state = 17}, + [3527] = {.lex_state = 68}, + [3528] = {.lex_state = 68}, + [3529] = {.lex_state = 68}, + [3530] = {.lex_state = 68}, + [3531] = {.lex_state = 68}, + [3532] = {.lex_state = 68}, + [3533] = {.lex_state = 68}, + [3534] = {.lex_state = 13}, + [3535] = {.lex_state = 68}, + [3536] = {.lex_state = 68}, + [3537] = {.lex_state = 68}, + [3538] = {.lex_state = 17}, + [3539] = {.lex_state = 68}, + [3540] = {.lex_state = 17}, + [3541] = {.lex_state = 68}, + [3542] = {.lex_state = 68}, + [3543] = {.lex_state = 17}, + [3544] = {.lex_state = 17}, + [3545] = {.lex_state = 13}, + [3546] = {.lex_state = 17}, + [3547] = {.lex_state = 17}, + [3548] = {.lex_state = 68}, + [3549] = {.lex_state = 68}, + [3550] = {.lex_state = 17}, + [3551] = {.lex_state = 17}, + [3552] = {.lex_state = 17}, + [3553] = {.lex_state = 69}, + [3554] = {.lex_state = 13}, + [3555] = {.lex_state = 13}, + [3556] = {.lex_state = 68}, + [3557] = {.lex_state = 13}, + [3558] = {.lex_state = 13}, + [3559] = {.lex_state = 68}, + [3560] = {.lex_state = 13}, + [3561] = {.lex_state = 13}, + [3562] = {.lex_state = 13}, + [3563] = {.lex_state = 13}, + [3564] = {.lex_state = 13}, + [3565] = {.lex_state = 68}, + [3566] = {(TSStateId)(-1)}, + [3567] = {(TSStateId)(-1)}, + [3568] = {(TSStateId)(-1)}, + [3569] = {(TSStateId)(-1)}, + [3570] = {(TSStateId)(-1)}, + [3571] = {(TSStateId)(-1)}, + [3572] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -18011,7 +18111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_super] = ACTIONS(1), [sym_crate] = ACTIONS(1), [sym_metavariable] = ACTIONS(1), - [sym__string_content] = ACTIONS(1), + [sym_string_content] = ACTIONS(1), [sym_raw_string_literal] = ACTIONS(1), [sym_float_literal] = ACTIONS(1), [sym__outer_block_doc_comment_marker] = ACTIONS(1), @@ -18021,81 +18121,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(3388), - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), + [sym_source_file] = STATE(3519), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(21), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [aux_sym_source_file_repeat1] = STATE(18), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -18174,80 +18274,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [2] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1627), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18325,80 +18425,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [3] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1766), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(4), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18476,80 +18576,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [4] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1745), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1779), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18627,87 +18727,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [5] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [ts_builtin_sym_end] = ACTIONS(123), + [aux_sym_source_file_repeat1] = STATE(4), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(123), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18778,80 +18878,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [6] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1802), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18929,80 +19029,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [7] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1788), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1747), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19080,80 +19180,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [8] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1791), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1626), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19231,80 +19331,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [9] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1797), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1700), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19382,80 +19482,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [10] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1752), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1745), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19533,80 +19633,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [11] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1742), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19684,80 +19784,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [12] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1771), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -19835,238 +19935,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [13] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1665), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [ts_builtin_sym_end] = ACTIONS(139), - [sym_identifier] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(144), - [anon_sym_macro_rules_BANG] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LBRACE] = ACTIONS(156), - [anon_sym_STAR] = ACTIONS(159), - [anon_sym_u8] = ACTIONS(162), - [anon_sym_i8] = ACTIONS(162), - [anon_sym_u16] = ACTIONS(162), - [anon_sym_i16] = ACTIONS(162), - [anon_sym_u32] = ACTIONS(162), - [anon_sym_i32] = ACTIONS(162), - [anon_sym_u64] = ACTIONS(162), - [anon_sym_i64] = ACTIONS(162), - [anon_sym_u128] = ACTIONS(162), - [anon_sym_i128] = ACTIONS(162), - [anon_sym_isize] = ACTIONS(162), - [anon_sym_usize] = ACTIONS(162), - [anon_sym_f32] = ACTIONS(162), - [anon_sym_f64] = ACTIONS(162), - [anon_sym_bool] = ACTIONS(162), - [anon_sym_str] = ACTIONS(162), - [anon_sym_char] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(168), - [anon_sym_POUND] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(174), - [anon_sym_PIPE] = ACTIONS(177), - [anon_sym_SQUOTE] = ACTIONS(180), - [anon_sym_async] = ACTIONS(183), - [anon_sym_break] = ACTIONS(186), - [anon_sym_const] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(192), - [anon_sym_default] = ACTIONS(195), - [anon_sym_enum] = ACTIONS(198), - [anon_sym_fn] = ACTIONS(201), - [anon_sym_for] = ACTIONS(204), - [anon_sym_if] = ACTIONS(207), - [anon_sym_impl] = ACTIONS(210), - [anon_sym_let] = ACTIONS(213), - [anon_sym_loop] = ACTIONS(216), - [anon_sym_match] = ACTIONS(219), - [anon_sym_mod] = ACTIONS(222), - [anon_sym_pub] = ACTIONS(225), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(231), - [anon_sym_struct] = ACTIONS(234), - [anon_sym_trait] = ACTIONS(237), - [anon_sym_type] = ACTIONS(240), - [anon_sym_union] = ACTIONS(243), - [anon_sym_unsafe] = ACTIONS(246), - [anon_sym_use] = ACTIONS(249), - [anon_sym_while] = ACTIONS(252), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_move] = ACTIONS(264), - [anon_sym_try] = ACTIONS(267), - [sym_integer_literal] = ACTIONS(270), - [aux_sym_string_literal_token1] = ACTIONS(273), - [sym_char_literal] = ACTIONS(270), - [anon_sym_true] = ACTIONS(276), - [anon_sym_false] = ACTIONS(276), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(279), - [sym_super] = ACTIONS(282), - [sym_crate] = ACTIONS(285), - [sym_metavariable] = ACTIONS(288), - [sym_raw_string_literal] = ACTIONS(270), - [sym_float_literal] = ACTIONS(270), - }, - [14] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1739), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(14), - [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_RBRACE] = ACTIONS(139), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -20136,88 +20085,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [15] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1773), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(15), - [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [14] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(14), + [sym_block_comment] = STATE(14), + [aux_sym_source_file_repeat1] = STATE(24), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(141), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -20287,88 +20236,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [16] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1747), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(16), - [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [15] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1672), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(15), + [sym_block_comment] = STATE(15), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(295), + [anon_sym_RBRACE] = ACTIONS(143), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -20438,88 +20387,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [17] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1772), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(17), - [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [16] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(16), + [sym_block_comment] = STATE(16), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(145), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -20589,239 +20538,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [18] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(318), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(18), - [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(144), - [anon_sym_macro_rules_BANG] = ACTIONS(147), - [anon_sym_LPAREN] = ACTIONS(150), - [anon_sym_LBRACK] = ACTIONS(153), - [anon_sym_LBRACE] = ACTIONS(156), - [anon_sym_RBRACE] = ACTIONS(139), - [anon_sym_STAR] = ACTIONS(159), - [anon_sym_u8] = ACTIONS(162), - [anon_sym_i8] = ACTIONS(162), - [anon_sym_u16] = ACTIONS(162), - [anon_sym_i16] = ACTIONS(162), - [anon_sym_u32] = ACTIONS(162), - [anon_sym_i32] = ACTIONS(162), - [anon_sym_u64] = ACTIONS(162), - [anon_sym_i64] = ACTIONS(162), - [anon_sym_u128] = ACTIONS(162), - [anon_sym_i128] = ACTIONS(162), - [anon_sym_isize] = ACTIONS(162), - [anon_sym_usize] = ACTIONS(162), - [anon_sym_f32] = ACTIONS(162), - [anon_sym_f64] = ACTIONS(162), - [anon_sym_bool] = ACTIONS(162), - [anon_sym_str] = ACTIONS(162), - [anon_sym_char] = ACTIONS(162), - [anon_sym_DASH] = ACTIONS(159), - [anon_sym_COLON_COLON] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(159), - [anon_sym_AMP] = ACTIONS(168), - [anon_sym_POUND] = ACTIONS(171), - [anon_sym_LT] = ACTIONS(174), - [anon_sym_PIPE] = ACTIONS(177), - [anon_sym_SQUOTE] = ACTIONS(180), - [anon_sym_async] = ACTIONS(183), - [anon_sym_break] = ACTIONS(186), - [anon_sym_const] = ACTIONS(189), - [anon_sym_continue] = ACTIONS(192), - [anon_sym_default] = ACTIONS(195), - [anon_sym_enum] = ACTIONS(198), - [anon_sym_fn] = ACTIONS(201), - [anon_sym_for] = ACTIONS(204), - [anon_sym_if] = ACTIONS(207), - [anon_sym_impl] = ACTIONS(210), - [anon_sym_let] = ACTIONS(213), - [anon_sym_loop] = ACTIONS(216), - [anon_sym_match] = ACTIONS(219), - [anon_sym_mod] = ACTIONS(222), - [anon_sym_pub] = ACTIONS(225), - [anon_sym_return] = ACTIONS(228), - [anon_sym_static] = ACTIONS(231), - [anon_sym_struct] = ACTIONS(234), - [anon_sym_trait] = ACTIONS(237), - [anon_sym_type] = ACTIONS(240), - [anon_sym_union] = ACTIONS(243), - [anon_sym_unsafe] = ACTIONS(246), - [anon_sym_use] = ACTIONS(249), - [anon_sym_while] = ACTIONS(252), - [anon_sym_extern] = ACTIONS(255), - [anon_sym_DOT_DOT] = ACTIONS(258), - [anon_sym_yield] = ACTIONS(261), - [anon_sym_move] = ACTIONS(264), - [anon_sym_try] = ACTIONS(267), - [sym_integer_literal] = ACTIONS(270), - [aux_sym_string_literal_token1] = ACTIONS(273), - [sym_char_literal] = ACTIONS(270), - [anon_sym_true] = ACTIONS(276), - [anon_sym_false] = ACTIONS(276), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(279), - [sym_super] = ACTIONS(282), - [sym_crate] = ACTIONS(285), - [sym_metavariable] = ACTIONS(288), - [sym_raw_string_literal] = ACTIONS(270), - [sym_float_literal] = ACTIONS(270), - }, - [19] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1759), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(19), - [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [17] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1656), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(17), + [sym_block_comment] = STATE(17), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(299), + [anon_sym_RBRACE] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -20891,88 +20689,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [20] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1785), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(20), - [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(10), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [18] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(18), + [sym_block_comment] = STATE(18), + [aux_sym_source_file_repeat1] = STATE(34), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [ts_builtin_sym_end] = ACTIONS(149), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(301), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -21042,88 +20840,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [21] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(21), - [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [ts_builtin_sym_end] = ACTIONS(303), + [19] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1649), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(19), + [sym_block_comment] = STATE(19), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(151), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -21193,81 +20991,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [22] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1781), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(22), - [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [20] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(291), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(20), + [sym_block_comment] = STATE(20), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(156), + [anon_sym_macro_rules_BANG] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_RBRACE] = ACTIONS(171), + [anon_sym_STAR] = ACTIONS(173), + [anon_sym_u8] = ACTIONS(176), + [anon_sym_i8] = ACTIONS(176), + [anon_sym_u16] = ACTIONS(176), + [anon_sym_i16] = ACTIONS(176), + [anon_sym_u32] = ACTIONS(176), + [anon_sym_i32] = ACTIONS(176), + [anon_sym_u64] = ACTIONS(176), + [anon_sym_i64] = ACTIONS(176), + [anon_sym_u128] = ACTIONS(176), + [anon_sym_i128] = ACTIONS(176), + [anon_sym_isize] = ACTIONS(176), + [anon_sym_usize] = ACTIONS(176), + [anon_sym_f32] = ACTIONS(176), + [anon_sym_f64] = ACTIONS(176), + [anon_sym_bool] = ACTIONS(176), + [anon_sym_str] = ACTIONS(176), + [anon_sym_char] = ACTIONS(176), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_COLON_COLON] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_AMP] = ACTIONS(182), + [anon_sym_POUND] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(188), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(194), + [anon_sym_async] = ACTIONS(197), + [anon_sym_break] = ACTIONS(200), + [anon_sym_const] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(206), + [anon_sym_default] = ACTIONS(209), + [anon_sym_enum] = ACTIONS(212), + [anon_sym_fn] = ACTIONS(215), + [anon_sym_for] = ACTIONS(218), + [anon_sym_if] = ACTIONS(221), + [anon_sym_impl] = ACTIONS(224), + [anon_sym_let] = ACTIONS(227), + [anon_sym_loop] = ACTIONS(230), + [anon_sym_match] = ACTIONS(233), + [anon_sym_mod] = ACTIONS(236), + [anon_sym_pub] = ACTIONS(239), + [anon_sym_return] = ACTIONS(242), + [anon_sym_static] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(248), + [anon_sym_trait] = ACTIONS(251), + [anon_sym_type] = ACTIONS(254), + [anon_sym_union] = ACTIONS(257), + [anon_sym_unsafe] = ACTIONS(260), + [anon_sym_use] = ACTIONS(263), + [anon_sym_while] = ACTIONS(266), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(272), + [anon_sym_yield] = ACTIONS(275), + [anon_sym_move] = ACTIONS(278), + [anon_sym_try] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(284), + [aux_sym_string_literal_token1] = ACTIONS(287), + [sym_char_literal] = ACTIONS(284), + [anon_sym_true] = ACTIONS(290), + [anon_sym_false] = ACTIONS(290), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(293), + [sym_super] = ACTIONS(296), + [sym_crate] = ACTIONS(299), + [sym_metavariable] = ACTIONS(302), + [sym_raw_string_literal] = ACTIONS(284), + [sym_float_literal] = ACTIONS(284), + }, + [21] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1825), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(21), + [sym_block_comment] = STATE(21), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -21344,81 +21293,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [23] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(23), - [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [22] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(22), + [sym_block_comment] = STATE(22), + [aux_sym_source_file_repeat1] = STATE(16), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -21495,81 +21444,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [24] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(24), - [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [23] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1705), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(23), + [sym_block_comment] = STATE(23), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -21646,81 +21595,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [25] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(25), - [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(26), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [24] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1698), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(24), + [sym_block_comment] = STATE(24), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -21797,81 +21746,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [26] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(26), - [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [25] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(25), + [sym_block_comment] = STATE(25), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -21948,81 +21897,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [27] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(27), - [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [26] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1645), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(26), + [sym_block_comment] = STATE(26), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -22099,232 +22048,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [28] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(28), - [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [ts_builtin_sym_end] = ACTIONS(303), - [sym_identifier] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_macro_rules_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(117), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(37), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(41), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(45), - [anon_sym_enum] = ACTIONS(47), - [anon_sym_fn] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_if] = ACTIONS(53), - [anon_sym_impl] = ACTIONS(55), - [anon_sym_let] = ACTIONS(57), - [anon_sym_loop] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_mod] = ACTIONS(63), - [anon_sym_pub] = ACTIONS(65), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(69), - [anon_sym_struct] = ACTIONS(71), - [anon_sym_trait] = ACTIONS(73), - [anon_sym_type] = ACTIONS(75), - [anon_sym_union] = ACTIONS(77), - [anon_sym_unsafe] = ACTIONS(79), - [anon_sym_use] = ACTIONS(81), - [anon_sym_while] = ACTIONS(83), - [anon_sym_extern] = ACTIONS(85), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [29] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(29), - [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [27] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1805), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(27), + [sym_block_comment] = STATE(27), + [aux_sym_source_file_repeat1] = STATE(26), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -22401,81 +22199,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [30] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(30), - [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(29), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [28] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1637), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(28), + [sym_block_comment] = STATE(28), + [aux_sym_source_file_repeat1] = STATE(25), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -22552,81 +22350,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [31] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(31), - [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [29] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1752), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(29), + [sym_block_comment] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(32), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -22703,81 +22501,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [32] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(32), - [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [30] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1655), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(30), + [sym_block_comment] = STATE(30), + [aux_sym_source_file_repeat1] = STATE(19), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -22854,88 +22652,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [33] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1838), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(33), - [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(32), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [31] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(31), + [sym_block_comment] = STATE(31), + [aux_sym_source_file_repeat1] = STATE(33), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [ts_builtin_sym_end] = ACTIONS(149), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(325), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -23005,88 +22803,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [34] = { - [sym__statement] = STATE(669), - [sym_empty_statement] = STATE(673), - [sym_expression_statement] = STATE(673), - [sym_macro_definition] = STATE(673), - [sym_attribute_item] = STATE(673), - [sym_inner_attribute_item] = STATE(673), - [sym_mod_item] = STATE(673), - [sym_foreign_mod_item] = STATE(673), - [sym_struct_item] = STATE(673), - [sym_union_item] = STATE(673), - [sym_enum_item] = STATE(673), - [sym_extern_crate_declaration] = STATE(673), - [sym_const_item] = STATE(673), - [sym_static_item] = STATE(673), - [sym_type_item] = STATE(673), - [sym_function_item] = STATE(673), - [sym_function_signature_item] = STATE(673), - [sym_function_modifiers] = STATE(3243), - [sym_impl_item] = STATE(673), - [sym_trait_item] = STATE(673), - [sym_associated_type] = STATE(673), - [sym_let_declaration] = STATE(673), - [sym_use_declaration] = STATE(673), - [sym_extern_modifier] = STATE(2114), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(265), - [sym_scoped_identifier] = STATE(1512), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(282), - [sym_match_expression] = STATE(282), - [sym_while_expression] = STATE(282), - [sym_loop_expression] = STATE(282), - [sym_for_expression] = STATE(282), - [sym_const_block] = STATE(282), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3378), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(282), - [sym_async_block] = STATE(282), - [sym_try_block] = STATE(282), - [sym_block] = STATE(282), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(34), - [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(23), - [aux_sym_function_modifiers_repeat1] = STATE(2165), + [32] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(32), + [sym_block_comment] = STATE(32), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(325), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -23156,52 +22954,354 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, + [33] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(33), + [sym_block_comment] = STATE(33), + [aux_sym_source_file_repeat1] = STATE(34), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [ts_builtin_sym_end] = ACTIONS(327), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(117), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(37), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(41), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(45), + [anon_sym_enum] = ACTIONS(47), + [anon_sym_fn] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_if] = ACTIONS(53), + [anon_sym_impl] = ACTIONS(55), + [anon_sym_let] = ACTIONS(57), + [anon_sym_loop] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_mod] = ACTIONS(63), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(69), + [anon_sym_struct] = ACTIONS(71), + [anon_sym_trait] = ACTIONS(73), + [anon_sym_type] = ACTIONS(75), + [anon_sym_union] = ACTIONS(77), + [anon_sym_unsafe] = ACTIONS(79), + [anon_sym_use] = ACTIONS(81), + [anon_sym_while] = ACTIONS(83), + [anon_sym_extern] = ACTIONS(85), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(93), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [34] = { + [sym__statement] = STATE(727), + [sym_empty_statement] = STATE(726), + [sym_expression_statement] = STATE(726), + [sym_macro_definition] = STATE(726), + [sym_attribute_item] = STATE(726), + [sym_inner_attribute_item] = STATE(726), + [sym_mod_item] = STATE(726), + [sym_foreign_mod_item] = STATE(726), + [sym_struct_item] = STATE(726), + [sym_union_item] = STATE(726), + [sym_enum_item] = STATE(726), + [sym_extern_crate_declaration] = STATE(726), + [sym_const_item] = STATE(726), + [sym_static_item] = STATE(726), + [sym_type_item] = STATE(726), + [sym_function_item] = STATE(726), + [sym_function_signature_item] = STATE(726), + [sym_function_modifiers] = STATE(3518), + [sym_impl_item] = STATE(726), + [sym_trait_item] = STATE(726), + [sym_associated_type] = STATE(726), + [sym_let_declaration] = STATE(726), + [sym_use_declaration] = STATE(726), + [sym_extern_modifier] = STATE(2127), + [sym_visibility_modifier] = STATE(1924), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(173), + [sym_scoped_identifier] = STATE(1530), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(180), + [sym_match_expression] = STATE(180), + [sym_while_expression] = STATE(180), + [sym_loop_expression] = STATE(180), + [sym_for_expression] = STATE(180), + [sym_const_block] = STATE(180), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3513), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(180), + [sym_async_block] = STATE(180), + [sym_try_block] = STATE(180), + [sym_block] = STATE(180), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(34), + [sym_block_comment] = STATE(34), + [aux_sym_source_file_repeat1] = STATE(34), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [ts_builtin_sym_end] = ACTIONS(171), + [sym_identifier] = ACTIONS(153), + [anon_sym_SEMI] = ACTIONS(156), + [anon_sym_macro_rules_BANG] = ACTIONS(159), + [anon_sym_LPAREN] = ACTIONS(162), + [anon_sym_LBRACK] = ACTIONS(165), + [anon_sym_LBRACE] = ACTIONS(168), + [anon_sym_STAR] = ACTIONS(173), + [anon_sym_u8] = ACTIONS(176), + [anon_sym_i8] = ACTIONS(176), + [anon_sym_u16] = ACTIONS(176), + [anon_sym_i16] = ACTIONS(176), + [anon_sym_u32] = ACTIONS(176), + [anon_sym_i32] = ACTIONS(176), + [anon_sym_u64] = ACTIONS(176), + [anon_sym_i64] = ACTIONS(176), + [anon_sym_u128] = ACTIONS(176), + [anon_sym_i128] = ACTIONS(176), + [anon_sym_isize] = ACTIONS(176), + [anon_sym_usize] = ACTIONS(176), + [anon_sym_f32] = ACTIONS(176), + [anon_sym_f64] = ACTIONS(176), + [anon_sym_bool] = ACTIONS(176), + [anon_sym_str] = ACTIONS(176), + [anon_sym_char] = ACTIONS(176), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_COLON_COLON] = ACTIONS(179), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_AMP] = ACTIONS(182), + [anon_sym_POUND] = ACTIONS(185), + [anon_sym_LT] = ACTIONS(188), + [anon_sym_PIPE] = ACTIONS(191), + [anon_sym_SQUOTE] = ACTIONS(194), + [anon_sym_async] = ACTIONS(197), + [anon_sym_break] = ACTIONS(200), + [anon_sym_const] = ACTIONS(203), + [anon_sym_continue] = ACTIONS(206), + [anon_sym_default] = ACTIONS(209), + [anon_sym_enum] = ACTIONS(212), + [anon_sym_fn] = ACTIONS(215), + [anon_sym_for] = ACTIONS(218), + [anon_sym_if] = ACTIONS(221), + [anon_sym_impl] = ACTIONS(224), + [anon_sym_let] = ACTIONS(227), + [anon_sym_loop] = ACTIONS(230), + [anon_sym_match] = ACTIONS(233), + [anon_sym_mod] = ACTIONS(236), + [anon_sym_pub] = ACTIONS(239), + [anon_sym_return] = ACTIONS(242), + [anon_sym_static] = ACTIONS(245), + [anon_sym_struct] = ACTIONS(248), + [anon_sym_trait] = ACTIONS(251), + [anon_sym_type] = ACTIONS(254), + [anon_sym_union] = ACTIONS(257), + [anon_sym_unsafe] = ACTIONS(260), + [anon_sym_use] = ACTIONS(263), + [anon_sym_while] = ACTIONS(266), + [anon_sym_extern] = ACTIONS(269), + [anon_sym_DOT_DOT] = ACTIONS(272), + [anon_sym_yield] = ACTIONS(275), + [anon_sym_move] = ACTIONS(278), + [anon_sym_try] = ACTIONS(281), + [sym_integer_literal] = ACTIONS(284), + [aux_sym_string_literal_token1] = ACTIONS(287), + [sym_char_literal] = ACTIONS(284), + [anon_sym_true] = ACTIONS(290), + [anon_sym_false] = ACTIONS(290), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(293), + [sym_super] = ACTIONS(296), + [sym_crate] = ACTIONS(299), + [sym_metavariable] = ACTIONS(302), + [sym_raw_string_literal] = ACTIONS(284), + [sym_float_literal] = ACTIONS(284), + }, [35] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1470), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1487), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(329), @@ -23302,51 +23402,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [36] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1464), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1473), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), [sym_label] = STATE(35), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), [sym_identifier] = ACTIONS(329), @@ -23446,51 +23546,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [37] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1462), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1480), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), [sym_identifier] = ACTIONS(329), @@ -23590,64 +23690,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [38] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1466), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1480), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), [sym_identifier] = ACTIONS(329), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(373), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(373), + [anon_sym_SEMI] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_RPAREN] = ACTIONS(369), + [anon_sym_LBRACK] = ACTIONS(369), + [anon_sym_RBRACK] = ACTIONS(369), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_RBRACE] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(339), - [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_RBRACE] = ACTIONS(369), + [anon_sym_PLUS] = ACTIONS(371), + [anon_sym_STAR] = ACTIONS(371), + [anon_sym_QMARK] = ACTIONS(369), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -23665,21 +23765,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_SLASH] = ACTIONS(371), + [anon_sym_DASH] = ACTIONS(371), + [anon_sym_EQ] = ACTIONS(371), + [anon_sym_COMMA] = ACTIONS(369), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_DOT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(371), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_CARET] = ACTIONS(371), + [anon_sym_LT] = ACTIONS(371), + [anon_sym_GT] = ACTIONS(371), + [anon_sym_PIPE] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(375), + [anon_sym_as] = ACTIONS(371), [anon_sym_async] = ACTIONS(341), [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), @@ -23694,28 +23794,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_else] = ACTIONS(375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_else] = ACTIONS(371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(371), + [anon_sym_DOT_DOT_EQ] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_GT_EQ] = ACTIONS(369), + [anon_sym_LT_LT] = ACTIONS(371), + [anon_sym_GT_GT] = ACTIONS(371), + [anon_sym_PLUS_EQ] = ACTIONS(369), + [anon_sym_DASH_EQ] = ACTIONS(369), + [anon_sym_STAR_EQ] = ACTIONS(369), + [anon_sym_SLASH_EQ] = ACTIONS(369), + [anon_sym_PERCENT_EQ] = ACTIONS(369), + [anon_sym_AMP_EQ] = ACTIONS(369), + [anon_sym_PIPE_EQ] = ACTIONS(369), + [anon_sym_CARET_EQ] = ACTIONS(369), + [anon_sym_LT_LT_EQ] = ACTIONS(369), + [anon_sym_GT_GT_EQ] = ACTIONS(369), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -23734,64 +23834,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [39] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1484), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [sym_identifier] = ACTIONS(329), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_RBRACK] = ACTIONS(385), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_RBRACK] = ACTIONS(373), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_RBRACE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -23809,21 +23909,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(385), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(373), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(387), + [anon_sym_as] = ACTIONS(375), [anon_sym_async] = ACTIONS(341), [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), @@ -23838,28 +23938,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_else] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), + [anon_sym_else] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -23878,64 +23978,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [40] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1462), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1476), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), [sym_identifier] = ACTIONS(329), - [anon_sym_SEMI] = ACTIONS(369), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_RBRACK] = ACTIONS(369), + [anon_sym_SEMI] = ACTIONS(377), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(377), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), + [anon_sym_RBRACE] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(339), + [anon_sym_QMARK] = ACTIONS(377), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -23953,21 +24053,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COMMA] = ACTIONS(369), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_EQ] = ACTIONS(379), + [anon_sym_COMMA] = ACTIONS(377), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(371), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(381), + [anon_sym_PERCENT] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(385), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(371), + [anon_sym_as] = ACTIONS(379), [anon_sym_async] = ACTIONS(341), [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), @@ -23982,28 +24082,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_else] = ACTIONS(371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), + [anon_sym_else] = ACTIONS(379), + [anon_sym_DOT_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(377), + [anon_sym_PIPE_PIPE] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(377), + [anon_sym_LT_LT] = ACTIONS(379), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(377), + [anon_sym_DASH_EQ] = ACTIONS(377), + [anon_sym_STAR_EQ] = ACTIONS(377), + [anon_sym_SLASH_EQ] = ACTIONS(377), + [anon_sym_PERCENT_EQ] = ACTIONS(377), + [anon_sym_AMP_EQ] = ACTIONS(377), + [anon_sym_PIPE_EQ] = ACTIONS(377), + [anon_sym_CARET_EQ] = ACTIONS(377), + [anon_sym_LT_LT_EQ] = ACTIONS(377), + [anon_sym_GT_GT_EQ] = ACTIONS(377), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -24022,198 +24122,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [41] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1467), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1475), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), [sym_identifier] = ACTIONS(329), - [anon_sym_SEMI] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_RBRACK] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_COMMA] = ACTIONS(385), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(339), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(387), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_else] = ACTIONS(387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [42] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1468), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(42), - [sym_block_comment] = STATE(42), - [sym_identifier] = ACTIONS(329), [anon_sym_SEMI] = ACTIONS(389), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(389), @@ -24248,12 +24204,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(339), [anon_sym_DOT] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(377), + [anon_sym_AMP] = ACTIONS(381), [anon_sym_PERCENT] = ACTIONS(391), [anon_sym_CARET] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(383), [anon_sym_GT] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(385), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_as] = ACTIONS(391), [anon_sym_async] = ACTIONS(341), @@ -24272,7 +24228,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_while] = ACTIONS(359), [anon_sym_else] = ACTIONS(391), [anon_sym_DOT_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(383), + [anon_sym_DOT_DOT] = ACTIONS(387), [anon_sym_DOT_DOT_EQ] = ACTIONS(389), [anon_sym_AMP_AMP] = ACTIONS(389), [anon_sym_PIPE_PIPE] = ACTIONS(389), @@ -24309,52 +24265,196 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, + [42] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1484), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(42), + [sym_block_comment] = STATE(42), + [sym_identifier] = ACTIONS(329), + [anon_sym_SEMI] = ACTIONS(373), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RPAREN] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_RBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_COMMA] = ACTIONS(373), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(339), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_else] = ACTIONS(375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, [43] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1729), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1782), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(393), @@ -24403,14 +24503,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(337), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), [anon_sym_DOT_DOT_DOT] = ACTIONS(331), [anon_sym_DOT_DOT] = ACTIONS(337), [anon_sym_DOT_DOT_EQ] = ACTIONS(331), @@ -24432,80 +24532,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(331), [anon_sym_LT_LT_EQ] = ACTIONS(331), [anon_sym_GT_GT_EQ] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, [44] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1729), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_EQ_GT] = ACTIONS(331), - [anon_sym_COLON] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_QMARK] = ACTIONS(331), + [anon_sym_EQ_GT] = ACTIONS(389), + [anon_sym_PLUS] = ACTIONS(391), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(389), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -24523,11 +24622,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), + [anon_sym_SLASH] = ACTIONS(391), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(391), + [anon_sym_CARET] = ACTIONS(391), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(391), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(391), + [anon_sym_async] = ACTIONS(405), + [anon_sym_break] = ACTIONS(407), + [anon_sym_const] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(411), + [anon_sym_default] = ACTIONS(413), + [anon_sym_for] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), + [anon_sym_union] = ACTIONS(413), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(389), + [anon_sym_PIPE_PIPE] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(389), + [anon_sym_BANG_EQ] = ACTIONS(389), + [anon_sym_LT_EQ] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(389), + [anon_sym_LT_LT] = ACTIONS(391), + [anon_sym_GT_GT] = ACTIONS(391), + [anon_sym_PLUS_EQ] = ACTIONS(389), + [anon_sym_DASH_EQ] = ACTIONS(389), + [anon_sym_STAR_EQ] = ACTIONS(389), + [anon_sym_SLASH_EQ] = ACTIONS(389), + [anon_sym_PERCENT_EQ] = ACTIONS(389), + [anon_sym_AMP_EQ] = ACTIONS(389), + [anon_sym_PIPE_EQ] = ACTIONS(389), + [anon_sym_CARET_EQ] = ACTIONS(389), + [anon_sym_LT_LT_EQ] = ACTIONS(389), + [anon_sym_GT_GT_EQ] = ACTIONS(389), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), + }, + [45] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1661), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(45), + [sym_block_comment] = STATE(45), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_COLON] = ACTIONS(335), + [anon_sym_PLUS] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_QMARK] = ACTIONS(331), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), [anon_sym_SLASH] = ACTIONS(337), [anon_sym_DASH] = ACTIONS(337), [anon_sym_EQ] = ACTIONS(337), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(447), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), [anon_sym_DOT] = ACTIONS(337), [anon_sym_AMP] = ACTIONS(337), [anon_sym_PERCENT] = ACTIONS(337), @@ -24537,20 +24775,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(337), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_as] = ACTIONS(337), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), [anon_sym_DOT_DOT_DOT] = ACTIONS(331), [anon_sym_DOT_DOT] = ACTIONS(337), [anon_sym_DOT_DOT_EQ] = ACTIONS(331), @@ -24572,73 +24810,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(331), [anon_sym_LT_LT_EQ] = ACTIONS(331), [anon_sym_GT_GT_EQ] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [45] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(45), - [sym_block_comment] = STATE(45), + [46] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(46), + [sym_block_comment] = STATE(46), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(449), [anon_sym_LBRACK] = ACTIONS(369), [anon_sym_LBRACE] = ACTIONS(395), [anon_sym_EQ_GT] = ACTIONS(369), @@ -24682,14 +24920,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(371), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), [anon_sym_DOT_DOT_DOT] = ACTIONS(369), [anon_sym_DOT_DOT] = ACTIONS(371), [anon_sym_DOT_DOT_EQ] = ACTIONS(369), @@ -24711,79 +24949,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(369), [anon_sym_LT_LT_EQ] = ACTIONS(369), [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [46] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(46), - [sym_block_comment] = STATE(46), + [47] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1568), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(47), + [sym_block_comment] = STATE(47), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(331), + [anon_sym_LBRACE] = ACTIONS(331), + [anon_sym_COLON] = ACTIONS(335), + [anon_sym_PLUS] = ACTIONS(337), + [anon_sym_STAR] = ACTIONS(337), + [anon_sym_QMARK] = ACTIONS(331), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(337), + [anon_sym_DASH] = ACTIONS(337), + [anon_sym_EQ] = ACTIONS(337), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(337), + [anon_sym_AMP] = ACTIONS(337), + [anon_sym_PERCENT] = ACTIONS(337), + [anon_sym_CARET] = ACTIONS(337), + [anon_sym_LT] = ACTIONS(337), + [anon_sym_GT] = ACTIONS(337), + [anon_sym_PIPE] = ACTIONS(337), + [anon_sym_SQUOTE] = ACTIONS(337), + [anon_sym_as] = ACTIONS(337), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(331), + [anon_sym_DOT_DOT] = ACTIONS(337), + [anon_sym_DOT_DOT_EQ] = ACTIONS(331), + [anon_sym_AMP_AMP] = ACTIONS(331), + [anon_sym_PIPE_PIPE] = ACTIONS(331), + [anon_sym_EQ_EQ] = ACTIONS(331), + [anon_sym_BANG_EQ] = ACTIONS(331), + [anon_sym_LT_EQ] = ACTIONS(331), + [anon_sym_GT_EQ] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(337), + [anon_sym_GT_GT] = ACTIONS(337), + [anon_sym_PLUS_EQ] = ACTIONS(331), + [anon_sym_DASH_EQ] = ACTIONS(331), + [anon_sym_STAR_EQ] = ACTIONS(331), + [anon_sym_SLASH_EQ] = ACTIONS(331), + [anon_sym_PERCENT_EQ] = ACTIONS(331), + [anon_sym_AMP_EQ] = ACTIONS(331), + [anon_sym_PIPE_EQ] = ACTIONS(331), + [anon_sym_CARET_EQ] = ACTIONS(331), + [anon_sym_LT_LT_EQ] = ACTIONS(331), + [anon_sym_GT_GT_EQ] = ACTIONS(331), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [48] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1733), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(48), + [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_EQ_GT] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_EQ_GT] = ACTIONS(377), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(377), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -24801,122 +25178,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_EQ] = ACTIONS(379), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(453), + [anon_sym_PERCENT] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(385), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(387), + [anon_sym_as] = ACTIONS(379), [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), + [anon_sym_break] = ACTIONS(407), [anon_sym_const] = ACTIONS(409), [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(455), + [anon_sym_DOT_DOT_EQ] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(377), + [anon_sym_PIPE_PIPE] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(377), + [anon_sym_LT_LT] = ACTIONS(379), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(377), + [anon_sym_DASH_EQ] = ACTIONS(377), + [anon_sym_STAR_EQ] = ACTIONS(377), + [anon_sym_SLASH_EQ] = ACTIONS(377), + [anon_sym_PERCENT_EQ] = ACTIONS(377), + [anon_sym_AMP_EQ] = ACTIONS(377), + [anon_sym_PIPE_EQ] = ACTIONS(377), + [anon_sym_CARET_EQ] = ACTIONS(377), + [anon_sym_LT_LT_EQ] = ACTIONS(377), + [anon_sym_GT_GT_EQ] = ACTIONS(377), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [47] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1741), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(47), - [sym_block_comment] = STATE(47), + [49] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), + [anon_sym_LPAREN] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(369), [anon_sym_LBRACE] = ACTIONS(395), [anon_sym_EQ_GT] = ACTIONS(369), @@ -24944,7 +25321,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH] = ACTIONS(371), [anon_sym_EQ] = ACTIONS(371), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_DOT] = ACTIONS(371), [anon_sym_AMP] = ACTIONS(371), [anon_sym_PERCENT] = ACTIONS(371), @@ -24955,19 +25332,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_as] = ACTIONS(371), [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), + [anon_sym_break] = ACTIONS(407), [anon_sym_const] = ACTIONS(409), [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), [anon_sym_DOT_DOT_DOT] = ACTIONS(369), [anon_sym_DOT_DOT] = ACTIONS(371), [anon_sym_DOT_DOT_EQ] = ACTIONS(369), @@ -24989,210 +25366,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(369), [anon_sym_LT_LT_EQ] = ACTIONS(369), [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [48] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1681), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(48), - [sym_block_comment] = STATE(48), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_EQ_GT] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(387), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(387), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [49] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1671), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), + [50] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1721), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), [sym_label] = STATE(43), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(49), - [sym_block_comment] = STATE(49), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), [sym_identifier] = ACTIONS(393), [anon_sym_LPAREN] = ACTIONS(363), [anon_sym_LBRACK] = ACTIONS(363), @@ -25230,7 +25468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(365), [anon_sym_GT] = ACTIONS(365), [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(497), [anon_sym_as] = ACTIONS(365), [anon_sym_async] = ACTIONS(405), [anon_sym_break] = ACTIONS(407), @@ -25238,14 +25476,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(365), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), [anon_sym_DOT_DOT_DOT] = ACTIONS(363), [anon_sym_DOT_DOT] = ACTIONS(365), [anon_sym_DOT_DOT_EQ] = ACTIONS(363), @@ -25267,218 +25505,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(363), [anon_sym_LT_LT_EQ] = ACTIONS(363), [anon_sym_GT_GT_EQ] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [50] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1681), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(50), - [sym_block_comment] = STATE(50), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_EQ_GT] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(387), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(387), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, [51] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1732), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_EQ_GT] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), + [anon_sym_EQ_GT] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -25496,127 +25595,127 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(387), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(447), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), + [anon_sym_BANG] = ACTIONS(403), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(387), + [anon_sym_as] = ACTIONS(375), [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), + [anon_sym_break] = ACTIONS(407), [anon_sym_const] = ACTIONS(409), [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, [52] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1732), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(373), [anon_sym_LBRACE] = ACTIONS(395), [anon_sym_EQ_GT] = ACTIONS(373), [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(375), [anon_sym_QMARK] = ACTIONS(373), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), @@ -25636,35 +25735,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(375), [anon_sym_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(403), [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(467), + [anon_sym_AMP] = ACTIONS(375), [anon_sym_PERCENT] = ACTIONS(375), [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(375), [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(375), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_as] = ACTIONS(375), [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), + [anon_sym_break] = ACTIONS(407), [anon_sym_const] = ACTIONS(409), [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(469), + [anon_sym_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(373), [anon_sym_AMP_AMP] = ACTIONS(373), [anon_sym_PIPE_PIPE] = ACTIONS(373), @@ -25684,101 +25783,376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(373), [anon_sym_LT_LT_EQ] = ACTIONS(373), [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, [53] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1741), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1612), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(369), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [54] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1702), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(54), + [sym_block_comment] = STATE(54), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(463), + [anon_sym_QMARK] = ACTIONS(377), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_EQ] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(499), + [anon_sym_PERCENT] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(385), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(379), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(501), + [anon_sym_DOT_DOT_EQ] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(377), + [anon_sym_PIPE_PIPE] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(377), + [anon_sym_LT_LT] = ACTIONS(379), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(377), + [anon_sym_DASH_EQ] = ACTIONS(377), + [anon_sym_STAR_EQ] = ACTIONS(377), + [anon_sym_SLASH_EQ] = ACTIONS(377), + [anon_sym_PERCENT_EQ] = ACTIONS(377), + [anon_sym_AMP_EQ] = ACTIONS(377), + [anon_sym_PIPE_EQ] = ACTIONS(377), + [anon_sym_CARET_EQ] = ACTIONS(377), + [anon_sym_LT_LT_EQ] = ACTIONS(377), + [anon_sym_GT_GT_EQ] = ACTIONS(377), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [55] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(55), + [sym_block_comment] = STATE(55), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_EQ_GT] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(369), [anon_sym_PLUS] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(371), [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), [anon_sym_SLASH] = ACTIONS(371), [anon_sym_DASH] = ACTIONS(371), [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(447), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), [anon_sym_DOT] = ACTIONS(371), [anon_sym_AMP] = ACTIONS(371), [anon_sym_PERCENT] = ACTIONS(371), @@ -25788,28 +26162,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(371), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(369), + [anon_sym_DOT_DOT] = ACTIONS(371), + [anon_sym_DOT_DOT_EQ] = ACTIONS(369), + [anon_sym_AMP_AMP] = ACTIONS(369), + [anon_sym_PIPE_PIPE] = ACTIONS(369), + [anon_sym_EQ_EQ] = ACTIONS(369), + [anon_sym_BANG_EQ] = ACTIONS(369), + [anon_sym_LT_EQ] = ACTIONS(369), [anon_sym_GT_EQ] = ACTIONS(369), [anon_sym_LT_LT] = ACTIONS(371), [anon_sym_GT_GT] = ACTIONS(371), @@ -25823,101 +26197,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(369), [anon_sym_LT_LT_EQ] = ACTIONS(369), [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [54] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(54), - [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), + [56] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1588), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(56), + [sym_block_comment] = STATE(56), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_EQ_GT] = ACTIONS(369), + [anon_sym_LBRACE] = ACTIONS(369), [anon_sym_PLUS] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(371), [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), [anon_sym_SLASH] = ACTIONS(371), [anon_sym_DASH] = ACTIONS(371), [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(483), [anon_sym_DOT] = ACTIONS(371), [anon_sym_AMP] = ACTIONS(371), [anon_sym_PERCENT] = ACTIONS(371), @@ -25925,22 +26298,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(371), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), [anon_sym_DOT_DOT_DOT] = ACTIONS(369), [anon_sym_DOT_DOT] = ACTIONS(371), [anon_sym_DOT_DOT_EQ] = ACTIONS(369), @@ -25962,284 +26335,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(369), [anon_sym_LT_LT_EQ] = ACTIONS(369), [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [55] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(55), - [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_EQ_GT] = ACTIONS(373), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(403), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(381), + [57] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1616), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(57), + [sym_block_comment] = STATE(57), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_PLUS] = ACTIONS(379), + [anon_sym_STAR] = ACTIONS(483), + [anon_sym_QMARK] = ACTIONS(377), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(379), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_EQ] = ACTIONS(379), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(379), + [anon_sym_AMP] = ACTIONS(503), + [anon_sym_PERCENT] = ACTIONS(379), + [anon_sym_CARET] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(385), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(375), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [56] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1734), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(56), - [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_LBRACK] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_COLON] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_EQ] = ACTIONS(337), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_PERCENT] = ACTIONS(337), - [anon_sym_CARET] = ACTIONS(337), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_PIPE] = ACTIONS(337), - [anon_sym_SQUOTE] = ACTIONS(337), - [anon_sym_as] = ACTIONS(337), + [anon_sym_as] = ACTIONS(379), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(331), - [anon_sym_DOT_DOT] = ACTIONS(337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(331), - [anon_sym_EQ_EQ] = ACTIONS(331), - [anon_sym_BANG_EQ] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(331), - [anon_sym_GT_EQ] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_GT_GT] = ACTIONS(337), - [anon_sym_PLUS_EQ] = ACTIONS(331), - [anon_sym_DASH_EQ] = ACTIONS(331), - [anon_sym_STAR_EQ] = ACTIONS(331), - [anon_sym_SLASH_EQ] = ACTIONS(331), - [anon_sym_PERCENT_EQ] = ACTIONS(331), - [anon_sym_AMP_EQ] = ACTIONS(331), - [anon_sym_PIPE_EQ] = ACTIONS(331), - [anon_sym_CARET_EQ] = ACTIONS(331), - [anon_sym_LT_LT_EQ] = ACTIONS(331), - [anon_sym_GT_GT_EQ] = ACTIONS(331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(505), + [anon_sym_DOT_DOT_EQ] = ACTIONS(377), + [anon_sym_AMP_AMP] = ACTIONS(377), + [anon_sym_PIPE_PIPE] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(377), + [anon_sym_BANG_EQ] = ACTIONS(377), + [anon_sym_LT_EQ] = ACTIONS(377), + [anon_sym_GT_EQ] = ACTIONS(377), + [anon_sym_LT_LT] = ACTIONS(379), + [anon_sym_GT_GT] = ACTIONS(379), + [anon_sym_PLUS_EQ] = ACTIONS(377), + [anon_sym_DASH_EQ] = ACTIONS(377), + [anon_sym_STAR_EQ] = ACTIONS(377), + [anon_sym_SLASH_EQ] = ACTIONS(377), + [anon_sym_PERCENT_EQ] = ACTIONS(377), + [anon_sym_AMP_EQ] = ACTIONS(377), + [anon_sym_PIPE_EQ] = ACTIONS(377), + [anon_sym_CARET_EQ] = ACTIONS(377), + [anon_sym_LT_LT_EQ] = ACTIONS(377), + [anon_sym_GT_GT_EQ] = ACTIONS(377), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -26250,137 +26483,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [57] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1803), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(57), - [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(331), - [anon_sym_LBRACK] = ACTIONS(331), - [anon_sym_LBRACE] = ACTIONS(331), - [anon_sym_COLON] = ACTIONS(335), - [anon_sym_PLUS] = ACTIONS(337), - [anon_sym_STAR] = ACTIONS(337), - [anon_sym_QMARK] = ACTIONS(331), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(337), - [anon_sym_DASH] = ACTIONS(337), - [anon_sym_EQ] = ACTIONS(337), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_DOT] = ACTIONS(337), - [anon_sym_AMP] = ACTIONS(337), - [anon_sym_PERCENT] = ACTIONS(337), - [anon_sym_CARET] = ACTIONS(337), - [anon_sym_LT] = ACTIONS(337), - [anon_sym_GT] = ACTIONS(337), - [anon_sym_PIPE] = ACTIONS(337), + [58] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(58), + [sym_block_comment] = STATE(58), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(337), + [anon_sym_as] = ACTIONS(375), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(331), - [anon_sym_DOT_DOT] = ACTIONS(337), - [anon_sym_DOT_DOT_EQ] = ACTIONS(331), - [anon_sym_AMP_AMP] = ACTIONS(331), - [anon_sym_PIPE_PIPE] = ACTIONS(331), - [anon_sym_EQ_EQ] = ACTIONS(331), - [anon_sym_BANG_EQ] = ACTIONS(331), - [anon_sym_LT_EQ] = ACTIONS(331), - [anon_sym_GT_EQ] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(337), - [anon_sym_GT_GT] = ACTIONS(337), - [anon_sym_PLUS_EQ] = ACTIONS(331), - [anon_sym_DASH_EQ] = ACTIONS(331), - [anon_sym_STAR_EQ] = ACTIONS(331), - [anon_sym_SLASH_EQ] = ACTIONS(331), - [anon_sym_PERCENT_EQ] = ACTIONS(331), - [anon_sym_AMP_EQ] = ACTIONS(331), - [anon_sym_PIPE_EQ] = ACTIONS(331), - [anon_sym_CARET_EQ] = ACTIONS(331), - [anon_sym_LT_LT_EQ] = ACTIONS(331), - [anon_sym_GT_GT_EQ] = ACTIONS(331), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -26389,116 +26621,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [58] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(58), - [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_EQ_GT] = ACTIONS(389), + [59] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1713), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(59), + [sym_block_comment] = STATE(59), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(463), [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(463), [anon_sym_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(403), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), [anon_sym_DOT] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(471), + [anon_sym_AMP] = ACTIONS(499), [anon_sym_PERCENT] = ACTIONS(391), [anon_sym_CARET] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(383), [anon_sym_GT] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(385), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_as] = ACTIONS(391), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), [anon_sym_DOT_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(501), [anon_sym_DOT_DOT_EQ] = ACTIONS(389), [anon_sym_AMP_AMP] = ACTIONS(389), [anon_sym_PIPE_PIPE] = ACTIONS(389), @@ -26518,101 +26749,376 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(389), [anon_sym_LT_LT_EQ] = ACTIONS(389), [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [59] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(44), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(59), - [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(393), + [60] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1612), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(60), + [sym_block_comment] = STATE(60), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(483), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(375), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [61] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(61), + [sym_block_comment] = STATE(61), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(373), + [anon_sym_LBRACE] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_STAR] = ACTIONS(375), + [anon_sym_QMARK] = ACTIONS(373), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(375), + [anon_sym_PERCENT] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_PIPE] = ACTIONS(375), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_as] = ACTIONS(375), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(373), + [anon_sym_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(373), + [anon_sym_AMP_AMP] = ACTIONS(373), + [anon_sym_PIPE_PIPE] = ACTIONS(373), + [anon_sym_EQ_EQ] = ACTIONS(373), + [anon_sym_BANG_EQ] = ACTIONS(373), + [anon_sym_LT_EQ] = ACTIONS(373), + [anon_sym_GT_EQ] = ACTIONS(373), + [anon_sym_LT_LT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_PLUS_EQ] = ACTIONS(373), + [anon_sym_DASH_EQ] = ACTIONS(373), + [anon_sym_STAR_EQ] = ACTIONS(373), + [anon_sym_SLASH_EQ] = ACTIONS(373), + [anon_sym_PERCENT_EQ] = ACTIONS(373), + [anon_sym_AMP_EQ] = ACTIONS(373), + [anon_sym_PIPE_EQ] = ACTIONS(373), + [anon_sym_CARET_EQ] = ACTIONS(373), + [anon_sym_LT_LT_EQ] = ACTIONS(373), + [anon_sym_GT_GT_EQ] = ACTIONS(373), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [62] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1615), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(47), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(62), + [sym_block_comment] = STATE(62), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(363), [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_EQ_GT] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(363), [anon_sym_PLUS] = ACTIONS(365), [anon_sym_STAR] = ACTIONS(365), [anon_sym_QMARK] = ACTIONS(363), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), [anon_sym_SLASH] = ACTIONS(365), [anon_sym_DASH] = ACTIONS(365), [anon_sym_EQ] = ACTIONS(365), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(447), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(483), [anon_sym_DOT] = ACTIONS(365), [anon_sym_AMP] = ACTIONS(365), [anon_sym_PERCENT] = ACTIONS(365), @@ -26620,22 +27126,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(365), [anon_sym_GT] = ACTIONS(365), [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(463), + [anon_sym_SQUOTE] = ACTIONS(365), [anon_sym_as] = ACTIONS(365), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), [anon_sym_DOT_DOT_DOT] = ACTIONS(363), [anon_sym_DOT_DOT] = ACTIONS(365), [anon_sym_DOT_DOT_EQ] = ACTIONS(363), @@ -26657,126 +27163,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(363), [anon_sym_LT_LT_EQ] = ACTIONS(363), [anon_sym_GT_GT_EQ] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [60] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(60), - [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_EQ_GT] = ACTIONS(389), + [63] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1624), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(63), + [sym_block_comment] = STATE(63), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(447), + [anon_sym_STAR] = ACTIONS(483), [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(483), [anon_sym_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(447), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(483), [anon_sym_DOT] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(467), + [anon_sym_AMP] = ACTIONS(503), [anon_sym_PERCENT] = ACTIONS(391), [anon_sym_CARET] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(379), + [anon_sym_LT] = ACTIONS(383), [anon_sym_GT] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_PIPE] = ACTIONS(385), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_as] = ACTIONS(391), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), [anon_sym_DOT_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(469), + [anon_sym_DOT_DOT] = ACTIONS(505), [anon_sym_DOT_DOT_EQ] = ACTIONS(389), [anon_sym_AMP_AMP] = ACTIONS(389), [anon_sym_PIPE_PIPE] = ACTIONS(389), @@ -26796,284 +27301,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(389), [anon_sym_LT_LT_EQ] = ACTIONS(389), [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [61] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(61), - [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [62] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1777), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(62), - [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(515), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(375), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -27082,136 +27311,136 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [63] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1775), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(63), - [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(387), + [64] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1720), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(45), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(64), + [sym_block_comment] = STATE(64), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(363), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LBRACE] = ACTIONS(363), + [anon_sym_PLUS] = ACTIONS(365), + [anon_sym_STAR] = ACTIONS(365), + [anon_sym_QMARK] = ACTIONS(363), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_SLASH] = ACTIONS(365), + [anon_sym_DASH] = ACTIONS(365), + [anon_sym_EQ] = ACTIONS(365), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), + [anon_sym_DOT] = ACTIONS(365), + [anon_sym_AMP] = ACTIONS(365), + [anon_sym_PERCENT] = ACTIONS(365), + [anon_sym_CARET] = ACTIONS(365), + [anon_sym_LT] = ACTIONS(365), + [anon_sym_GT] = ACTIONS(365), + [anon_sym_PIPE] = ACTIONS(365), + [anon_sym_SQUOTE] = ACTIONS(367), + [anon_sym_as] = ACTIONS(365), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT_DOT] = ACTIONS(363), + [anon_sym_DOT_DOT] = ACTIONS(365), + [anon_sym_DOT_DOT_EQ] = ACTIONS(363), + [anon_sym_AMP_AMP] = ACTIONS(363), + [anon_sym_PIPE_PIPE] = ACTIONS(363), + [anon_sym_EQ_EQ] = ACTIONS(363), + [anon_sym_BANG_EQ] = ACTIONS(363), + [anon_sym_LT_EQ] = ACTIONS(363), + [anon_sym_GT_EQ] = ACTIONS(363), + [anon_sym_LT_LT] = ACTIONS(365), + [anon_sym_GT_GT] = ACTIONS(365), + [anon_sym_PLUS_EQ] = ACTIONS(363), + [anon_sym_DASH_EQ] = ACTIONS(363), + [anon_sym_STAR_EQ] = ACTIONS(363), + [anon_sym_SLASH_EQ] = ACTIONS(363), + [anon_sym_PERCENT_EQ] = ACTIONS(363), + [anon_sym_AMP_EQ] = ACTIONS(363), + [anon_sym_PIPE_EQ] = ACTIONS(363), + [anon_sym_CARET_EQ] = ACTIONS(363), + [anon_sym_LT_LT_EQ] = ACTIONS(363), + [anon_sym_GT_GT_EQ] = ACTIONS(363), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -27220,90 +27449,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [64] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(64), - [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(475), + [65] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1588), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(369), [anon_sym_LBRACE] = ACTIONS(369), [anon_sym_PLUS] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(371), [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), [anon_sym_SLASH] = ACTIONS(371), [anon_sym_DASH] = ACTIONS(371), [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(481), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(483), [anon_sym_DOT] = ACTIONS(371), [anon_sym_AMP] = ACTIONS(371), [anon_sym_PERCENT] = ACTIONS(371), @@ -27314,17 +27543,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(371), [anon_sym_as] = ACTIONS(371), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), [anon_sym_DOT_DOT_DOT] = ACTIONS(369), @@ -27358,504 +27587,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [65] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(65), - [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(387), - [anon_sym_as] = ACTIONS(387), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, [66] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(385), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(387), - [anon_sym_as] = ACTIONS(387), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [67] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1774), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(67), - [sym_block_comment] = STATE(67), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_DOT] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(515), - [anon_sym_PERCENT] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(391), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_PLUS_EQ] = ACTIONS(389), - [anon_sym_DASH_EQ] = ACTIONS(389), - [anon_sym_STAR_EQ] = ACTIONS(389), - [anon_sym_SLASH_EQ] = ACTIONS(389), - [anon_sym_PERCENT_EQ] = ACTIONS(389), - [anon_sym_AMP_EQ] = ACTIONS(389), - [anon_sym_PIPE_EQ] = ACTIONS(389), - [anon_sym_CARET_EQ] = ACTIONS(389), - [anon_sym_LT_LT_EQ] = ACTIONS(389), - [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [68] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(68), - [sym_block_comment] = STATE(68), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(369), [anon_sym_LBRACK] = ACTIONS(369), [anon_sym_LBRACE] = ACTIONS(369), [anon_sym_PLUS] = ACTIONS(371), [anon_sym_STAR] = ACTIONS(371), [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), [anon_sym_SLASH] = ACTIONS(371), [anon_sym_DASH] = ACTIONS(371), [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(481), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(463), [anon_sym_DOT] = ACTIONS(371), [anon_sym_AMP] = ACTIONS(371), [anon_sym_PERCENT] = ACTIONS(371), @@ -27863,20 +27678,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(371), [anon_sym_GT] = ACTIONS(371), [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(371), + [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_as] = ACTIONS(371), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), [anon_sym_DOT_DOT_DOT] = ACTIONS(369), @@ -27900,8 +27715,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(369), [anon_sym_LT_LT_EQ] = ACTIONS(369), [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -27910,136 +27725,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [69] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1598), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(69), - [sym_block_comment] = STATE(69), - [sym_identifier] = ACTIONS(475), + [67] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1541), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(67), + [sym_block_comment] = STATE(67), + [aux_sym_enum_variant_list_repeat1] = STATE(73), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(507), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_PLUS] = ACTIONS(375), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(373), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(375), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(375), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PERCENT] = ACTIONS(375), - [anon_sym_CARET] = ACTIONS(375), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COMMA] = ACTIONS(509), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(375), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(373), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(373), - [anon_sym_AMP_AMP] = ACTIONS(373), - [anon_sym_PIPE_PIPE] = ACTIONS(373), - [anon_sym_EQ_EQ] = ACTIONS(373), - [anon_sym_BANG_EQ] = ACTIONS(373), - [anon_sym_LT_EQ] = ACTIONS(373), - [anon_sym_GT_EQ] = ACTIONS(373), - [anon_sym_LT_LT] = ACTIONS(375), - [anon_sym_GT_GT] = ACTIONS(375), - [anon_sym_PLUS_EQ] = ACTIONS(373), - [anon_sym_DASH_EQ] = ACTIONS(373), - [anon_sym_STAR_EQ] = ACTIONS(373), - [anon_sym_SLASH_EQ] = ACTIONS(373), - [anon_sym_PERCENT_EQ] = ACTIONS(373), - [anon_sym_AMP_EQ] = ACTIONS(373), - [anon_sym_PIPE_EQ] = ACTIONS(373), - [anon_sym_CARET_EQ] = ACTIONS(373), - [anon_sym_LT_LT_EQ] = ACTIONS(373), - [anon_sym_GT_GT_EQ] = ACTIONS(373), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -28048,136 +27839,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [70] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1792), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(57), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(70), - [sym_block_comment] = STATE(70), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_QMARK] = ACTIONS(363), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_EQ] = ACTIONS(365), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_PERCENT] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(367), - [anon_sym_as] = ACTIONS(365), + [68] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(68), + [sym_block_comment] = STATE(68), + [aux_sym_enum_variant_list_repeat1] = STATE(108), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(513), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COMMA] = ACTIONS(515), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(511), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(363), - [anon_sym_DOT_DOT] = ACTIONS(365), - [anon_sym_DOT_DOT_EQ] = ACTIONS(363), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_LT_EQ] = ACTIONS(363), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [anon_sym_PLUS_EQ] = ACTIONS(363), - [anon_sym_DASH_EQ] = ACTIONS(363), - [anon_sym_STAR_EQ] = ACTIONS(363), - [anon_sym_SLASH_EQ] = ACTIONS(363), - [anon_sym_PERCENT_EQ] = ACTIONS(363), - [anon_sym_AMP_EQ] = ACTIONS(363), - [anon_sym_PIPE_EQ] = ACTIONS(363), - [anon_sym_CARET_EQ] = ACTIONS(363), - [anon_sym_LT_LT_EQ] = ACTIONS(363), - [anon_sym_GT_GT_EQ] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -28186,618 +27953,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [71] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(71), - [sym_block_comment] = STATE(71), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_PLUS] = ACTIONS(391), - [anon_sym_STAR] = ACTIONS(481), - [anon_sym_QMARK] = ACTIONS(389), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(391), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(391), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PERCENT] = ACTIONS(391), - [anon_sym_CARET] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(379), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(391), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(389), - [anon_sym_PIPE_PIPE] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(389), - [anon_sym_BANG_EQ] = ACTIONS(389), - [anon_sym_LT_EQ] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_PLUS_EQ] = ACTIONS(389), - [anon_sym_DASH_EQ] = ACTIONS(389), - [anon_sym_STAR_EQ] = ACTIONS(389), - [anon_sym_SLASH_EQ] = ACTIONS(389), - [anon_sym_PERCENT_EQ] = ACTIONS(389), - [anon_sym_AMP_EQ] = ACTIONS(389), - [anon_sym_PIPE_EQ] = ACTIONS(389), - [anon_sym_CARET_EQ] = ACTIONS(389), - [anon_sym_LT_LT_EQ] = ACTIONS(389), - [anon_sym_GT_GT_EQ] = ACTIONS(389), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [72] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1611), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(56), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(72), - [sym_block_comment] = STATE(72), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_LBRACK] = ACTIONS(363), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_PLUS] = ACTIONS(365), - [anon_sym_STAR] = ACTIONS(365), - [anon_sym_QMARK] = ACTIONS(363), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(365), - [anon_sym_DASH] = ACTIONS(365), - [anon_sym_EQ] = ACTIONS(365), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(481), - [anon_sym_DOT] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(365), - [anon_sym_PERCENT] = ACTIONS(365), - [anon_sym_CARET] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_PIPE] = ACTIONS(365), - [anon_sym_SQUOTE] = ACTIONS(365), - [anon_sym_as] = ACTIONS(365), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(363), - [anon_sym_DOT_DOT] = ACTIONS(365), - [anon_sym_DOT_DOT_EQ] = ACTIONS(363), - [anon_sym_AMP_AMP] = ACTIONS(363), - [anon_sym_PIPE_PIPE] = ACTIONS(363), - [anon_sym_EQ_EQ] = ACTIONS(363), - [anon_sym_BANG_EQ] = ACTIONS(363), - [anon_sym_LT_EQ] = ACTIONS(363), - [anon_sym_GT_EQ] = ACTIONS(363), - [anon_sym_LT_LT] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [anon_sym_PLUS_EQ] = ACTIONS(363), - [anon_sym_DASH_EQ] = ACTIONS(363), - [anon_sym_STAR_EQ] = ACTIONS(363), - [anon_sym_SLASH_EQ] = ACTIONS(363), - [anon_sym_PERCENT_EQ] = ACTIONS(363), - [anon_sym_AMP_EQ] = ACTIONS(363), - [anon_sym_PIPE_EQ] = ACTIONS(363), - [anon_sym_CARET_EQ] = ACTIONS(363), - [anon_sym_LT_LT_EQ] = ACTIONS(363), - [anon_sym_GT_GT_EQ] = ACTIONS(363), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [73] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(73), - [sym_block_comment] = STATE(73), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(369), - [anon_sym_LBRACE] = ACTIONS(369), - [anon_sym_PLUS] = ACTIONS(371), - [anon_sym_STAR] = ACTIONS(371), - [anon_sym_QMARK] = ACTIONS(369), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(371), - [anon_sym_DASH] = ACTIONS(371), - [anon_sym_EQ] = ACTIONS(371), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_DOT] = ACTIONS(371), - [anon_sym_AMP] = ACTIONS(371), - [anon_sym_PERCENT] = ACTIONS(371), - [anon_sym_CARET] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_PIPE] = ACTIONS(371), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(371), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(369), - [anon_sym_DOT_DOT] = ACTIONS(371), - [anon_sym_DOT_DOT_EQ] = ACTIONS(369), - [anon_sym_AMP_AMP] = ACTIONS(369), - [anon_sym_PIPE_PIPE] = ACTIONS(369), - [anon_sym_EQ_EQ] = ACTIONS(369), - [anon_sym_BANG_EQ] = ACTIONS(369), - [anon_sym_LT_EQ] = ACTIONS(369), - [anon_sym_GT_EQ] = ACTIONS(369), - [anon_sym_LT_LT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_PLUS_EQ] = ACTIONS(369), - [anon_sym_DASH_EQ] = ACTIONS(369), - [anon_sym_STAR_EQ] = ACTIONS(369), - [anon_sym_SLASH_EQ] = ACTIONS(369), - [anon_sym_PERCENT_EQ] = ACTIONS(369), - [anon_sym_AMP_EQ] = ACTIONS(369), - [anon_sym_PIPE_EQ] = ACTIONS(369), - [anon_sym_CARET_EQ] = ACTIONS(369), - [anon_sym_LT_LT_EQ] = ACTIONS(369), - [anon_sym_GT_GT_EQ] = ACTIONS(369), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [74] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1775), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(74), - [sym_block_comment] = STATE(74), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(385), - [anon_sym_LBRACE] = ACTIONS(385), - [anon_sym_PLUS] = ACTIONS(387), - [anon_sym_STAR] = ACTIONS(387), - [anon_sym_QMARK] = ACTIONS(385), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_SLASH] = ACTIONS(387), - [anon_sym_DASH] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_DOT] = ACTIONS(387), - [anon_sym_AMP] = ACTIONS(387), - [anon_sym_PERCENT] = ACTIONS(387), - [anon_sym_CARET] = ACTIONS(387), - [anon_sym_LT] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(387), - [anon_sym_PIPE] = ACTIONS(387), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_as] = ACTIONS(387), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(385), - [anon_sym_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(385), - [anon_sym_AMP_AMP] = ACTIONS(385), - [anon_sym_PIPE_PIPE] = ACTIONS(385), - [anon_sym_EQ_EQ] = ACTIONS(385), - [anon_sym_BANG_EQ] = ACTIONS(385), - [anon_sym_LT_EQ] = ACTIONS(385), - [anon_sym_GT_EQ] = ACTIONS(385), - [anon_sym_LT_LT] = ACTIONS(387), - [anon_sym_GT_GT] = ACTIONS(387), - [anon_sym_PLUS_EQ] = ACTIONS(385), - [anon_sym_DASH_EQ] = ACTIONS(385), - [anon_sym_STAR_EQ] = ACTIONS(385), - [anon_sym_SLASH_EQ] = ACTIONS(385), - [anon_sym_PERCENT_EQ] = ACTIONS(385), - [anon_sym_AMP_EQ] = ACTIONS(385), - [anon_sym_PIPE_EQ] = ACTIONS(385), - [anon_sym_CARET_EQ] = ACTIONS(385), - [anon_sym_LT_LT_EQ] = ACTIONS(385), - [anon_sym_GT_GT_EQ] = ACTIONS(385), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [75] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(75), - [sym_block_comment] = STATE(75), - [aux_sym_enum_variant_list_repeat1] = STATE(116), + [69] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1594), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(69), + [sym_block_comment] = STATE(69), + [aux_sym_enum_variant_list_repeat1] = STATE(104), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(523), + [anon_sym_RPAREN] = ACTIONS(517), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -28819,11 +28034,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COMMA] = ACTIONS(525), + [anon_sym_COMMA] = ACTIONS(519), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -28859,60 +28074,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [76] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1542), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(76), - [sym_block_comment] = STATE(76), - [aux_sym_enum_variant_list_repeat1] = STATE(80), + [70] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1601), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(70), + [sym_block_comment] = STATE(70), + [aux_sym_enum_variant_list_repeat1] = STATE(996), + [sym_identifier] = ACTIONS(521), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_RBRACK] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(535), + [anon_sym_u8] = ACTIONS(538), + [anon_sym_i8] = ACTIONS(538), + [anon_sym_u16] = ACTIONS(538), + [anon_sym_i16] = ACTIONS(538), + [anon_sym_u32] = ACTIONS(538), + [anon_sym_i32] = ACTIONS(538), + [anon_sym_u64] = ACTIONS(538), + [anon_sym_i64] = ACTIONS(538), + [anon_sym_u128] = ACTIONS(538), + [anon_sym_i128] = ACTIONS(538), + [anon_sym_isize] = ACTIONS(538), + [anon_sym_usize] = ACTIONS(538), + [anon_sym_f32] = ACTIONS(538), + [anon_sym_f64] = ACTIONS(538), + [anon_sym_bool] = ACTIONS(538), + [anon_sym_str] = ACTIONS(538), + [anon_sym_char] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(535), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_POUND] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(553), + [anon_sym_SQUOTE] = ACTIONS(556), + [anon_sym_async] = ACTIONS(559), + [anon_sym_break] = ACTIONS(562), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(568), + [anon_sym_default] = ACTIONS(571), + [anon_sym_for] = ACTIONS(574), + [anon_sym_if] = ACTIONS(577), + [anon_sym_loop] = ACTIONS(580), + [anon_sym_match] = ACTIONS(583), + [anon_sym_return] = ACTIONS(586), + [anon_sym_static] = ACTIONS(589), + [anon_sym_union] = ACTIONS(571), + [anon_sym_unsafe] = ACTIONS(592), + [anon_sym_while] = ACTIONS(595), + [anon_sym_DOT_DOT] = ACTIONS(598), + [anon_sym_yield] = ACTIONS(601), + [anon_sym_move] = ACTIONS(604), + [anon_sym_try] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(610), + [aux_sym_string_literal_token1] = ACTIONS(613), + [sym_char_literal] = ACTIONS(610), + [anon_sym_true] = ACTIONS(616), + [anon_sym_false] = ACTIONS(616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(619), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_metavariable] = ACTIONS(625), + [sym_raw_string_literal] = ACTIONS(610), + [sym_float_literal] = ACTIONS(610), + }, + [71] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1559), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(71), + [sym_block_comment] = STATE(71), + [aux_sym_enum_variant_list_repeat1] = STATE(70), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(529), + [anon_sym_RBRACK] = ACTIONS(628), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -28933,11 +28262,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COMMA] = ACTIONS(531), + [anon_sym_COMMA] = ACTIONS(630), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -28973,60 +28302,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [77] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1538), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(77), - [sym_block_comment] = STATE(77), - [aux_sym_enum_variant_list_repeat1] = STATE(76), + [72] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1553), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(72), + [sym_block_comment] = STATE(72), + [aux_sym_enum_variant_list_repeat1] = STATE(67), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(533), + [anon_sym_RBRACK] = ACTIONS(632), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -29047,11 +28376,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COMMA] = ACTIONS(535), + [anon_sym_COMMA] = ACTIONS(634), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -29087,174 +28416,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [78] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(78), - [sym_block_comment] = STATE(78), - [aux_sym_enum_variant_list_repeat1] = STATE(806), - [sym_identifier] = ACTIONS(537), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(554), - [anon_sym_i8] = ACTIONS(554), - [anon_sym_u16] = ACTIONS(554), - [anon_sym_i16] = ACTIONS(554), - [anon_sym_u32] = ACTIONS(554), - [anon_sym_i32] = ACTIONS(554), - [anon_sym_u64] = ACTIONS(554), - [anon_sym_i64] = ACTIONS(554), - [anon_sym_u128] = ACTIONS(554), - [anon_sym_i128] = ACTIONS(554), - [anon_sym_isize] = ACTIONS(554), - [anon_sym_usize] = ACTIONS(554), - [anon_sym_f32] = ACTIONS(554), - [anon_sym_f64] = ACTIONS(554), - [anon_sym_bool] = ACTIONS(554), - [anon_sym_str] = ACTIONS(554), - [anon_sym_char] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_COLON_COLON] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_async] = ACTIONS(575), - [anon_sym_break] = ACTIONS(578), - [anon_sym_const] = ACTIONS(581), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_default] = ACTIONS(587), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(593), - [anon_sym_loop] = ACTIONS(596), - [anon_sym_match] = ACTIONS(599), - [anon_sym_return] = ACTIONS(602), - [anon_sym_static] = ACTIONS(605), - [anon_sym_union] = ACTIONS(587), - [anon_sym_unsafe] = ACTIONS(608), - [anon_sym_while] = ACTIONS(611), - [anon_sym_DOT_DOT] = ACTIONS(614), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_move] = ACTIONS(620), - [anon_sym_try] = ACTIONS(623), - [sym_integer_literal] = ACTIONS(626), - [aux_sym_string_literal_token1] = ACTIONS(629), - [sym_char_literal] = ACTIONS(626), - [anon_sym_true] = ACTIONS(632), - [anon_sym_false] = ACTIONS(632), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(635), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(641), - [sym_raw_string_literal] = ACTIONS(626), - [sym_float_literal] = ACTIONS(626), + [73] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1608), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(73), + [sym_block_comment] = STATE(73), + [aux_sym_enum_variant_list_repeat1] = STATE(996), + [sym_identifier] = ACTIONS(521), + [anon_sym_LPAREN] = ACTIONS(524), + [anon_sym_LBRACK] = ACTIONS(527), + [anon_sym_RBRACK] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(532), + [anon_sym_STAR] = ACTIONS(535), + [anon_sym_u8] = ACTIONS(538), + [anon_sym_i8] = ACTIONS(538), + [anon_sym_u16] = ACTIONS(538), + [anon_sym_i16] = ACTIONS(538), + [anon_sym_u32] = ACTIONS(538), + [anon_sym_i32] = ACTIONS(538), + [anon_sym_u64] = ACTIONS(538), + [anon_sym_i64] = ACTIONS(538), + [anon_sym_u128] = ACTIONS(538), + [anon_sym_i128] = ACTIONS(538), + [anon_sym_isize] = ACTIONS(538), + [anon_sym_usize] = ACTIONS(538), + [anon_sym_f32] = ACTIONS(538), + [anon_sym_f64] = ACTIONS(538), + [anon_sym_bool] = ACTIONS(538), + [anon_sym_str] = ACTIONS(538), + [anon_sym_char] = ACTIONS(538), + [anon_sym_DASH] = ACTIONS(535), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(541), + [anon_sym_BANG] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_POUND] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(550), + [anon_sym_PIPE] = ACTIONS(553), + [anon_sym_SQUOTE] = ACTIONS(556), + [anon_sym_async] = ACTIONS(559), + [anon_sym_break] = ACTIONS(562), + [anon_sym_const] = ACTIONS(565), + [anon_sym_continue] = ACTIONS(568), + [anon_sym_default] = ACTIONS(571), + [anon_sym_for] = ACTIONS(574), + [anon_sym_if] = ACTIONS(577), + [anon_sym_loop] = ACTIONS(580), + [anon_sym_match] = ACTIONS(583), + [anon_sym_return] = ACTIONS(586), + [anon_sym_static] = ACTIONS(589), + [anon_sym_union] = ACTIONS(571), + [anon_sym_unsafe] = ACTIONS(592), + [anon_sym_while] = ACTIONS(595), + [anon_sym_DOT_DOT] = ACTIONS(598), + [anon_sym_yield] = ACTIONS(601), + [anon_sym_move] = ACTIONS(604), + [anon_sym_try] = ACTIONS(607), + [sym_integer_literal] = ACTIONS(610), + [aux_sym_string_literal_token1] = ACTIONS(613), + [sym_char_literal] = ACTIONS(610), + [anon_sym_true] = ACTIONS(616), + [anon_sym_false] = ACTIONS(616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(619), + [sym_super] = ACTIONS(622), + [sym_crate] = ACTIONS(622), + [sym_metavariable] = ACTIONS(625), + [sym_raw_string_literal] = ACTIONS(610), + [sym_float_literal] = ACTIONS(610), }, - [79] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1667), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(79), - [sym_block_comment] = STATE(79), - [aux_sym_enum_variant_list_repeat1] = STATE(114), + [74] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(74), + [sym_block_comment] = STATE(74), + [aux_sym_enum_variant_list_repeat1] = STATE(71), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(636), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -29275,11 +28604,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COMMA] = ACTIONS(646), + [anon_sym_COMMA] = ACTIONS(638), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -29315,174 +28644,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [80] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1591), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(80), - [sym_block_comment] = STATE(80), - [aux_sym_enum_variant_list_repeat1] = STATE(806), - [sym_identifier] = ACTIONS(537), - [anon_sym_LPAREN] = ACTIONS(540), - [anon_sym_LBRACK] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(551), - [anon_sym_u8] = ACTIONS(554), - [anon_sym_i8] = ACTIONS(554), - [anon_sym_u16] = ACTIONS(554), - [anon_sym_i16] = ACTIONS(554), - [anon_sym_u32] = ACTIONS(554), - [anon_sym_i32] = ACTIONS(554), - [anon_sym_u64] = ACTIONS(554), - [anon_sym_i64] = ACTIONS(554), - [anon_sym_u128] = ACTIONS(554), - [anon_sym_i128] = ACTIONS(554), - [anon_sym_isize] = ACTIONS(554), - [anon_sym_usize] = ACTIONS(554), - [anon_sym_f32] = ACTIONS(554), - [anon_sym_f64] = ACTIONS(554), - [anon_sym_bool] = ACTIONS(554), - [anon_sym_str] = ACTIONS(554), - [anon_sym_char] = ACTIONS(554), - [anon_sym_DASH] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_COLON_COLON] = ACTIONS(557), - [anon_sym_BANG] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(566), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_SQUOTE] = ACTIONS(572), - [anon_sym_async] = ACTIONS(575), - [anon_sym_break] = ACTIONS(578), - [anon_sym_const] = ACTIONS(581), - [anon_sym_continue] = ACTIONS(584), - [anon_sym_default] = ACTIONS(587), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(593), - [anon_sym_loop] = ACTIONS(596), - [anon_sym_match] = ACTIONS(599), - [anon_sym_return] = ACTIONS(602), - [anon_sym_static] = ACTIONS(605), - [anon_sym_union] = ACTIONS(587), - [anon_sym_unsafe] = ACTIONS(608), - [anon_sym_while] = ACTIONS(611), - [anon_sym_DOT_DOT] = ACTIONS(614), - [anon_sym_yield] = ACTIONS(617), - [anon_sym_move] = ACTIONS(620), - [anon_sym_try] = ACTIONS(623), - [sym_integer_literal] = ACTIONS(626), - [aux_sym_string_literal_token1] = ACTIONS(629), - [sym_char_literal] = ACTIONS(626), - [anon_sym_true] = ACTIONS(632), - [anon_sym_false] = ACTIONS(632), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(635), - [sym_super] = ACTIONS(638), - [sym_crate] = ACTIONS(638), - [sym_metavariable] = ACTIONS(641), - [sym_raw_string_literal] = ACTIONS(626), - [sym_float_literal] = ACTIONS(626), - }, - [81] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1544), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(81), - [sym_block_comment] = STATE(81), - [aux_sym_enum_variant_list_repeat1] = STATE(78), + [75] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(75), + [sym_block_comment] = STATE(75), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(640), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(648), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -29503,11 +28718,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COMMA] = ACTIONS(650), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -29543,60 +28757,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [82] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1575), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(82), - [sym_block_comment] = STATE(82), - [aux_sym_enum_variant_list_repeat1] = STATE(81), + [76] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(76), + [sym_block_comment] = STATE(76), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(652), + [anon_sym_RBRACK] = ACTIONS(642), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -29617,11 +28831,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COMMA] = ACTIONS(654), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -29657,173 +28870,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [83] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2822), - [sym__let_chain] = STATE(2824), - [sym__condition] = STATE(2578), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(83), - [sym_block_comment] = STATE(83), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [84] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(84), - [sym_block_comment] = STATE(84), - [aux_sym_enum_variant_list_repeat1] = STATE(117), + [77] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(77), + [sym_block_comment] = STATE(77), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(664), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(644), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -29847,7 +28947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -29883,102 +28983,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [85] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2822), - [sym__let_chain] = STATE(2824), - [sym__condition] = STATE(2557), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(85), - [sym_block_comment] = STATE(85), - [sym_identifier] = ACTIONS(475), + [78] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2810), + [sym__let_chain] = STATE(2809), + [sym__condition] = STATE(2501), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(78), + [sym_block_comment] = STATE(78), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), + [anon_sym_let] = ACTIONS(650), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(652), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -29989,67 +29089,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [86] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(86), - [sym_block_comment] = STATE(86), - [aux_sym_enum_variant_list_repeat1] = STATE(117), + [79] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1694), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(79), + [sym_block_comment] = STATE(79), + [aux_sym_enum_variant_list_repeat1] = STATE(105), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(654), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(666), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -30073,7 +29173,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -30109,286 +29209,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [87] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2822), - [sym__let_chain] = STATE(2824), - [sym__condition] = STATE(2533), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(87), - [sym_block_comment] = STATE(87), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [88] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2822), - [sym__let_chain] = STATE(2824), - [sym__condition] = STATE(2567), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(88), - [sym_block_comment] = STATE(88), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [89] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(89), - [sym_block_comment] = STATE(89), - [aux_sym_enum_variant_list_repeat1] = STATE(117), + [80] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(80), + [sym_block_comment] = STATE(80), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(656), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(668), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -30412,7 +29286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -30448,104 +29322,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [90] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2822), - [sym__let_chain] = STATE(2824), - [sym__condition] = STATE(2568), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(90), - [sym_block_comment] = STATE(90), - [sym_identifier] = ACTIONS(475), + [81] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(81), + [sym_block_comment] = STATE(81), + [aux_sym_enum_variant_list_repeat1] = STATE(106), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(658), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -30554,66 +29428,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [91] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(91), - [sym_block_comment] = STATE(91), - [aux_sym_enum_variant_list_repeat1] = STATE(117), + [82] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1767), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(82), + [sym_block_comment] = STATE(82), + [aux_sym_enum_variant_list_repeat1] = STATE(107), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(670), + [anon_sym_RPAREN] = ACTIONS(660), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -30638,7 +29512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -30674,102 +29548,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [92] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2822), - [sym__let_chain] = STATE(2824), - [sym__condition] = STATE(2657), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(92), - [sym_block_comment] = STATE(92), - [sym_identifier] = ACTIONS(475), + [83] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2810), + [sym__let_chain] = STATE(2809), + [sym__condition] = STATE(2631), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(83), + [sym_block_comment] = STATE(83), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), + [anon_sym_let] = ACTIONS(650), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(652), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -30780,109 +29654,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [93] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2822), - [sym__let_chain] = STATE(2824), - [sym__condition] = STATE(2585), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(93), - [sym_block_comment] = STATE(93), - [sym_identifier] = ACTIONS(475), + [84] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2810), + [sym__let_chain] = STATE(2809), + [sym__condition] = STATE(2502), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(84), + [sym_block_comment] = STATE(84), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), + [anon_sym_let] = ACTIONS(650), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(652), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -30893,521 +29767,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [94] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(94), - [sym_block_comment] = STATE(94), - [aux_sym_enum_variant_list_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(672), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [95] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(95), - [sym_block_comment] = STATE(95), - [aux_sym_enum_variant_list_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(674), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [96] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2822), - [sym__let_chain] = STATE(2824), - [sym__condition] = STATE(2606), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(96), - [sym_block_comment] = STATE(96), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [97] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2822), - [sym__let_chain] = STATE(2824), - [sym__condition] = STATE(2609), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(97), - [sym_block_comment] = STATE(97), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [98] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), + [85] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_let_condition] = STATE(3064), - [sym__let_chain] = STATE(3061), - [sym__condition] = STATE(3285), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(98), - [sym_block_comment] = STATE(98), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_let_condition] = STATE(3170), + [sym__let_chain] = STATE(3171), + [sym__condition] = STATE(3394), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(85), + [sym_block_comment] = STATE(85), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -31425,142 +29847,142 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), + [anon_sym_break] = ACTIONS(407), [anon_sym_const] = ACTIONS(409), [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_let] = ACTIONS(680), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), + [anon_sym_if] = ACTIONS(417), + [anon_sym_let] = ACTIONS(666), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(682), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [99] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2822), - [sym__let_chain] = STATE(2824), - [sym__condition] = STATE(2590), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [sym_identifier] = ACTIONS(475), + [86] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2810), + [sym__let_chain] = STATE(2809), + [sym__condition] = STATE(2632), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(86), + [sym_block_comment] = STATE(86), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), + [anon_sym_let] = ACTIONS(650), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(652), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -31571,109 +29993,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [100] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2822), - [sym__let_chain] = STATE(2824), - [sym__condition] = STATE(2602), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [sym_identifier] = ACTIONS(475), + [87] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2810), + [sym__let_chain] = STATE(2809), + [sym__condition] = STATE(2520), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(87), + [sym_block_comment] = STATE(87), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), + [anon_sym_let] = ACTIONS(650), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(652), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -31684,67 +30106,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [101] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [aux_sym_enum_variant_list_repeat1] = STATE(117), + [88] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(670), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(684), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -31768,7 +30190,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -31804,59 +30226,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [102] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1790), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [aux_sym_enum_variant_list_repeat1] = STATE(115), + [89] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(686), + [anon_sym_RPAREN] = ACTIONS(672), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -31881,7 +30303,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -31917,60 +30339,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [103] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [aux_sym_enum_variant_list_repeat1] = STATE(117), + [90] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(90), + [sym_block_comment] = STATE(90), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(688), + [anon_sym_RBRACK] = ACTIONS(674), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -31994,7 +30416,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -32030,104 +30452,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [104] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(104), - [sym_block_comment] = STATE(104), - [aux_sym_enum_variant_list_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(329), + [91] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2810), + [sym__let_chain] = STATE(2809), + [sym__condition] = STATE(2609), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(91), + [sym_block_comment] = STATE(91), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(690), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(650), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -32136,67 +30558,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [105] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [aux_sym_enum_variant_list_repeat1] = STATE(117), + [92] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(92), + [sym_block_comment] = STATE(92), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(692), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(676), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32220,7 +30642,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -32256,104 +30678,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [106] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(106), - [sym_block_comment] = STATE(106), - [aux_sym_enum_variant_list_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(329), + [93] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2810), + [sym__let_chain] = STATE(2809), + [sym__condition] = STATE(2620), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(694), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(650), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -32362,66 +30784,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [107] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1798), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(107), - [sym_block_comment] = STATE(107), - [aux_sym_enum_variant_list_repeat1] = STATE(113), + [94] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(696), + [anon_sym_RPAREN] = ACTIONS(678), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -32446,7 +30868,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -32482,60 +30904,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [108] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(108), - [sym_block_comment] = STATE(108), - [aux_sym_enum_variant_list_repeat1] = STATE(117), + [95] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2810), + [sym__let_chain] = STATE(2809), + [sym__condition] = STATE(2624), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(650), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [96] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_RBRACK] = ACTIONS(680), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32559,7 +31094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -32595,102 +31130,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [109] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2822), - [sym__let_chain] = STATE(2824), - [sym__condition] = STATE(2658), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(109), - [sym_block_comment] = STATE(109), - [sym_identifier] = ACTIONS(475), + [97] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2810), + [sym__let_chain] = STATE(2809), + [sym__condition] = STATE(2539), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), + [anon_sym_let] = ACTIONS(650), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(652), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -32701,67 +31236,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [110] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(110), - [sym_block_comment] = STATE(110), - [aux_sym_enum_variant_list_repeat1] = STATE(117), + [98] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(700), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(682), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32785,7 +31320,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -32821,104 +31356,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [111] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(111), - [sym_block_comment] = STATE(111), - [aux_sym_enum_variant_list_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(329), + [99] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2810), + [sym__let_chain] = STATE(2809), + [sym__condition] = STATE(2573), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(702), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(650), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -32927,179 +31462,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [112] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_let_condition] = STATE(3064), - [sym__let_chain] = STATE(3061), - [sym__condition] = STATE(3284), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(112), - [sym_block_comment] = STATE(112), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_let] = ACTIONS(680), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(682), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [113] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(113), - [sym_block_comment] = STATE(113), - [aux_sym_enum_variant_list_repeat1] = STATE(806), + [100] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(684), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33123,7 +31546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -33159,58 +31582,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [114] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1597), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(114), - [sym_block_comment] = STATE(114), - [aux_sym_enum_variant_list_repeat1] = STATE(806), + [101] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [aux_sym_enum_variant_list_repeat1] = STATE(106), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(686), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -33235,7 +31659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -33271,60 +31695,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [115] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(115), - [sym_block_comment] = STATE(115), - [aux_sym_enum_variant_list_repeat1] = STATE(806), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), + [102] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2810), + [sym__let_chain] = STATE(2809), + [sym__condition] = STATE(2578), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(650), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [103] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2810), + [sym__let_chain] = STATE(2809), + [sym__condition] = STATE(2558), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(650), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [104] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [aux_sym_enum_variant_list_repeat1] = STATE(996), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -33347,7 +31997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -33383,56 +32033,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [116] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1589), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(116), - [sym_block_comment] = STATE(116), - [aux_sym_enum_variant_list_repeat1] = STATE(806), + [105] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1851), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [aux_sym_enum_variant_list_repeat1] = STATE(996), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -33459,7 +32109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -33495,56 +32145,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [117] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1602), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(117), - [sym_block_comment] = STATE(117), - [aux_sym_enum_variant_list_repeat1] = STATE(806), + [106] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1573), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [aux_sym_enum_variant_list_repeat1] = STATE(996), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -33571,7 +32221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -33607,56 +32257,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [118] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1735), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(118), - [sym_block_comment] = STATE(118), - [aux_sym_enum_variant_list_repeat1] = STATE(117), + [107] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [aux_sym_enum_variant_list_repeat1] = STATE(996), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -33683,7 +32333,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), - [anon_sym_POUND] = ACTIONS(527), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -33719,54 +32369,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [119] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1387), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(119), - [sym_block_comment] = STATE(119), + [108] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1564), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [aux_sym_enum_variant_list_repeat1] = STATE(996), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -33789,12 +32441,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym__] = ACTIONS(704), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_DASH_GT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -33830,213 +32481,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [120] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1727), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(120), - [sym_block_comment] = STATE(120), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym__] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_DASH_GT] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [121] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1740), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2610), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(121), - [sym_block_comment] = STATE(121), - [sym_identifier] = ACTIONS(475), + [109] = { + [sym_attribute_item] = STATE(997), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1604), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [aux_sym_enum_variant_list_repeat1] = STATE(106), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_POUND] = ACTIONS(511), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -34045,107 +32586,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [122] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1387), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(122), - [sym_block_comment] = STATE(122), - [sym_identifier] = ACTIONS(475), + [110] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1589), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2512), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym__] = ACTIONS(704), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(706), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(650), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), + [anon_sym_DOT_DOT] = ACTIONS(688), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -34156,109 +32697,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [123] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1786), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1383), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(123), - [sym_block_comment] = STATE(123), - [sym_identifier] = ACTIONS(475), + [111] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(111), + [sym_block_comment] = STATE(111), + [aux_sym_tuple_expression_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(690), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym__] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_DASH_GT] = ACTIONS(720), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -34267,220 +32808,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [124] = { - [sym_else_clause] = STATE(205), - [sym_line_comment] = STATE(124), - [sym_block_comment] = STATE(124), - [ts_builtin_sym_end] = ACTIONS(726), - [sym_identifier] = ACTIONS(728), - [anon_sym_SEMI] = ACTIONS(726), - [anon_sym_macro_rules_BANG] = ACTIONS(726), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(726), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_QMARK] = ACTIONS(726), - [anon_sym_u8] = ACTIONS(728), - [anon_sym_i8] = ACTIONS(728), - [anon_sym_u16] = ACTIONS(728), - [anon_sym_i16] = ACTIONS(728), - [anon_sym_u32] = ACTIONS(728), - [anon_sym_i32] = ACTIONS(728), - [anon_sym_u64] = ACTIONS(728), - [anon_sym_i64] = ACTIONS(728), - [anon_sym_u128] = ACTIONS(728), - [anon_sym_i128] = ACTIONS(728), - [anon_sym_isize] = ACTIONS(728), - [anon_sym_usize] = ACTIONS(728), - [anon_sym_f32] = ACTIONS(728), - [anon_sym_f64] = ACTIONS(728), - [anon_sym_bool] = ACTIONS(728), - [anon_sym_str] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_COLON_COLON] = ACTIONS(726), - [anon_sym_BANG] = ACTIONS(728), - [anon_sym_DOT] = ACTIONS(728), - [anon_sym_AMP] = ACTIONS(728), - [anon_sym_POUND] = ACTIONS(726), - [anon_sym_PERCENT] = ACTIONS(728), - [anon_sym_CARET] = ACTIONS(728), - [anon_sym_LT] = ACTIONS(728), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_PIPE] = ACTIONS(728), - [anon_sym_SQUOTE] = ACTIONS(728), - [anon_sym_as] = ACTIONS(728), - [anon_sym_async] = ACTIONS(728), - [anon_sym_break] = ACTIONS(728), - [anon_sym_const] = ACTIONS(728), - [anon_sym_continue] = ACTIONS(728), - [anon_sym_default] = ACTIONS(728), - [anon_sym_enum] = ACTIONS(728), - [anon_sym_fn] = ACTIONS(728), - [anon_sym_for] = ACTIONS(728), - [anon_sym_if] = ACTIONS(728), - [anon_sym_impl] = ACTIONS(728), - [anon_sym_let] = ACTIONS(728), - [anon_sym_loop] = ACTIONS(728), - [anon_sym_match] = ACTIONS(728), - [anon_sym_mod] = ACTIONS(728), - [anon_sym_pub] = ACTIONS(728), - [anon_sym_return] = ACTIONS(728), - [anon_sym_static] = ACTIONS(728), - [anon_sym_struct] = ACTIONS(728), - [anon_sym_trait] = ACTIONS(728), - [anon_sym_type] = ACTIONS(728), - [anon_sym_union] = ACTIONS(728), - [anon_sym_unsafe] = ACTIONS(728), - [anon_sym_use] = ACTIONS(728), - [anon_sym_while] = ACTIONS(728), - [anon_sym_extern] = ACTIONS(728), - [anon_sym_else] = ACTIONS(730), - [anon_sym_DOT_DOT_DOT] = ACTIONS(726), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_DOT_DOT_EQ] = ACTIONS(726), - [anon_sym_AMP_AMP] = ACTIONS(726), - [anon_sym_PIPE_PIPE] = ACTIONS(726), - [anon_sym_EQ_EQ] = ACTIONS(726), - [anon_sym_BANG_EQ] = ACTIONS(726), - [anon_sym_LT_EQ] = ACTIONS(726), - [anon_sym_GT_EQ] = ACTIONS(726), - [anon_sym_LT_LT] = ACTIONS(728), - [anon_sym_GT_GT] = ACTIONS(728), - [anon_sym_PLUS_EQ] = ACTIONS(726), - [anon_sym_DASH_EQ] = ACTIONS(726), - [anon_sym_STAR_EQ] = ACTIONS(726), - [anon_sym_SLASH_EQ] = ACTIONS(726), - [anon_sym_PERCENT_EQ] = ACTIONS(726), - [anon_sym_AMP_EQ] = ACTIONS(726), - [anon_sym_PIPE_EQ] = ACTIONS(726), - [anon_sym_CARET_EQ] = ACTIONS(726), - [anon_sym_LT_LT_EQ] = ACTIONS(726), - [anon_sym_GT_GT_EQ] = ACTIONS(726), - [anon_sym_yield] = ACTIONS(728), - [anon_sym_move] = ACTIONS(728), - [anon_sym_try] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(726), - [aux_sym_string_literal_token1] = ACTIONS(726), - [sym_char_literal] = ACTIONS(726), - [anon_sym_true] = ACTIONS(728), - [anon_sym_false] = ACTIONS(728), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(728), - [sym_crate] = ACTIONS(728), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(726), - [sym_float_literal] = ACTIONS(726), + [112] = { + [sym_else_clause] = STATE(197), + [sym_line_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [ts_builtin_sym_end] = ACTIONS(692), + [sym_identifier] = ACTIONS(694), + [anon_sym_SEMI] = ACTIONS(692), + [anon_sym_macro_rules_BANG] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_LBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(692), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_COLON_COLON] = ACTIONS(692), + [anon_sym_BANG] = ACTIONS(694), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_SQUOTE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_async] = ACTIONS(694), + [anon_sym_break] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_continue] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_enum] = ACTIONS(694), + [anon_sym_fn] = ACTIONS(694), + [anon_sym_for] = ACTIONS(694), + [anon_sym_if] = ACTIONS(694), + [anon_sym_impl] = ACTIONS(694), + [anon_sym_let] = ACTIONS(694), + [anon_sym_loop] = ACTIONS(694), + [anon_sym_match] = ACTIONS(694), + [anon_sym_mod] = ACTIONS(694), + [anon_sym_pub] = ACTIONS(694), + [anon_sym_return] = ACTIONS(694), + [anon_sym_static] = ACTIONS(694), + [anon_sym_struct] = ACTIONS(694), + [anon_sym_trait] = ACTIONS(694), + [anon_sym_type] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_unsafe] = ACTIONS(694), + [anon_sym_use] = ACTIONS(694), + [anon_sym_while] = ACTIONS(694), + [anon_sym_extern] = ACTIONS(694), + [anon_sym_else] = ACTIONS(696), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_PLUS_EQ] = ACTIONS(692), + [anon_sym_DASH_EQ] = ACTIONS(692), + [anon_sym_STAR_EQ] = ACTIONS(692), + [anon_sym_SLASH_EQ] = ACTIONS(692), + [anon_sym_PERCENT_EQ] = ACTIONS(692), + [anon_sym_AMP_EQ] = ACTIONS(692), + [anon_sym_PIPE_EQ] = ACTIONS(692), + [anon_sym_CARET_EQ] = ACTIONS(692), + [anon_sym_LT_LT_EQ] = ACTIONS(692), + [anon_sym_GT_GT_EQ] = ACTIONS(692), + [anon_sym_yield] = ACTIONS(694), + [anon_sym_move] = ACTIONS(694), + [anon_sym_try] = ACTIONS(694), + [sym_integer_literal] = ACTIONS(692), + [aux_sym_string_literal_token1] = ACTIONS(692), + [sym_char_literal] = ACTIONS(692), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(692), + [sym_float_literal] = ACTIONS(692), }, - [125] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1421), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(125), - [sym_block_comment] = STATE(125), - [sym_identifier] = ACTIONS(475), + [113] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1370), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym__] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_DASH_GT] = ACTIONS(734), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym__] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_DASH_GT] = ACTIONS(702), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -34489,63 +33030,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [126] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1787), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1421), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(126), - [sym_block_comment] = STATE(126), + [114] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1662), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [aux_sym_tuple_expression_repeat1] = STATE(122), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(708), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -34566,9 +33109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym__] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_DASH_GT] = ACTIONS(734), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), @@ -34607,102 +33148,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [127] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1744), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(127), - [sym_block_comment] = STATE(127), - [aux_sym_tuple_expression_repeat1] = STATE(151), - [sym_identifier] = ACTIONS(329), + [115] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1563), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1275), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(115), + [sym_block_comment] = STATE(115), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(736), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym__] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -34711,109 +33252,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [128] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(128), - [sym_block_comment] = STATE(128), - [aux_sym_tuple_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(329), + [116] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1565), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1189), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(116), + [sym_block_comment] = STATE(116), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(738), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym__] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -34822,67 +33363,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [129] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_let_condition] = STATE(2610), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(129), - [sym_block_comment] = STATE(129), + [117] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1658), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(117), + [sym_block_comment] = STATE(117), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -34900,100 +33440,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), + [anon_sym__] = ACTIONS(718), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_DASH_GT] = ACTIONS(720), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), + [anon_sym_break] = ACTIONS(407), [anon_sym_const] = ACTIONS(409), [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_let] = ACTIONS(680), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(682), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [130] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1767), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_let_condition] = STATE(2610), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(130), - [sym_block_comment] = STATE(130), + [118] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1582), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1370), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(118), + [sym_block_comment] = STATE(118), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym__] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(483), + [anon_sym_DASH_GT] = ACTIONS(702), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [119] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1706), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_let_condition] = STATE(2512), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(119), + [sym_block_comment] = STATE(119), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_let] = ACTIONS(650), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [120] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1677), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1189), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(120), + [sym_block_comment] = STATE(120), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym__] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_DASH_GT] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [121] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1683), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1817), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(121), + [sym_block_comment] = STATE(121), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -35011,96 +33884,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), + [anon_sym__] = ACTIONS(724), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_DASH_GT] = ACTIONS(726), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), + [anon_sym_break] = ACTIONS(407), [anon_sym_const] = ACTIONS(409), [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_let] = ACTIONS(680), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [131] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1383), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(131), - [sym_block_comment] = STATE(131), + [122] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1861), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [aux_sym_tuple_expression_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(728), + [anon_sym_LPAREN] = ACTIONS(731), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(739), + [anon_sym_STAR] = ACTIONS(742), + [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_isize] = ACTIONS(745), + [anon_sym_usize] = ACTIONS(745), + [anon_sym_f32] = ACTIONS(745), + [anon_sym_f64] = ACTIONS(745), + [anon_sym_bool] = ACTIONS(745), + [anon_sym_str] = ACTIONS(745), + [anon_sym_char] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(742), + [anon_sym_COLON_COLON] = ACTIONS(748), + [anon_sym_BANG] = ACTIONS(742), + [anon_sym_AMP] = ACTIONS(751), + [anon_sym_LT] = ACTIONS(754), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_SQUOTE] = ACTIONS(760), + [anon_sym_async] = ACTIONS(763), + [anon_sym_break] = ACTIONS(766), + [anon_sym_const] = ACTIONS(769), + [anon_sym_continue] = ACTIONS(772), + [anon_sym_default] = ACTIONS(775), + [anon_sym_for] = ACTIONS(778), + [anon_sym_if] = ACTIONS(781), + [anon_sym_loop] = ACTIONS(784), + [anon_sym_match] = ACTIONS(787), + [anon_sym_return] = ACTIONS(790), + [anon_sym_static] = ACTIONS(793), + [anon_sym_union] = ACTIONS(775), + [anon_sym_unsafe] = ACTIONS(796), + [anon_sym_while] = ACTIONS(799), + [anon_sym_DOT_DOT] = ACTIONS(802), + [anon_sym_yield] = ACTIONS(805), + [anon_sym_move] = ACTIONS(808), + [anon_sym_try] = ACTIONS(811), + [sym_integer_literal] = ACTIONS(814), + [aux_sym_string_literal_token1] = ACTIONS(817), + [sym_char_literal] = ACTIONS(814), + [anon_sym_true] = ACTIONS(820), + [anon_sym_false] = ACTIONS(820), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(823), + [sym_super] = ACTIONS(826), + [sym_crate] = ACTIONS(826), + [sym_metavariable] = ACTIONS(829), + [sym_raw_string_literal] = ACTIONS(814), + [sym_float_literal] = ACTIONS(814), + }, + [123] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [aux_sym_tuple_expression_repeat1] = STATE(114), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(832), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -35121,9 +34108,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym__] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), @@ -35162,56 +34147,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [132] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1473), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1387), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(132), - [sym_block_comment] = STATE(132), + [124] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [aux_sym_tuple_expression_repeat1] = STATE(122), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(832), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -35232,9 +34219,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym__] = ACTIONS(704), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_DASH_GT] = ACTIONS(706), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), @@ -35255,7 +34240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -35273,58 +34258,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [133] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1770), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(133), - [sym_block_comment] = STATE(133), - [aux_sym_tuple_expression_repeat1] = STATE(136), + [125] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1640), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1757), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [sym_identifier] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym__] = ACTIONS(834), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_DASH_GT] = ACTIONS(836), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(405), + [anon_sym_break] = ACTIONS(407), + [anon_sym_const] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(411), + [anon_sym_default] = ACTIONS(413), + [anon_sym_for] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), + [anon_sym_union] = ACTIONS(413), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), + }, + [126] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1492), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1189), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(742), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -35345,7 +34439,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym__] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_DASH_GT] = ACTIONS(716), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), @@ -35366,7 +34462,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -35384,102 +34480,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [134] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1789), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(134), - [sym_block_comment] = STATE(134), - [aux_sym_tuple_expression_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(329), + [127] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1738), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1275), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(744), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym__] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(463), + [anon_sym_DASH_GT] = ACTIONS(712), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -35488,63 +34584,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [135] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1472), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1383), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(135), - [sym_block_comment] = STATE(135), + [128] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1795), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [aux_sym_tuple_expression_repeat1] = STATE(135), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(690), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -35565,9 +34663,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym__] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(339), - [anon_sym_DASH_GT] = ACTIONS(720), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), @@ -35588,7 +34684,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -35606,169 +34702,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [136] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(136), - [sym_block_comment] = STATE(136), - [aux_sym_tuple_expression_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(746), - [anon_sym_LPAREN] = ACTIONS(749), - [anon_sym_RPAREN] = ACTIONS(752), - [anon_sym_LBRACK] = ACTIONS(754), - [anon_sym_LBRACE] = ACTIONS(757), - [anon_sym_STAR] = ACTIONS(760), - [anon_sym_u8] = ACTIONS(763), - [anon_sym_i8] = ACTIONS(763), - [anon_sym_u16] = ACTIONS(763), - [anon_sym_i16] = ACTIONS(763), - [anon_sym_u32] = ACTIONS(763), - [anon_sym_i32] = ACTIONS(763), - [anon_sym_u64] = ACTIONS(763), - [anon_sym_i64] = ACTIONS(763), - [anon_sym_u128] = ACTIONS(763), - [anon_sym_i128] = ACTIONS(763), - [anon_sym_isize] = ACTIONS(763), - [anon_sym_usize] = ACTIONS(763), - [anon_sym_f32] = ACTIONS(763), - [anon_sym_f64] = ACTIONS(763), - [anon_sym_bool] = ACTIONS(763), - [anon_sym_str] = ACTIONS(763), - [anon_sym_char] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(760), - [anon_sym_COLON_COLON] = ACTIONS(766), - [anon_sym_BANG] = ACTIONS(760), - [anon_sym_AMP] = ACTIONS(769), - [anon_sym_LT] = ACTIONS(772), - [anon_sym_PIPE] = ACTIONS(775), - [anon_sym_SQUOTE] = ACTIONS(778), - [anon_sym_async] = ACTIONS(781), - [anon_sym_break] = ACTIONS(784), - [anon_sym_const] = ACTIONS(787), - [anon_sym_continue] = ACTIONS(790), - [anon_sym_default] = ACTIONS(793), - [anon_sym_for] = ACTIONS(796), - [anon_sym_if] = ACTIONS(799), - [anon_sym_loop] = ACTIONS(802), - [anon_sym_match] = ACTIONS(805), - [anon_sym_return] = ACTIONS(808), - [anon_sym_static] = ACTIONS(811), - [anon_sym_union] = ACTIONS(793), - [anon_sym_unsafe] = ACTIONS(814), - [anon_sym_while] = ACTIONS(817), - [anon_sym_DOT_DOT] = ACTIONS(820), - [anon_sym_yield] = ACTIONS(823), - [anon_sym_move] = ACTIONS(826), - [anon_sym_try] = ACTIONS(829), - [sym_integer_literal] = ACTIONS(832), - [aux_sym_string_literal_token1] = ACTIONS(835), - [sym_char_literal] = ACTIONS(832), - [anon_sym_true] = ACTIONS(838), - [anon_sym_false] = ACTIONS(838), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(841), - [sym_super] = ACTIONS(844), - [sym_crate] = ACTIONS(844), - [sym_metavariable] = ACTIONS(847), - [sym_raw_string_literal] = ACTIONS(832), - [sym_float_literal] = ACTIONS(832), - }, - [137] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1761), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [aux_sym_tuple_expression_repeat1] = STATE(136), + [129] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1641), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(129), + [sym_block_comment] = STATE(129), + [aux_sym_tuple_expression_repeat1] = STATE(111), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(850), + [anon_sym_RPAREN] = ACTIONS(840), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -35828,170 +34813,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [138] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1780), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1727), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(138), - [sym_block_comment] = STATE(138), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym__] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_DASH_GT] = ACTIONS(710), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [139] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1633), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1706), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), + [130] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_let_condition] = STATE(2512), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(130), + [sym_block_comment] = STATE(130), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -36009,12 +34884,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym__] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_DASH_GT] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -36024,85 +34897,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), + [anon_sym_if] = ACTIONS(417), + [anon_sym_let] = ACTIONS(666), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [140] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1634), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1727), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), + [131] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1783), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_let_condition] = STATE(2512), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(131), + [sym_block_comment] = STATE(131), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -36120,12 +34995,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym__] = ACTIONS(708), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_DASH_GT] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -36135,128 +35008,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), + [anon_sym_if] = ACTIONS(417), + [anon_sym_let] = ACTIONS(666), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [141] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1712), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_let_condition] = STATE(2610), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), - [sym_identifier] = ACTIONS(475), + [132] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1708), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1370), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(132), + [sym_block_comment] = STATE(132), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym__] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_DASH_GT] = ACTIONS(702), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), - [anon_sym_let] = ACTIONS(660), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -36265,65 +35139,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [142] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1770), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [aux_sym_tuple_expression_repeat1] = STATE(137), + [133] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1744), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(133), + [sym_block_comment] = STATE(133), + [aux_sym_tuple_expression_repeat1] = STATE(124), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_RPAREN] = ACTIONS(842), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -36383,324 +35257,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [143] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1706), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym__] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_DASH_GT] = ACTIONS(860), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [144] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1743), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1663), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym__] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_DASH_GT] = ACTIONS(866), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [145] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1705), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1383), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(145), - [sym_block_comment] = STATE(145), - [sym_identifier] = ACTIONS(475), + [134] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1189), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(134), + [sym_block_comment] = STATE(134), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym__] = ACTIONS(718), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(720), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym__] = ACTIONS(714), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_DASH_GT] = ACTIONS(716), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -36709,109 +35361,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [146] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1421), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [sym_identifier] = ACTIONS(475), + [135] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(135), + [sym_block_comment] = STATE(135), + [aux_sym_tuple_expression_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(844), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym__] = ACTIONS(732), - [anon_sym_DASH] = ACTIONS(481), - [anon_sym_DASH_GT] = ACTIONS(734), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -36820,176 +35472,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [147] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1635), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1663), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym__] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(403), - [anon_sym_DASH_GT] = ACTIONS(866), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), + [136] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1485), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1370), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(136), + [sym_block_comment] = STATE(136), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym__] = ACTIONS(700), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_DASH_GT] = ACTIONS(702), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(838), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [148] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), - [aux_sym_tuple_expression_repeat1] = STATE(134), + [137] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1472), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1275), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(868), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -37010,7 +35660,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym__] = ACTIONS(710), + [anon_sym_DASH] = ACTIONS(339), + [anon_sym_DASH_GT] = ACTIONS(712), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), @@ -37031,7 +35683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -37049,54 +35701,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [149] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1481), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1421), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), + [138] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1275), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(138), + [sym_block_comment] = STATE(138), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -37119,9 +35771,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym__] = ACTIONS(732), + [anon_sym__] = ACTIONS(710), [anon_sym_DASH] = ACTIONS(339), - [anon_sym_DASH_GT] = ACTIONS(734), + [anon_sym_DASH_GT] = ACTIONS(712), [anon_sym_COLON_COLON] = ACTIONS(25), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(27), @@ -37142,7 +35794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -37160,169 +35812,166 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [150] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1663), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym__] = ACTIONS(864), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_DASH_GT] = ACTIONS(866), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), + [139] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1385), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [sym_mutable_specifier] = ACTIONS(846), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [151] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [aux_sym_tuple_expression_repeat1] = STATE(136), + [140] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1385), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(868), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), @@ -37364,7 +36013,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), + [sym_mutable_specifier] = ACTIONS(848), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -37382,213 +36032,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [152] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1750), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1706), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym__] = ACTIONS(858), - [anon_sym_DASH] = ACTIONS(447), - [anon_sym_DASH_GT] = ACTIONS(860), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [141] = { + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [ts_builtin_sym_end] = ACTIONS(850), + [sym_identifier] = ACTIONS(852), + [anon_sym_SEMI] = ACTIONS(850), + [anon_sym_macro_rules_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u128] = ACTIONS(852), + [anon_sym_i128] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_str] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_COLON_COLON] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(852), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(850), + [anon_sym_PERCENT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(852), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_as] = ACTIONS(852), + [anon_sym_async] = ACTIONS(852), + [anon_sym_break] = ACTIONS(852), + [anon_sym_const] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_default] = ACTIONS(852), + [anon_sym_enum] = ACTIONS(852), + [anon_sym_fn] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_impl] = ACTIONS(852), + [anon_sym_let] = ACTIONS(852), + [anon_sym_loop] = ACTIONS(852), + [anon_sym_match] = ACTIONS(852), + [anon_sym_mod] = ACTIONS(852), + [anon_sym_pub] = ACTIONS(852), + [anon_sym_return] = ACTIONS(852), + [anon_sym_static] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_trait] = ACTIONS(852), + [anon_sym_type] = ACTIONS(852), + [anon_sym_union] = ACTIONS(852), + [anon_sym_unsafe] = ACTIONS(852), + [anon_sym_use] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_extern] = ACTIONS(852), + [anon_sym_else] = ACTIONS(852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(850), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(850), + [anon_sym_PIPE_PIPE] = ACTIONS(850), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(852), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_move] = ACTIONS(852), + [anon_sym_try] = ACTIONS(852), + [sym_integer_literal] = ACTIONS(850), + [aux_sym_string_literal_token1] = ACTIONS(850), + [sym_char_literal] = ACTIONS(850), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(852), + [sym_super] = ACTIONS(852), + [sym_crate] = ACTIONS(852), + [sym_metavariable] = ACTIONS(850), + [sym_raw_string_literal] = ACTIONS(850), + [sym_float_literal] = ACTIONS(850), }, - [153] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1769), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1387), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [sym_identifier] = ACTIONS(475), + [142] = { + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [ts_builtin_sym_end] = ACTIONS(854), + [sym_identifier] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_macro_rules_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(856), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(856), + [anon_sym_i8] = ACTIONS(856), + [anon_sym_u16] = ACTIONS(856), + [anon_sym_i16] = ACTIONS(856), + [anon_sym_u32] = ACTIONS(856), + [anon_sym_i32] = ACTIONS(856), + [anon_sym_u64] = ACTIONS(856), + [anon_sym_i64] = ACTIONS(856), + [anon_sym_u128] = ACTIONS(856), + [anon_sym_i128] = ACTIONS(856), + [anon_sym_isize] = ACTIONS(856), + [anon_sym_usize] = ACTIONS(856), + [anon_sym_f32] = ACTIONS(856), + [anon_sym_f64] = ACTIONS(856), + [anon_sym_bool] = ACTIONS(856), + [anon_sym_str] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), + [anon_sym_SLASH] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_EQ] = ACTIONS(856), + [anon_sym_COLON_COLON] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(856), + [anon_sym_DOT] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_PERCENT] = ACTIONS(856), + [anon_sym_CARET] = ACTIONS(856), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(856), + [anon_sym_PIPE] = ACTIONS(856), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_as] = ACTIONS(856), + [anon_sym_async] = ACTIONS(856), + [anon_sym_break] = ACTIONS(856), + [anon_sym_const] = ACTIONS(856), + [anon_sym_continue] = ACTIONS(856), + [anon_sym_default] = ACTIONS(856), + [anon_sym_enum] = ACTIONS(856), + [anon_sym_fn] = ACTIONS(856), + [anon_sym_for] = ACTIONS(856), + [anon_sym_if] = ACTIONS(856), + [anon_sym_impl] = ACTIONS(856), + [anon_sym_let] = ACTIONS(856), + [anon_sym_loop] = ACTIONS(856), + [anon_sym_match] = ACTIONS(856), + [anon_sym_mod] = ACTIONS(856), + [anon_sym_pub] = ACTIONS(856), + [anon_sym_return] = ACTIONS(856), + [anon_sym_static] = ACTIONS(856), + [anon_sym_struct] = ACTIONS(856), + [anon_sym_trait] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_union] = ACTIONS(856), + [anon_sym_unsafe] = ACTIONS(856), + [anon_sym_use] = ACTIONS(856), + [anon_sym_while] = ACTIONS(856), + [anon_sym_extern] = ACTIONS(856), + [anon_sym_else] = ACTIONS(856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(854), + [anon_sym_DOT_DOT] = ACTIONS(856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(854), + [anon_sym_BANG_EQ] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(854), + [anon_sym_LT_LT] = ACTIONS(856), + [anon_sym_GT_GT] = ACTIONS(856), + [anon_sym_PLUS_EQ] = ACTIONS(854), + [anon_sym_DASH_EQ] = ACTIONS(854), + [anon_sym_STAR_EQ] = ACTIONS(854), + [anon_sym_SLASH_EQ] = ACTIONS(854), + [anon_sym_PERCENT_EQ] = ACTIONS(854), + [anon_sym_AMP_EQ] = ACTIONS(854), + [anon_sym_PIPE_EQ] = ACTIONS(854), + [anon_sym_CARET_EQ] = ACTIONS(854), + [anon_sym_LT_LT_EQ] = ACTIONS(854), + [anon_sym_GT_GT_EQ] = ACTIONS(854), + [anon_sym_yield] = ACTIONS(856), + [anon_sym_move] = ACTIONS(856), + [anon_sym_try] = ACTIONS(856), + [sym_integer_literal] = ACTIONS(854), + [aux_sym_string_literal_token1] = ACTIONS(854), + [sym_char_literal] = ACTIONS(854), + [anon_sym_true] = ACTIONS(856), + [anon_sym_false] = ACTIONS(856), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(856), + [sym_super] = ACTIONS(856), + [sym_crate] = ACTIONS(856), + [sym_metavariable] = ACTIONS(854), + [sym_raw_string_literal] = ACTIONS(854), + [sym_float_literal] = ACTIONS(854), + }, + [143] = { + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [ts_builtin_sym_end] = ACTIONS(858), + [sym_identifier] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_macro_rules_BANG] = ACTIONS(858), + [anon_sym_LPAREN] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_QMARK] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(860), + [anon_sym_i8] = ACTIONS(860), + [anon_sym_u16] = ACTIONS(860), + [anon_sym_i16] = ACTIONS(860), + [anon_sym_u32] = ACTIONS(860), + [anon_sym_i32] = ACTIONS(860), + [anon_sym_u64] = ACTIONS(860), + [anon_sym_i64] = ACTIONS(860), + [anon_sym_u128] = ACTIONS(860), + [anon_sym_i128] = ACTIONS(860), + [anon_sym_isize] = ACTIONS(860), + [anon_sym_usize] = ACTIONS(860), + [anon_sym_f32] = ACTIONS(860), + [anon_sym_f64] = ACTIONS(860), + [anon_sym_bool] = ACTIONS(860), + [anon_sym_str] = ACTIONS(860), + [anon_sym_char] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_EQ] = ACTIONS(860), + [anon_sym_COLON_COLON] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(860), + [anon_sym_DOT] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(860), + [anon_sym_POUND] = ACTIONS(858), + [anon_sym_PERCENT] = ACTIONS(860), + [anon_sym_CARET] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_as] = ACTIONS(860), + [anon_sym_async] = ACTIONS(860), + [anon_sym_break] = ACTIONS(860), + [anon_sym_const] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_default] = ACTIONS(860), + [anon_sym_enum] = ACTIONS(860), + [anon_sym_fn] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_if] = ACTIONS(860), + [anon_sym_impl] = ACTIONS(860), + [anon_sym_let] = ACTIONS(860), + [anon_sym_loop] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(860), + [anon_sym_pub] = ACTIONS(860), + [anon_sym_return] = ACTIONS(860), + [anon_sym_static] = ACTIONS(860), + [anon_sym_struct] = ACTIONS(860), + [anon_sym_trait] = ACTIONS(860), + [anon_sym_type] = ACTIONS(860), + [anon_sym_union] = ACTIONS(860), + [anon_sym_unsafe] = ACTIONS(860), + [anon_sym_use] = ACTIONS(860), + [anon_sym_while] = ACTIONS(860), + [anon_sym_extern] = ACTIONS(860), + [anon_sym_else] = ACTIONS(860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(858), + [anon_sym_DOT_DOT] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ] = ACTIONS(858), + [anon_sym_AMP_AMP] = ACTIONS(858), + [anon_sym_PIPE_PIPE] = ACTIONS(858), + [anon_sym_EQ_EQ] = ACTIONS(858), + [anon_sym_BANG_EQ] = ACTIONS(858), + [anon_sym_LT_EQ] = ACTIONS(858), + [anon_sym_GT_EQ] = ACTIONS(858), + [anon_sym_LT_LT] = ACTIONS(860), + [anon_sym_GT_GT] = ACTIONS(860), + [anon_sym_PLUS_EQ] = ACTIONS(858), + [anon_sym_DASH_EQ] = ACTIONS(858), + [anon_sym_STAR_EQ] = ACTIONS(858), + [anon_sym_SLASH_EQ] = ACTIONS(858), + [anon_sym_PERCENT_EQ] = ACTIONS(858), + [anon_sym_AMP_EQ] = ACTIONS(858), + [anon_sym_PIPE_EQ] = ACTIONS(858), + [anon_sym_CARET_EQ] = ACTIONS(858), + [anon_sym_LT_LT_EQ] = ACTIONS(858), + [anon_sym_GT_GT_EQ] = ACTIONS(858), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_move] = ACTIONS(860), + [anon_sym_try] = ACTIONS(860), + [sym_integer_literal] = ACTIONS(858), + [aux_sym_string_literal_token1] = ACTIONS(858), + [sym_char_literal] = ACTIONS(858), + [anon_sym_true] = ACTIONS(860), + [anon_sym_false] = ACTIONS(860), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(858), + [sym_raw_string_literal] = ACTIONS(858), + [sym_float_literal] = ACTIONS(858), + }, + [144] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1385), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym__] = ACTIONS(704), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_DASH_GT] = ACTIONS(706), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [sym_mutable_specifier] = ACTIONS(862), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -37597,66 +36465,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [154] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), + [145] = { + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), + [ts_builtin_sym_end] = ACTIONS(864), + [sym_identifier] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(864), + [anon_sym_macro_rules_BANG] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_QMARK] = ACTIONS(864), + [anon_sym_u8] = ACTIONS(866), + [anon_sym_i8] = ACTIONS(866), + [anon_sym_u16] = ACTIONS(866), + [anon_sym_i16] = ACTIONS(866), + [anon_sym_u32] = ACTIONS(866), + [anon_sym_i32] = ACTIONS(866), + [anon_sym_u64] = ACTIONS(866), + [anon_sym_i64] = ACTIONS(866), + [anon_sym_u128] = ACTIONS(866), + [anon_sym_i128] = ACTIONS(866), + [anon_sym_isize] = ACTIONS(866), + [anon_sym_usize] = ACTIONS(866), + [anon_sym_f32] = ACTIONS(866), + [anon_sym_f64] = ACTIONS(866), + [anon_sym_bool] = ACTIONS(866), + [anon_sym_str] = ACTIONS(866), + [anon_sym_char] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_COLON_COLON] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(866), + [anon_sym_DOT] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(864), + [anon_sym_PERCENT] = ACTIONS(866), + [anon_sym_CARET] = ACTIONS(866), + [anon_sym_LT] = ACTIONS(866), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_SQUOTE] = ACTIONS(866), + [anon_sym_as] = ACTIONS(866), + [anon_sym_async] = ACTIONS(866), + [anon_sym_break] = ACTIONS(866), + [anon_sym_const] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(866), + [anon_sym_default] = ACTIONS(866), + [anon_sym_enum] = ACTIONS(866), + [anon_sym_fn] = ACTIONS(866), + [anon_sym_for] = ACTIONS(866), + [anon_sym_if] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(866), + [anon_sym_let] = ACTIONS(866), + [anon_sym_loop] = ACTIONS(866), + [anon_sym_match] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(866), + [anon_sym_pub] = ACTIONS(866), + [anon_sym_return] = ACTIONS(866), + [anon_sym_static] = ACTIONS(866), + [anon_sym_struct] = ACTIONS(866), + [anon_sym_trait] = ACTIONS(866), + [anon_sym_type] = ACTIONS(866), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(866), + [anon_sym_use] = ACTIONS(866), + [anon_sym_while] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(866), + [anon_sym_else] = ACTIONS(866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(864), + [anon_sym_DOT_DOT] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(864), + [anon_sym_AMP_AMP] = ACTIONS(864), + [anon_sym_PIPE_PIPE] = ACTIONS(864), + [anon_sym_EQ_EQ] = ACTIONS(864), + [anon_sym_BANG_EQ] = ACTIONS(864), + [anon_sym_LT_EQ] = ACTIONS(864), + [anon_sym_GT_EQ] = ACTIONS(864), + [anon_sym_LT_LT] = ACTIONS(866), + [anon_sym_GT_GT] = ACTIONS(866), + [anon_sym_PLUS_EQ] = ACTIONS(864), + [anon_sym_DASH_EQ] = ACTIONS(864), + [anon_sym_STAR_EQ] = ACTIONS(864), + [anon_sym_SLASH_EQ] = ACTIONS(864), + [anon_sym_PERCENT_EQ] = ACTIONS(864), + [anon_sym_AMP_EQ] = ACTIONS(864), + [anon_sym_PIPE_EQ] = ACTIONS(864), + [anon_sym_CARET_EQ] = ACTIONS(864), + [anon_sym_LT_LT_EQ] = ACTIONS(864), + [anon_sym_GT_GT_EQ] = ACTIONS(864), + [anon_sym_yield] = ACTIONS(866), + [anon_sym_move] = ACTIONS(866), + [anon_sym_try] = ACTIONS(866), + [sym_integer_literal] = ACTIONS(864), + [aux_sym_string_literal_token1] = ACTIONS(864), + [sym_char_literal] = ACTIONS(864), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(866), + [sym_super] = ACTIONS(866), + [sym_crate] = ACTIONS(866), + [sym_metavariable] = ACTIONS(864), + [sym_raw_string_literal] = ACTIONS(864), + [sym_float_literal] = ACTIONS(864), + }, + [146] = { + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [ts_builtin_sym_end] = ACTIONS(868), + [sym_identifier] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_macro_rules_BANG] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(870), + [anon_sym_STAR] = ACTIONS(870), + [anon_sym_QMARK] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(870), + [anon_sym_i8] = ACTIONS(870), + [anon_sym_u16] = ACTIONS(870), + [anon_sym_i16] = ACTIONS(870), + [anon_sym_u32] = ACTIONS(870), + [anon_sym_i32] = ACTIONS(870), + [anon_sym_u64] = ACTIONS(870), + [anon_sym_i64] = ACTIONS(870), + [anon_sym_u128] = ACTIONS(870), + [anon_sym_i128] = ACTIONS(870), + [anon_sym_isize] = ACTIONS(870), + [anon_sym_usize] = ACTIONS(870), + [anon_sym_f32] = ACTIONS(870), + [anon_sym_f64] = ACTIONS(870), + [anon_sym_bool] = ACTIONS(870), + [anon_sym_str] = ACTIONS(870), + [anon_sym_char] = ACTIONS(870), + [anon_sym_SLASH] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(870), + [anon_sym_EQ] = ACTIONS(870), + [anon_sym_COLON_COLON] = ACTIONS(868), + [anon_sym_BANG] = ACTIONS(870), + [anon_sym_DOT] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(870), + [anon_sym_POUND] = ACTIONS(868), + [anon_sym_PERCENT] = ACTIONS(870), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(870), + [anon_sym_GT] = ACTIONS(870), + [anon_sym_PIPE] = ACTIONS(870), + [anon_sym_SQUOTE] = ACTIONS(870), + [anon_sym_as] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_break] = ACTIONS(870), + [anon_sym_const] = ACTIONS(870), + [anon_sym_continue] = ACTIONS(870), + [anon_sym_default] = ACTIONS(870), + [anon_sym_enum] = ACTIONS(870), + [anon_sym_fn] = ACTIONS(870), + [anon_sym_for] = ACTIONS(870), + [anon_sym_if] = ACTIONS(870), + [anon_sym_impl] = ACTIONS(870), + [anon_sym_let] = ACTIONS(870), + [anon_sym_loop] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_mod] = ACTIONS(870), + [anon_sym_pub] = ACTIONS(870), + [anon_sym_return] = ACTIONS(870), + [anon_sym_static] = ACTIONS(870), + [anon_sym_struct] = ACTIONS(870), + [anon_sym_trait] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_union] = ACTIONS(870), + [anon_sym_unsafe] = ACTIONS(870), + [anon_sym_use] = ACTIONS(870), + [anon_sym_while] = ACTIONS(870), + [anon_sym_extern] = ACTIONS(870), + [anon_sym_else] = ACTIONS(870), + [anon_sym_DOT_DOT_DOT] = ACTIONS(868), + [anon_sym_DOT_DOT] = ACTIONS(870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(868), + [anon_sym_PIPE_PIPE] = ACTIONS(868), + [anon_sym_EQ_EQ] = ACTIONS(868), + [anon_sym_BANG_EQ] = ACTIONS(868), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT_EQ] = ACTIONS(868), + [anon_sym_LT_LT] = ACTIONS(870), + [anon_sym_GT_GT] = ACTIONS(870), + [anon_sym_PLUS_EQ] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(868), + [anon_sym_STAR_EQ] = ACTIONS(868), + [anon_sym_SLASH_EQ] = ACTIONS(868), + [anon_sym_PERCENT_EQ] = ACTIONS(868), + [anon_sym_AMP_EQ] = ACTIONS(868), + [anon_sym_PIPE_EQ] = ACTIONS(868), + [anon_sym_CARET_EQ] = ACTIONS(868), + [anon_sym_LT_LT_EQ] = ACTIONS(868), + [anon_sym_GT_GT_EQ] = ACTIONS(868), + [anon_sym_yield] = ACTIONS(870), + [anon_sym_move] = ACTIONS(870), + [anon_sym_try] = ACTIONS(870), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(870), + [anon_sym_false] = ACTIONS(870), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(870), + [sym_super] = ACTIONS(870), + [sym_crate] = ACTIONS(870), + [sym_metavariable] = ACTIONS(868), + [sym_raw_string_literal] = ACTIONS(868), + [sym_float_literal] = ACTIONS(868), + }, + [147] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -37674,10 +36762,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -37687,126 +36775,125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [sym_mutable_specifier] = ACTIONS(870), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [sym_mutable_specifier] = ACTIONS(872), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [155] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [sym_identifier] = ACTIONS(475), + [148] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1354), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [sym_mutable_specifier] = ACTIONS(872), - [anon_sym_DOT_DOT] = ACTIONS(714), + [anon_sym_DOT_DOT] = ACTIONS(688), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -37817,281 +36904,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [156] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [sym_mutable_specifier] = ACTIONS(874), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [157] = { - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_macro_rules_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(878), - [anon_sym_QMARK] = ACTIONS(876), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SLASH] = ACTIONS(878), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_EQ] = ACTIONS(878), - [anon_sym_COLON_COLON] = ACTIONS(876), - [anon_sym_BANG] = ACTIONS(878), - [anon_sym_DOT] = ACTIONS(878), - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_POUND] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(878), - [anon_sym_CARET] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(878), - [anon_sym_SQUOTE] = ACTIONS(878), - [anon_sym_as] = ACTIONS(878), - [anon_sym_async] = ACTIONS(878), - [anon_sym_break] = ACTIONS(878), - [anon_sym_const] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(878), - [anon_sym_default] = ACTIONS(878), - [anon_sym_enum] = ACTIONS(878), - [anon_sym_fn] = ACTIONS(878), - [anon_sym_for] = ACTIONS(878), - [anon_sym_if] = ACTIONS(878), - [anon_sym_impl] = ACTIONS(878), - [anon_sym_let] = ACTIONS(878), - [anon_sym_loop] = ACTIONS(878), - [anon_sym_match] = ACTIONS(878), - [anon_sym_mod] = ACTIONS(878), - [anon_sym_pub] = ACTIONS(878), - [anon_sym_return] = ACTIONS(878), - [anon_sym_static] = ACTIONS(878), - [anon_sym_struct] = ACTIONS(878), - [anon_sym_trait] = ACTIONS(878), - [anon_sym_type] = ACTIONS(878), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(878), - [anon_sym_use] = ACTIONS(878), - [anon_sym_while] = ACTIONS(878), - [anon_sym_extern] = ACTIONS(878), - [anon_sym_else] = ACTIONS(878), - [anon_sym_DOT_DOT_DOT] = ACTIONS(876), - [anon_sym_DOT_DOT] = ACTIONS(878), - [anon_sym_DOT_DOT_EQ] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [anon_sym_PLUS_EQ] = ACTIONS(876), - [anon_sym_DASH_EQ] = ACTIONS(876), - [anon_sym_STAR_EQ] = ACTIONS(876), - [anon_sym_SLASH_EQ] = ACTIONS(876), - [anon_sym_PERCENT_EQ] = ACTIONS(876), - [anon_sym_AMP_EQ] = ACTIONS(876), - [anon_sym_PIPE_EQ] = ACTIONS(876), - [anon_sym_CARET_EQ] = ACTIONS(876), - [anon_sym_LT_LT_EQ] = ACTIONS(876), - [anon_sym_GT_GT_EQ] = ACTIONS(876), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_move] = ACTIONS(878), - [anon_sym_try] = ACTIONS(878), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(876), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(878), - [anon_sym_false] = ACTIONS(878), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(878), - [sym_super] = ACTIONS(878), - [sym_crate] = ACTIONS(878), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(876), - [sym_float_literal] = ACTIONS(876), - }, - [158] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1270), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), + [149] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1479), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -38135,8 +37002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [sym_mutable_specifier] = ACTIONS(880), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -38154,389 +37020,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [159] = { - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), - [ts_builtin_sym_end] = ACTIONS(882), - [sym_identifier] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_macro_rules_BANG] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(882), - [anon_sym_RBRACE] = ACTIONS(882), - [anon_sym_PLUS] = ACTIONS(884), - [anon_sym_STAR] = ACTIONS(884), - [anon_sym_QMARK] = ACTIONS(882), - [anon_sym_u8] = ACTIONS(884), - [anon_sym_i8] = ACTIONS(884), - [anon_sym_u16] = ACTIONS(884), - [anon_sym_i16] = ACTIONS(884), - [anon_sym_u32] = ACTIONS(884), - [anon_sym_i32] = ACTIONS(884), - [anon_sym_u64] = ACTIONS(884), - [anon_sym_i64] = ACTIONS(884), - [anon_sym_u128] = ACTIONS(884), - [anon_sym_i128] = ACTIONS(884), - [anon_sym_isize] = ACTIONS(884), - [anon_sym_usize] = ACTIONS(884), - [anon_sym_f32] = ACTIONS(884), - [anon_sym_f64] = ACTIONS(884), - [anon_sym_bool] = ACTIONS(884), - [anon_sym_str] = ACTIONS(884), - [anon_sym_char] = ACTIONS(884), - [anon_sym_SLASH] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(884), - [anon_sym_EQ] = ACTIONS(884), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_BANG] = ACTIONS(884), - [anon_sym_DOT] = ACTIONS(884), - [anon_sym_AMP] = ACTIONS(884), - [anon_sym_POUND] = ACTIONS(882), - [anon_sym_PERCENT] = ACTIONS(884), - [anon_sym_CARET] = ACTIONS(884), - [anon_sym_LT] = ACTIONS(884), - [anon_sym_GT] = ACTIONS(884), - [anon_sym_PIPE] = ACTIONS(884), - [anon_sym_SQUOTE] = ACTIONS(884), - [anon_sym_as] = ACTIONS(884), - [anon_sym_async] = ACTIONS(884), - [anon_sym_break] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_continue] = ACTIONS(884), - [anon_sym_default] = ACTIONS(884), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_fn] = ACTIONS(884), - [anon_sym_for] = ACTIONS(884), - [anon_sym_if] = ACTIONS(884), - [anon_sym_impl] = ACTIONS(884), - [anon_sym_let] = ACTIONS(884), - [anon_sym_loop] = ACTIONS(884), - [anon_sym_match] = ACTIONS(884), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_pub] = ACTIONS(884), - [anon_sym_return] = ACTIONS(884), - [anon_sym_static] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(884), - [anon_sym_trait] = ACTIONS(884), - [anon_sym_type] = ACTIONS(884), - [anon_sym_union] = ACTIONS(884), - [anon_sym_unsafe] = ACTIONS(884), - [anon_sym_use] = ACTIONS(884), - [anon_sym_while] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(884), - [anon_sym_else] = ACTIONS(884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(882), - [anon_sym_DOT_DOT] = ACTIONS(884), - [anon_sym_DOT_DOT_EQ] = ACTIONS(882), - [anon_sym_AMP_AMP] = ACTIONS(882), - [anon_sym_PIPE_PIPE] = ACTIONS(882), - [anon_sym_EQ_EQ] = ACTIONS(882), - [anon_sym_BANG_EQ] = ACTIONS(882), - [anon_sym_LT_EQ] = ACTIONS(882), - [anon_sym_GT_EQ] = ACTIONS(882), - [anon_sym_LT_LT] = ACTIONS(884), - [anon_sym_GT_GT] = ACTIONS(884), - [anon_sym_PLUS_EQ] = ACTIONS(882), - [anon_sym_DASH_EQ] = ACTIONS(882), - [anon_sym_STAR_EQ] = ACTIONS(882), - [anon_sym_SLASH_EQ] = ACTIONS(882), - [anon_sym_PERCENT_EQ] = ACTIONS(882), - [anon_sym_AMP_EQ] = ACTIONS(882), - [anon_sym_PIPE_EQ] = ACTIONS(882), - [anon_sym_CARET_EQ] = ACTIONS(882), - [anon_sym_LT_LT_EQ] = ACTIONS(882), - [anon_sym_GT_GT_EQ] = ACTIONS(882), - [anon_sym_yield] = ACTIONS(884), - [anon_sym_move] = ACTIONS(884), - [anon_sym_try] = ACTIONS(884), - [sym_integer_literal] = ACTIONS(882), - [aux_sym_string_literal_token1] = ACTIONS(882), - [sym_char_literal] = ACTIONS(882), - [anon_sym_true] = ACTIONS(884), - [anon_sym_false] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(884), - [sym_super] = ACTIONS(884), - [sym_crate] = ACTIONS(884), - [sym_metavariable] = ACTIONS(882), - [sym_raw_string_literal] = ACTIONS(882), - [sym_float_literal] = ACTIONS(882), - }, - [160] = { - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), - [ts_builtin_sym_end] = ACTIONS(886), - [sym_identifier] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_macro_rules_BANG] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_QMARK] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(888), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_BANG] = ACTIONS(888), - [anon_sym_DOT] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_POUND] = ACTIONS(886), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_CARET] = ACTIONS(888), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_GT] = ACTIONS(888), - [anon_sym_PIPE] = ACTIONS(888), - [anon_sym_SQUOTE] = ACTIONS(888), - [anon_sym_as] = ACTIONS(888), - [anon_sym_async] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [anon_sym_const] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_if] = ACTIONS(888), - [anon_sym_impl] = ACTIONS(888), - [anon_sym_let] = ACTIONS(888), - [anon_sym_loop] = ACTIONS(888), - [anon_sym_match] = ACTIONS(888), - [anon_sym_mod] = ACTIONS(888), - [anon_sym_pub] = ACTIONS(888), - [anon_sym_return] = ACTIONS(888), - [anon_sym_static] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(888), - [anon_sym_trait] = ACTIONS(888), - [anon_sym_type] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_unsafe] = ACTIONS(888), - [anon_sym_use] = ACTIONS(888), - [anon_sym_while] = ACTIONS(888), - [anon_sym_extern] = ACTIONS(888), - [anon_sym_else] = ACTIONS(888), - [anon_sym_DOT_DOT_DOT] = ACTIONS(886), - [anon_sym_DOT_DOT] = ACTIONS(888), - [anon_sym_DOT_DOT_EQ] = ACTIONS(886), - [anon_sym_AMP_AMP] = ACTIONS(886), - [anon_sym_PIPE_PIPE] = ACTIONS(886), - [anon_sym_EQ_EQ] = ACTIONS(886), - [anon_sym_BANG_EQ] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(886), - [anon_sym_LT_LT] = ACTIONS(888), - [anon_sym_GT_GT] = ACTIONS(888), - [anon_sym_PLUS_EQ] = ACTIONS(886), - [anon_sym_DASH_EQ] = ACTIONS(886), - [anon_sym_STAR_EQ] = ACTIONS(886), - [anon_sym_SLASH_EQ] = ACTIONS(886), - [anon_sym_PERCENT_EQ] = ACTIONS(886), - [anon_sym_AMP_EQ] = ACTIONS(886), - [anon_sym_PIPE_EQ] = ACTIONS(886), - [anon_sym_CARET_EQ] = ACTIONS(886), - [anon_sym_LT_LT_EQ] = ACTIONS(886), - [anon_sym_GT_GT_EQ] = ACTIONS(886), - [anon_sym_yield] = ACTIONS(888), - [anon_sym_move] = ACTIONS(888), - [anon_sym_try] = ACTIONS(888), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(886), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(888), - [anon_sym_false] = ACTIONS(888), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(886), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), - }, - [161] = { - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), - [ts_builtin_sym_end] = ACTIONS(890), - [sym_identifier] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_macro_rules_BANG] = ACTIONS(890), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_QMARK] = ACTIONS(890), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SLASH] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_EQ] = ACTIONS(892), - [anon_sym_COLON_COLON] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_DOT] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_POUND] = ACTIONS(890), - [anon_sym_PERCENT] = ACTIONS(892), - [anon_sym_CARET] = ACTIONS(892), - [anon_sym_LT] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(892), - [anon_sym_PIPE] = ACTIONS(892), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_as] = ACTIONS(892), - [anon_sym_async] = ACTIONS(892), - [anon_sym_break] = ACTIONS(892), - [anon_sym_const] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_default] = ACTIONS(892), - [anon_sym_enum] = ACTIONS(892), - [anon_sym_fn] = ACTIONS(892), - [anon_sym_for] = ACTIONS(892), - [anon_sym_if] = ACTIONS(892), - [anon_sym_impl] = ACTIONS(892), - [anon_sym_let] = ACTIONS(892), - [anon_sym_loop] = ACTIONS(892), - [anon_sym_match] = ACTIONS(892), - [anon_sym_mod] = ACTIONS(892), - [anon_sym_pub] = ACTIONS(892), - [anon_sym_return] = ACTIONS(892), - [anon_sym_static] = ACTIONS(892), - [anon_sym_struct] = ACTIONS(892), - [anon_sym_trait] = ACTIONS(892), - [anon_sym_type] = ACTIONS(892), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(892), - [anon_sym_use] = ACTIONS(892), - [anon_sym_while] = ACTIONS(892), - [anon_sym_extern] = ACTIONS(892), - [anon_sym_else] = ACTIONS(892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(890), - [anon_sym_DOT_DOT] = ACTIONS(892), - [anon_sym_DOT_DOT_EQ] = ACTIONS(890), - [anon_sym_AMP_AMP] = ACTIONS(890), - [anon_sym_PIPE_PIPE] = ACTIONS(890), - [anon_sym_EQ_EQ] = ACTIONS(890), - [anon_sym_BANG_EQ] = ACTIONS(890), - [anon_sym_LT_EQ] = ACTIONS(890), - [anon_sym_GT_EQ] = ACTIONS(890), - [anon_sym_LT_LT] = ACTIONS(892), - [anon_sym_GT_GT] = ACTIONS(892), - [anon_sym_PLUS_EQ] = ACTIONS(890), - [anon_sym_DASH_EQ] = ACTIONS(890), - [anon_sym_STAR_EQ] = ACTIONS(890), - [anon_sym_SLASH_EQ] = ACTIONS(890), - [anon_sym_PERCENT_EQ] = ACTIONS(890), - [anon_sym_AMP_EQ] = ACTIONS(890), - [anon_sym_PIPE_EQ] = ACTIONS(890), - [anon_sym_CARET_EQ] = ACTIONS(890), - [anon_sym_LT_LT_EQ] = ACTIONS(890), - [anon_sym_GT_GT_EQ] = ACTIONS(890), - [anon_sym_yield] = ACTIONS(892), - [anon_sym_move] = ACTIONS(892), - [anon_sym_try] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(890), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(892), - [anon_sym_false] = ACTIONS(892), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [150] = { + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [ts_builtin_sym_end] = ACTIONS(874), + [sym_identifier] = ACTIONS(876), + [anon_sym_SEMI] = ACTIONS(874), + [anon_sym_macro_rules_BANG] = ACTIONS(874), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(876), + [anon_sym_QMARK] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(876), + [anon_sym_COLON_COLON] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(876), + [anon_sym_DOT] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_POUND] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(876), + [anon_sym_CARET] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_SQUOTE] = ACTIONS(876), + [anon_sym_as] = ACTIONS(876), + [anon_sym_async] = ACTIONS(876), + [anon_sym_break] = ACTIONS(876), + [anon_sym_const] = ACTIONS(876), + [anon_sym_continue] = ACTIONS(876), + [anon_sym_default] = ACTIONS(876), + [anon_sym_enum] = ACTIONS(876), + [anon_sym_fn] = ACTIONS(876), + [anon_sym_for] = ACTIONS(876), + [anon_sym_if] = ACTIONS(876), + [anon_sym_impl] = ACTIONS(876), + [anon_sym_let] = ACTIONS(876), + [anon_sym_loop] = ACTIONS(876), + [anon_sym_match] = ACTIONS(876), + [anon_sym_mod] = ACTIONS(876), + [anon_sym_pub] = ACTIONS(876), + [anon_sym_return] = ACTIONS(876), + [anon_sym_static] = ACTIONS(876), + [anon_sym_struct] = ACTIONS(876), + [anon_sym_trait] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_union] = ACTIONS(876), + [anon_sym_unsafe] = ACTIONS(876), + [anon_sym_use] = ACTIONS(876), + [anon_sym_while] = ACTIONS(876), + [anon_sym_extern] = ACTIONS(876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(874), + [anon_sym_DOT_DOT] = ACTIONS(876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_PLUS_EQ] = ACTIONS(874), + [anon_sym_DASH_EQ] = ACTIONS(874), + [anon_sym_STAR_EQ] = ACTIONS(874), + [anon_sym_SLASH_EQ] = ACTIONS(874), + [anon_sym_PERCENT_EQ] = ACTIONS(874), + [anon_sym_AMP_EQ] = ACTIONS(874), + [anon_sym_PIPE_EQ] = ACTIONS(874), + [anon_sym_CARET_EQ] = ACTIONS(874), + [anon_sym_LT_LT_EQ] = ACTIONS(874), + [anon_sym_GT_GT_EQ] = ACTIONS(874), + [anon_sym_yield] = ACTIONS(876), + [anon_sym_move] = ACTIONS(876), + [anon_sym_try] = ACTIONS(876), + [sym_integer_literal] = ACTIONS(874), + [aux_sym_string_literal_token1] = ACTIONS(874), + [sym_char_literal] = ACTIONS(874), + [anon_sym_true] = ACTIONS(876), + [anon_sym_false] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(874), + [sym_raw_string_literal] = ACTIONS(874), + [sym_float_literal] = ACTIONS(874), }, - [162] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), + [151] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -38554,250 +37199,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), + [anon_sym_break] = ACTIONS(407), [anon_sym_const] = ACTIONS(409), [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [sym_mutable_specifier] = ACTIONS(894), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [163] = { - [sym_line_comment] = STATE(163), - [sym_block_comment] = STATE(163), - [ts_builtin_sym_end] = ACTIONS(896), - [sym_identifier] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_macro_rules_BANG] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_QMARK] = ACTIONS(896), - [anon_sym_u8] = ACTIONS(898), - [anon_sym_i8] = ACTIONS(898), - [anon_sym_u16] = ACTIONS(898), - [anon_sym_i16] = ACTIONS(898), - [anon_sym_u32] = ACTIONS(898), - [anon_sym_i32] = ACTIONS(898), - [anon_sym_u64] = ACTIONS(898), - [anon_sym_i64] = ACTIONS(898), - [anon_sym_u128] = ACTIONS(898), - [anon_sym_i128] = ACTIONS(898), - [anon_sym_isize] = ACTIONS(898), - [anon_sym_usize] = ACTIONS(898), - [anon_sym_f32] = ACTIONS(898), - [anon_sym_f64] = ACTIONS(898), - [anon_sym_bool] = ACTIONS(898), - [anon_sym_str] = ACTIONS(898), - [anon_sym_char] = ACTIONS(898), - [anon_sym_SLASH] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_EQ] = ACTIONS(898), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(898), - [anon_sym_DOT] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_POUND] = ACTIONS(896), - [anon_sym_PERCENT] = ACTIONS(898), - [anon_sym_CARET] = ACTIONS(898), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_SQUOTE] = ACTIONS(898), - [anon_sym_as] = ACTIONS(898), - [anon_sym_async] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_impl] = ACTIONS(898), - [anon_sym_let] = ACTIONS(898), - [anon_sym_loop] = ACTIONS(898), - [anon_sym_match] = ACTIONS(898), - [anon_sym_mod] = ACTIONS(898), - [anon_sym_pub] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_static] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_trait] = ACTIONS(898), - [anon_sym_type] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_unsafe] = ACTIONS(898), - [anon_sym_use] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(896), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_DOT_DOT_EQ] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(896), - [anon_sym_EQ_EQ] = ACTIONS(896), - [anon_sym_BANG_EQ] = ACTIONS(896), - [anon_sym_LT_EQ] = ACTIONS(896), - [anon_sym_GT_EQ] = ACTIONS(896), - [anon_sym_LT_LT] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(898), - [anon_sym_PLUS_EQ] = ACTIONS(896), - [anon_sym_DASH_EQ] = ACTIONS(896), - [anon_sym_STAR_EQ] = ACTIONS(896), - [anon_sym_SLASH_EQ] = ACTIONS(896), - [anon_sym_PERCENT_EQ] = ACTIONS(896), - [anon_sym_AMP_EQ] = ACTIONS(896), - [anon_sym_PIPE_EQ] = ACTIONS(896), - [anon_sym_CARET_EQ] = ACTIONS(896), - [anon_sym_LT_LT_EQ] = ACTIONS(896), - [anon_sym_GT_GT_EQ] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_move] = ACTIONS(898), - [anon_sym_try] = ACTIONS(898), - [sym_integer_literal] = ACTIONS(896), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(896), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(898), - [sym_super] = ACTIONS(898), - [sym_crate] = ACTIONS(898), - [sym_metavariable] = ACTIONS(896), - [sym_raw_string_literal] = ACTIONS(896), - [sym_float_literal] = ACTIONS(896), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [164] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1435), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), - [sym_identifier] = ACTIONS(475), + [152] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1605), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -38806,66 +37340,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [165] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), + [153] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1695), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -38883,10 +37417,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -38896,235 +37430,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [166] = { - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [ts_builtin_sym_end] = ACTIONS(900), - [sym_identifier] = ACTIONS(902), - [anon_sym_SEMI] = ACTIONS(900), - [anon_sym_macro_rules_BANG] = ACTIONS(900), - [anon_sym_LPAREN] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(900), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_QMARK] = ACTIONS(900), - [anon_sym_u8] = ACTIONS(902), - [anon_sym_i8] = ACTIONS(902), - [anon_sym_u16] = ACTIONS(902), - [anon_sym_i16] = ACTIONS(902), - [anon_sym_u32] = ACTIONS(902), - [anon_sym_i32] = ACTIONS(902), - [anon_sym_u64] = ACTIONS(902), - [anon_sym_i64] = ACTIONS(902), - [anon_sym_u128] = ACTIONS(902), - [anon_sym_i128] = ACTIONS(902), - [anon_sym_isize] = ACTIONS(902), - [anon_sym_usize] = ACTIONS(902), - [anon_sym_f32] = ACTIONS(902), - [anon_sym_f64] = ACTIONS(902), - [anon_sym_bool] = ACTIONS(902), - [anon_sym_str] = ACTIONS(902), - [anon_sym_char] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(902), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_BANG] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(902), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(900), - [anon_sym_PERCENT] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_SQUOTE] = ACTIONS(902), - [anon_sym_as] = ACTIONS(902), - [anon_sym_async] = ACTIONS(902), - [anon_sym_break] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_continue] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_enum] = ACTIONS(902), - [anon_sym_fn] = ACTIONS(902), - [anon_sym_for] = ACTIONS(902), - [anon_sym_if] = ACTIONS(902), - [anon_sym_impl] = ACTIONS(902), - [anon_sym_let] = ACTIONS(902), - [anon_sym_loop] = ACTIONS(902), - [anon_sym_match] = ACTIONS(902), - [anon_sym_mod] = ACTIONS(902), - [anon_sym_pub] = ACTIONS(902), - [anon_sym_return] = ACTIONS(902), - [anon_sym_static] = ACTIONS(902), - [anon_sym_struct] = ACTIONS(902), - [anon_sym_trait] = ACTIONS(902), - [anon_sym_type] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_unsafe] = ACTIONS(902), - [anon_sym_use] = ACTIONS(902), - [anon_sym_while] = ACTIONS(902), - [anon_sym_extern] = ACTIONS(902), - [anon_sym_DOT_DOT_DOT] = ACTIONS(900), - [anon_sym_DOT_DOT] = ACTIONS(902), - [anon_sym_DOT_DOT_EQ] = ACTIONS(900), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE_PIPE] = ACTIONS(900), - [anon_sym_EQ_EQ] = ACTIONS(900), - [anon_sym_BANG_EQ] = ACTIONS(900), - [anon_sym_LT_EQ] = ACTIONS(900), - [anon_sym_GT_EQ] = ACTIONS(900), - [anon_sym_LT_LT] = ACTIONS(902), - [anon_sym_GT_GT] = ACTIONS(902), - [anon_sym_PLUS_EQ] = ACTIONS(900), - [anon_sym_DASH_EQ] = ACTIONS(900), - [anon_sym_STAR_EQ] = ACTIONS(900), - [anon_sym_SLASH_EQ] = ACTIONS(900), - [anon_sym_PERCENT_EQ] = ACTIONS(900), - [anon_sym_AMP_EQ] = ACTIONS(900), - [anon_sym_PIPE_EQ] = ACTIONS(900), - [anon_sym_CARET_EQ] = ACTIONS(900), - [anon_sym_LT_LT_EQ] = ACTIONS(900), - [anon_sym_GT_GT_EQ] = ACTIONS(900), - [anon_sym_yield] = ACTIONS(902), - [anon_sym_move] = ACTIONS(902), - [anon_sym_try] = ACTIONS(902), - [sym_integer_literal] = ACTIONS(900), - [aux_sym_string_literal_token1] = ACTIONS(900), - [sym_char_literal] = ACTIONS(900), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), + [154] = { + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [ts_builtin_sym_end] = ACTIONS(878), + [sym_identifier] = ACTIONS(880), + [anon_sym_SEMI] = ACTIONS(878), + [anon_sym_macro_rules_BANG] = ACTIONS(878), + [anon_sym_LPAREN] = ACTIONS(878), + [anon_sym_LBRACK] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(878), + [anon_sym_RBRACE] = ACTIONS(878), + [anon_sym_PLUS] = ACTIONS(880), + [anon_sym_STAR] = ACTIONS(880), + [anon_sym_QMARK] = ACTIONS(878), + [anon_sym_u8] = ACTIONS(880), + [anon_sym_i8] = ACTIONS(880), + [anon_sym_u16] = ACTIONS(880), + [anon_sym_i16] = ACTIONS(880), + [anon_sym_u32] = ACTIONS(880), + [anon_sym_i32] = ACTIONS(880), + [anon_sym_u64] = ACTIONS(880), + [anon_sym_i64] = ACTIONS(880), + [anon_sym_u128] = ACTIONS(880), + [anon_sym_i128] = ACTIONS(880), + [anon_sym_isize] = ACTIONS(880), + [anon_sym_usize] = ACTIONS(880), + [anon_sym_f32] = ACTIONS(880), + [anon_sym_f64] = ACTIONS(880), + [anon_sym_bool] = ACTIONS(880), + [anon_sym_str] = ACTIONS(880), + [anon_sym_char] = ACTIONS(880), + [anon_sym_SLASH] = ACTIONS(880), + [anon_sym_DASH] = ACTIONS(880), + [anon_sym_EQ] = ACTIONS(880), + [anon_sym_COLON_COLON] = ACTIONS(878), + [anon_sym_BANG] = ACTIONS(880), + [anon_sym_DOT] = ACTIONS(880), + [anon_sym_AMP] = ACTIONS(880), + [anon_sym_POUND] = ACTIONS(878), + [anon_sym_PERCENT] = ACTIONS(880), + [anon_sym_CARET] = ACTIONS(880), + [anon_sym_LT] = ACTIONS(880), + [anon_sym_GT] = ACTIONS(880), + [anon_sym_PIPE] = ACTIONS(880), + [anon_sym_SQUOTE] = ACTIONS(880), + [anon_sym_as] = ACTIONS(880), + [anon_sym_async] = ACTIONS(880), + [anon_sym_break] = ACTIONS(880), + [anon_sym_const] = ACTIONS(880), + [anon_sym_continue] = ACTIONS(880), + [anon_sym_default] = ACTIONS(880), + [anon_sym_enum] = ACTIONS(880), + [anon_sym_fn] = ACTIONS(880), + [anon_sym_for] = ACTIONS(880), + [anon_sym_if] = ACTIONS(880), + [anon_sym_impl] = ACTIONS(880), + [anon_sym_let] = ACTIONS(880), + [anon_sym_loop] = ACTIONS(880), + [anon_sym_match] = ACTIONS(880), + [anon_sym_mod] = ACTIONS(880), + [anon_sym_pub] = ACTIONS(880), + [anon_sym_return] = ACTIONS(880), + [anon_sym_static] = ACTIONS(880), + [anon_sym_struct] = ACTIONS(880), + [anon_sym_trait] = ACTIONS(880), + [anon_sym_type] = ACTIONS(880), + [anon_sym_union] = ACTIONS(880), + [anon_sym_unsafe] = ACTIONS(880), + [anon_sym_use] = ACTIONS(880), + [anon_sym_while] = ACTIONS(880), + [anon_sym_extern] = ACTIONS(880), + [anon_sym_DOT_DOT_DOT] = ACTIONS(878), + [anon_sym_DOT_DOT] = ACTIONS(880), + [anon_sym_DOT_DOT_EQ] = ACTIONS(878), + [anon_sym_AMP_AMP] = ACTIONS(878), + [anon_sym_PIPE_PIPE] = ACTIONS(878), + [anon_sym_EQ_EQ] = ACTIONS(878), + [anon_sym_BANG_EQ] = ACTIONS(878), + [anon_sym_LT_EQ] = ACTIONS(878), + [anon_sym_GT_EQ] = ACTIONS(878), + [anon_sym_LT_LT] = ACTIONS(880), + [anon_sym_GT_GT] = ACTIONS(880), + [anon_sym_PLUS_EQ] = ACTIONS(878), + [anon_sym_DASH_EQ] = ACTIONS(878), + [anon_sym_STAR_EQ] = ACTIONS(878), + [anon_sym_SLASH_EQ] = ACTIONS(878), + [anon_sym_PERCENT_EQ] = ACTIONS(878), + [anon_sym_AMP_EQ] = ACTIONS(878), + [anon_sym_PIPE_EQ] = ACTIONS(878), + [anon_sym_CARET_EQ] = ACTIONS(878), + [anon_sym_LT_LT_EQ] = ACTIONS(878), + [anon_sym_GT_GT_EQ] = ACTIONS(878), + [anon_sym_yield] = ACTIONS(880), + [anon_sym_move] = ACTIONS(880), + [anon_sym_try] = ACTIONS(880), + [sym_integer_literal] = ACTIONS(878), + [aux_sym_string_literal_token1] = ACTIONS(878), + [sym_char_literal] = ACTIONS(878), + [anon_sym_true] = ACTIONS(880), + [anon_sym_false] = ACTIONS(880), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(880), + [sym_super] = ACTIONS(880), + [sym_crate] = ACTIONS(880), + [sym_metavariable] = ACTIONS(878), + [sym_raw_string_literal] = ACTIONS(878), + [sym_float_literal] = ACTIONS(878), + }, + [155] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1785), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(900), - [sym_raw_string_literal] = ACTIONS(900), - [sym_float_literal] = ACTIONS(900), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [167] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(475), + [156] = { + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [ts_builtin_sym_end] = ACTIONS(882), + [sym_identifier] = ACTIONS(884), + [anon_sym_SEMI] = ACTIONS(882), + [anon_sym_macro_rules_BANG] = ACTIONS(882), + [anon_sym_LPAREN] = ACTIONS(882), + [anon_sym_LBRACK] = ACTIONS(882), + [anon_sym_LBRACE] = ACTIONS(882), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_PLUS] = ACTIONS(884), + [anon_sym_STAR] = ACTIONS(884), + [anon_sym_QMARK] = ACTIONS(882), + [anon_sym_u8] = ACTIONS(884), + [anon_sym_i8] = ACTIONS(884), + [anon_sym_u16] = ACTIONS(884), + [anon_sym_i16] = ACTIONS(884), + [anon_sym_u32] = ACTIONS(884), + [anon_sym_i32] = ACTIONS(884), + [anon_sym_u64] = ACTIONS(884), + [anon_sym_i64] = ACTIONS(884), + [anon_sym_u128] = ACTIONS(884), + [anon_sym_i128] = ACTIONS(884), + [anon_sym_isize] = ACTIONS(884), + [anon_sym_usize] = ACTIONS(884), + [anon_sym_f32] = ACTIONS(884), + [anon_sym_f64] = ACTIONS(884), + [anon_sym_bool] = ACTIONS(884), + [anon_sym_str] = ACTIONS(884), + [anon_sym_char] = ACTIONS(884), + [anon_sym_SLASH] = ACTIONS(884), + [anon_sym_DASH] = ACTIONS(884), + [anon_sym_EQ] = ACTIONS(884), + [anon_sym_COLON_COLON] = ACTIONS(882), + [anon_sym_BANG] = ACTIONS(884), + [anon_sym_DOT] = ACTIONS(884), + [anon_sym_AMP] = ACTIONS(884), + [anon_sym_POUND] = ACTIONS(882), + [anon_sym_PERCENT] = ACTIONS(884), + [anon_sym_CARET] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(884), + [anon_sym_GT] = ACTIONS(884), + [anon_sym_PIPE] = ACTIONS(884), + [anon_sym_SQUOTE] = ACTIONS(884), + [anon_sym_as] = ACTIONS(884), + [anon_sym_async] = ACTIONS(884), + [anon_sym_break] = ACTIONS(884), + [anon_sym_const] = ACTIONS(884), + [anon_sym_continue] = ACTIONS(884), + [anon_sym_default] = ACTIONS(884), + [anon_sym_enum] = ACTIONS(884), + [anon_sym_fn] = ACTIONS(884), + [anon_sym_for] = ACTIONS(884), + [anon_sym_if] = ACTIONS(884), + [anon_sym_impl] = ACTIONS(884), + [anon_sym_let] = ACTIONS(884), + [anon_sym_loop] = ACTIONS(884), + [anon_sym_match] = ACTIONS(884), + [anon_sym_mod] = ACTIONS(884), + [anon_sym_pub] = ACTIONS(884), + [anon_sym_return] = ACTIONS(884), + [anon_sym_static] = ACTIONS(884), + [anon_sym_struct] = ACTIONS(884), + [anon_sym_trait] = ACTIONS(884), + [anon_sym_type] = ACTIONS(884), + [anon_sym_union] = ACTIONS(884), + [anon_sym_unsafe] = ACTIONS(884), + [anon_sym_use] = ACTIONS(884), + [anon_sym_while] = ACTIONS(884), + [anon_sym_extern] = ACTIONS(884), + [anon_sym_DOT_DOT_DOT] = ACTIONS(882), + [anon_sym_DOT_DOT] = ACTIONS(884), + [anon_sym_DOT_DOT_EQ] = ACTIONS(882), + [anon_sym_AMP_AMP] = ACTIONS(882), + [anon_sym_PIPE_PIPE] = ACTIONS(882), + [anon_sym_EQ_EQ] = ACTIONS(882), + [anon_sym_BANG_EQ] = ACTIONS(882), + [anon_sym_LT_EQ] = ACTIONS(882), + [anon_sym_GT_EQ] = ACTIONS(882), + [anon_sym_LT_LT] = ACTIONS(884), + [anon_sym_GT_GT] = ACTIONS(884), + [anon_sym_PLUS_EQ] = ACTIONS(882), + [anon_sym_DASH_EQ] = ACTIONS(882), + [anon_sym_STAR_EQ] = ACTIONS(882), + [anon_sym_SLASH_EQ] = ACTIONS(882), + [anon_sym_PERCENT_EQ] = ACTIONS(882), + [anon_sym_AMP_EQ] = ACTIONS(882), + [anon_sym_PIPE_EQ] = ACTIONS(882), + [anon_sym_CARET_EQ] = ACTIONS(882), + [anon_sym_LT_LT_EQ] = ACTIONS(882), + [anon_sym_GT_GT_EQ] = ACTIONS(882), + [anon_sym_yield] = ACTIONS(884), + [anon_sym_move] = ACTIONS(884), + [anon_sym_try] = ACTIONS(884), + [sym_integer_literal] = ACTIONS(882), + [aux_sym_string_literal_token1] = ACTIONS(882), + [sym_char_literal] = ACTIONS(882), + [anon_sym_true] = ACTIONS(884), + [anon_sym_false] = ACTIONS(884), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(884), + [sym_super] = ACTIONS(884), + [sym_crate] = ACTIONS(884), + [sym_metavariable] = ACTIONS(882), + [sym_raw_string_literal] = ACTIONS(882), + [sym_float_literal] = ACTIONS(882), + }, + [157] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1678), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -39133,105 +37885,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [168] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1543), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(475), + [158] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1591), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(688), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -39242,325 +37994,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [169] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1713), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [170] = { - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [ts_builtin_sym_end] = ACTIONS(904), - [sym_identifier] = ACTIONS(906), - [anon_sym_SEMI] = ACTIONS(904), - [anon_sym_macro_rules_BANG] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(904), - [anon_sym_LBRACE] = ACTIONS(904), - [anon_sym_RBRACE] = ACTIONS(904), - [anon_sym_PLUS] = ACTIONS(906), - [anon_sym_STAR] = ACTIONS(906), - [anon_sym_QMARK] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(906), - [anon_sym_i8] = ACTIONS(906), - [anon_sym_u16] = ACTIONS(906), - [anon_sym_i16] = ACTIONS(906), - [anon_sym_u32] = ACTIONS(906), - [anon_sym_i32] = ACTIONS(906), - [anon_sym_u64] = ACTIONS(906), - [anon_sym_i64] = ACTIONS(906), - [anon_sym_u128] = ACTIONS(906), - [anon_sym_i128] = ACTIONS(906), - [anon_sym_isize] = ACTIONS(906), - [anon_sym_usize] = ACTIONS(906), - [anon_sym_f32] = ACTIONS(906), - [anon_sym_f64] = ACTIONS(906), - [anon_sym_bool] = ACTIONS(906), - [anon_sym_str] = ACTIONS(906), - [anon_sym_char] = ACTIONS(906), - [anon_sym_SLASH] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), - [anon_sym_EQ] = ACTIONS(906), - [anon_sym_COLON_COLON] = ACTIONS(904), - [anon_sym_BANG] = ACTIONS(906), - [anon_sym_DOT] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(904), - [anon_sym_PERCENT] = ACTIONS(906), - [anon_sym_CARET] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), - [anon_sym_GT] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), - [anon_sym_SQUOTE] = ACTIONS(906), - [anon_sym_as] = ACTIONS(906), - [anon_sym_async] = ACTIONS(906), - [anon_sym_break] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_enum] = ACTIONS(906), - [anon_sym_fn] = ACTIONS(906), - [anon_sym_for] = ACTIONS(906), - [anon_sym_if] = ACTIONS(906), - [anon_sym_impl] = ACTIONS(906), - [anon_sym_let] = ACTIONS(906), - [anon_sym_loop] = ACTIONS(906), - [anon_sym_match] = ACTIONS(906), - [anon_sym_mod] = ACTIONS(906), - [anon_sym_pub] = ACTIONS(906), - [anon_sym_return] = ACTIONS(906), - [anon_sym_static] = ACTIONS(906), - [anon_sym_struct] = ACTIONS(906), - [anon_sym_trait] = ACTIONS(906), - [anon_sym_type] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_unsafe] = ACTIONS(906), - [anon_sym_use] = ACTIONS(906), - [anon_sym_while] = ACTIONS(906), - [anon_sym_extern] = ACTIONS(906), - [anon_sym_DOT_DOT_DOT] = ACTIONS(904), - [anon_sym_DOT_DOT] = ACTIONS(906), - [anon_sym_DOT_DOT_EQ] = ACTIONS(904), - [anon_sym_AMP_AMP] = ACTIONS(904), - [anon_sym_PIPE_PIPE] = ACTIONS(904), - [anon_sym_EQ_EQ] = ACTIONS(904), - [anon_sym_BANG_EQ] = ACTIONS(904), - [anon_sym_LT_EQ] = ACTIONS(904), - [anon_sym_GT_EQ] = ACTIONS(904), - [anon_sym_LT_LT] = ACTIONS(906), - [anon_sym_GT_GT] = ACTIONS(906), - [anon_sym_PLUS_EQ] = ACTIONS(904), - [anon_sym_DASH_EQ] = ACTIONS(904), - [anon_sym_STAR_EQ] = ACTIONS(904), - [anon_sym_SLASH_EQ] = ACTIONS(904), - [anon_sym_PERCENT_EQ] = ACTIONS(904), - [anon_sym_AMP_EQ] = ACTIONS(904), - [anon_sym_PIPE_EQ] = ACTIONS(904), - [anon_sym_CARET_EQ] = ACTIONS(904), - [anon_sym_LT_LT_EQ] = ACTIONS(904), - [anon_sym_GT_GT_EQ] = ACTIONS(904), - [anon_sym_yield] = ACTIONS(906), - [anon_sym_move] = ACTIONS(906), - [anon_sym_try] = ACTIONS(906), - [sym_integer_literal] = ACTIONS(904), - [aux_sym_string_literal_token1] = ACTIONS(904), - [sym_char_literal] = ACTIONS(904), - [anon_sym_true] = ACTIONS(906), - [anon_sym_false] = ACTIONS(906), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(904), - [sym_raw_string_literal] = ACTIONS(904), - [sym_float_literal] = ACTIONS(904), - }, - [171] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [sym_identifier] = ACTIONS(475), + [159] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1642), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(886), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -39569,170 +38103,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [172] = { - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), - [ts_builtin_sym_end] = ACTIONS(908), - [sym_identifier] = ACTIONS(910), - [anon_sym_SEMI] = ACTIONS(908), - [anon_sym_macro_rules_BANG] = ACTIONS(908), - [anon_sym_LPAREN] = ACTIONS(908), - [anon_sym_LBRACK] = ACTIONS(908), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_RBRACE] = ACTIONS(908), - [anon_sym_PLUS] = ACTIONS(910), - [anon_sym_STAR] = ACTIONS(910), - [anon_sym_QMARK] = ACTIONS(908), - [anon_sym_u8] = ACTIONS(910), - [anon_sym_i8] = ACTIONS(910), - [anon_sym_u16] = ACTIONS(910), - [anon_sym_i16] = ACTIONS(910), - [anon_sym_u32] = ACTIONS(910), - [anon_sym_i32] = ACTIONS(910), - [anon_sym_u64] = ACTIONS(910), - [anon_sym_i64] = ACTIONS(910), - [anon_sym_u128] = ACTIONS(910), - [anon_sym_i128] = ACTIONS(910), - [anon_sym_isize] = ACTIONS(910), - [anon_sym_usize] = ACTIONS(910), - [anon_sym_f32] = ACTIONS(910), - [anon_sym_f64] = ACTIONS(910), - [anon_sym_bool] = ACTIONS(910), - [anon_sym_str] = ACTIONS(910), - [anon_sym_char] = ACTIONS(910), - [anon_sym_SLASH] = ACTIONS(910), - [anon_sym_DASH] = ACTIONS(910), - [anon_sym_EQ] = ACTIONS(910), - [anon_sym_COLON_COLON] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(910), - [anon_sym_DOT] = ACTIONS(910), - [anon_sym_AMP] = ACTIONS(910), - [anon_sym_POUND] = ACTIONS(908), - [anon_sym_PERCENT] = ACTIONS(910), - [anon_sym_CARET] = ACTIONS(910), - [anon_sym_LT] = ACTIONS(910), - [anon_sym_GT] = ACTIONS(910), - [anon_sym_PIPE] = ACTIONS(910), - [anon_sym_SQUOTE] = ACTIONS(910), - [anon_sym_as] = ACTIONS(910), - [anon_sym_async] = ACTIONS(910), - [anon_sym_break] = ACTIONS(910), - [anon_sym_const] = ACTIONS(910), - [anon_sym_continue] = ACTIONS(910), - [anon_sym_default] = ACTIONS(910), - [anon_sym_enum] = ACTIONS(910), - [anon_sym_fn] = ACTIONS(910), - [anon_sym_for] = ACTIONS(910), - [anon_sym_if] = ACTIONS(910), - [anon_sym_impl] = ACTIONS(910), - [anon_sym_let] = ACTIONS(910), - [anon_sym_loop] = ACTIONS(910), - [anon_sym_match] = ACTIONS(910), - [anon_sym_mod] = ACTIONS(910), - [anon_sym_pub] = ACTIONS(910), - [anon_sym_return] = ACTIONS(910), - [anon_sym_static] = ACTIONS(910), - [anon_sym_struct] = ACTIONS(910), - [anon_sym_trait] = ACTIONS(910), - [anon_sym_type] = ACTIONS(910), - [anon_sym_union] = ACTIONS(910), - [anon_sym_unsafe] = ACTIONS(910), - [anon_sym_use] = ACTIONS(910), - [anon_sym_while] = ACTIONS(910), - [anon_sym_extern] = ACTIONS(910), - [anon_sym_DOT_DOT_DOT] = ACTIONS(908), - [anon_sym_DOT_DOT] = ACTIONS(910), - [anon_sym_DOT_DOT_EQ] = ACTIONS(908), - [anon_sym_AMP_AMP] = ACTIONS(908), - [anon_sym_PIPE_PIPE] = ACTIONS(908), - [anon_sym_EQ_EQ] = ACTIONS(908), - [anon_sym_BANG_EQ] = ACTIONS(908), - [anon_sym_LT_EQ] = ACTIONS(908), - [anon_sym_GT_EQ] = ACTIONS(908), - [anon_sym_LT_LT] = ACTIONS(910), - [anon_sym_GT_GT] = ACTIONS(910), - [anon_sym_PLUS_EQ] = ACTIONS(908), - [anon_sym_DASH_EQ] = ACTIONS(908), - [anon_sym_STAR_EQ] = ACTIONS(908), - [anon_sym_SLASH_EQ] = ACTIONS(908), - [anon_sym_PERCENT_EQ] = ACTIONS(908), - [anon_sym_AMP_EQ] = ACTIONS(908), - [anon_sym_PIPE_EQ] = ACTIONS(908), - [anon_sym_CARET_EQ] = ACTIONS(908), - [anon_sym_LT_LT_EQ] = ACTIONS(908), - [anon_sym_GT_GT_EQ] = ACTIONS(908), - [anon_sym_yield] = ACTIONS(910), - [anon_sym_move] = ACTIONS(910), - [anon_sym_try] = ACTIONS(910), - [sym_integer_literal] = ACTIONS(908), - [aux_sym_string_literal_token1] = ACTIONS(908), - [sym_char_literal] = ACTIONS(908), - [anon_sym_true] = ACTIONS(910), - [anon_sym_false] = ACTIONS(910), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(910), - [sym_super] = ACTIONS(910), - [sym_crate] = ACTIONS(910), - [sym_metavariable] = ACTIONS(908), - [sym_raw_string_literal] = ACTIONS(908), - [sym_float_literal] = ACTIONS(908), + [160] = { + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [ts_builtin_sym_end] = ACTIONS(888), + [sym_identifier] = ACTIONS(890), + [anon_sym_SEMI] = ACTIONS(888), + [anon_sym_macro_rules_BANG] = ACTIONS(888), + [anon_sym_LPAREN] = ACTIONS(888), + [anon_sym_LBRACK] = ACTIONS(888), + [anon_sym_LBRACE] = ACTIONS(888), + [anon_sym_RBRACE] = ACTIONS(888), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_STAR] = ACTIONS(890), + [anon_sym_QMARK] = ACTIONS(888), + [anon_sym_u8] = ACTIONS(890), + [anon_sym_i8] = ACTIONS(890), + [anon_sym_u16] = ACTIONS(890), + [anon_sym_i16] = ACTIONS(890), + [anon_sym_u32] = ACTIONS(890), + [anon_sym_i32] = ACTIONS(890), + [anon_sym_u64] = ACTIONS(890), + [anon_sym_i64] = ACTIONS(890), + [anon_sym_u128] = ACTIONS(890), + [anon_sym_i128] = ACTIONS(890), + [anon_sym_isize] = ACTIONS(890), + [anon_sym_usize] = ACTIONS(890), + [anon_sym_f32] = ACTIONS(890), + [anon_sym_f64] = ACTIONS(890), + [anon_sym_bool] = ACTIONS(890), + [anon_sym_str] = ACTIONS(890), + [anon_sym_char] = ACTIONS(890), + [anon_sym_SLASH] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_EQ] = ACTIONS(890), + [anon_sym_COLON_COLON] = ACTIONS(888), + [anon_sym_BANG] = ACTIONS(890), + [anon_sym_DOT] = ACTIONS(890), + [anon_sym_AMP] = ACTIONS(890), + [anon_sym_POUND] = ACTIONS(888), + [anon_sym_PERCENT] = ACTIONS(890), + [anon_sym_CARET] = ACTIONS(890), + [anon_sym_LT] = ACTIONS(890), + [anon_sym_GT] = ACTIONS(890), + [anon_sym_PIPE] = ACTIONS(890), + [anon_sym_SQUOTE] = ACTIONS(890), + [anon_sym_as] = ACTIONS(890), + [anon_sym_async] = ACTIONS(890), + [anon_sym_break] = ACTIONS(890), + [anon_sym_const] = ACTIONS(890), + [anon_sym_continue] = ACTIONS(890), + [anon_sym_default] = ACTIONS(890), + [anon_sym_enum] = ACTIONS(890), + [anon_sym_fn] = ACTIONS(890), + [anon_sym_for] = ACTIONS(890), + [anon_sym_if] = ACTIONS(890), + [anon_sym_impl] = ACTIONS(890), + [anon_sym_let] = ACTIONS(890), + [anon_sym_loop] = ACTIONS(890), + [anon_sym_match] = ACTIONS(890), + [anon_sym_mod] = ACTIONS(890), + [anon_sym_pub] = ACTIONS(890), + [anon_sym_return] = ACTIONS(890), + [anon_sym_static] = ACTIONS(890), + [anon_sym_struct] = ACTIONS(890), + [anon_sym_trait] = ACTIONS(890), + [anon_sym_type] = ACTIONS(890), + [anon_sym_union] = ACTIONS(890), + [anon_sym_unsafe] = ACTIONS(890), + [anon_sym_use] = ACTIONS(890), + [anon_sym_while] = ACTIONS(890), + [anon_sym_extern] = ACTIONS(890), + [anon_sym_DOT_DOT_DOT] = ACTIONS(888), + [anon_sym_DOT_DOT] = ACTIONS(890), + [anon_sym_DOT_DOT_EQ] = ACTIONS(888), + [anon_sym_AMP_AMP] = ACTIONS(888), + [anon_sym_PIPE_PIPE] = ACTIONS(888), + [anon_sym_EQ_EQ] = ACTIONS(888), + [anon_sym_BANG_EQ] = ACTIONS(888), + [anon_sym_LT_EQ] = ACTIONS(888), + [anon_sym_GT_EQ] = ACTIONS(888), + [anon_sym_LT_LT] = ACTIONS(890), + [anon_sym_GT_GT] = ACTIONS(890), + [anon_sym_PLUS_EQ] = ACTIONS(888), + [anon_sym_DASH_EQ] = ACTIONS(888), + [anon_sym_STAR_EQ] = ACTIONS(888), + [anon_sym_SLASH_EQ] = ACTIONS(888), + [anon_sym_PERCENT_EQ] = ACTIONS(888), + [anon_sym_AMP_EQ] = ACTIONS(888), + [anon_sym_PIPE_EQ] = ACTIONS(888), + [anon_sym_CARET_EQ] = ACTIONS(888), + [anon_sym_LT_LT_EQ] = ACTIONS(888), + [anon_sym_GT_GT_EQ] = ACTIONS(888), + [anon_sym_yield] = ACTIONS(890), + [anon_sym_move] = ACTIONS(890), + [anon_sym_try] = ACTIONS(890), + [sym_integer_literal] = ACTIONS(888), + [aux_sym_string_literal_token1] = ACTIONS(888), + [sym_char_literal] = ACTIONS(888), + [anon_sym_true] = ACTIONS(890), + [anon_sym_false] = ACTIONS(890), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(890), + [sym_super] = ACTIONS(890), + [sym_crate] = ACTIONS(890), + [sym_metavariable] = ACTIONS(888), + [sym_raw_string_literal] = ACTIONS(888), + [sym_float_literal] = ACTIONS(888), }, - [173] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), + [161] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -39794,54 +38328,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [174] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), + [162] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1684), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -39903,98 +38437,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [175] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1720), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [sym_identifier] = ACTIONS(475), + [163] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1592), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), + [anon_sym_DOT_DOT] = ACTIONS(688), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -40005,108 +38539,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [176] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1779), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(486), - [sym_match_expression] = STATE(486), - [sym_while_expression] = STATE(486), - [sym_loop_expression] = STATE(486), - [sym_for_expression] = STATE(486), - [sym_const_block] = STATE(486), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3504), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(486), - [sym_async_block] = STATE(486), - [sym_try_block] = STATE(486), - [sym_block] = STATE(486), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [sym_identifier] = ACTIONS(329), + [164] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1538), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(914), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(918), - [anon_sym_if] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(922), - [anon_sym_match] = ACTIONS(924), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(926), - [anon_sym_while] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(930), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -40114,105 +38648,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [177] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [sym_identifier] = ACTIONS(475), + [165] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1371), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), + [anon_sym_DOT_DOT] = ACTIONS(688), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -40223,61 +38757,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [178] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), + [166] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(886), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [167] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40321,7 +38964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -40339,381 +38982,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [179] = { - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [ts_builtin_sym_end] = ACTIONS(932), - [sym_identifier] = ACTIONS(934), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_macro_rules_BANG] = ACTIONS(932), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(932), - [anon_sym_LBRACE] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_QMARK] = ACTIONS(932), - [anon_sym_u8] = ACTIONS(934), - [anon_sym_i8] = ACTIONS(934), - [anon_sym_u16] = ACTIONS(934), - [anon_sym_i16] = ACTIONS(934), - [anon_sym_u32] = ACTIONS(934), - [anon_sym_i32] = ACTIONS(934), - [anon_sym_u64] = ACTIONS(934), - [anon_sym_i64] = ACTIONS(934), - [anon_sym_u128] = ACTIONS(934), - [anon_sym_i128] = ACTIONS(934), - [anon_sym_isize] = ACTIONS(934), - [anon_sym_usize] = ACTIONS(934), - [anon_sym_f32] = ACTIONS(934), - [anon_sym_f64] = ACTIONS(934), - [anon_sym_bool] = ACTIONS(934), - [anon_sym_str] = ACTIONS(934), - [anon_sym_char] = ACTIONS(934), - [anon_sym_SLASH] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(934), - [anon_sym_COLON_COLON] = ACTIONS(932), - [anon_sym_BANG] = ACTIONS(934), - [anon_sym_DOT] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_POUND] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_CARET] = ACTIONS(934), - [anon_sym_LT] = ACTIONS(934), - [anon_sym_GT] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(934), - [anon_sym_SQUOTE] = ACTIONS(934), - [anon_sym_as] = ACTIONS(934), - [anon_sym_async] = ACTIONS(934), - [anon_sym_break] = ACTIONS(934), - [anon_sym_const] = ACTIONS(934), - [anon_sym_continue] = ACTIONS(934), - [anon_sym_default] = ACTIONS(934), - [anon_sym_enum] = ACTIONS(934), - [anon_sym_fn] = ACTIONS(934), - [anon_sym_for] = ACTIONS(934), - [anon_sym_if] = ACTIONS(934), - [anon_sym_impl] = ACTIONS(934), - [anon_sym_let] = ACTIONS(934), - [anon_sym_loop] = ACTIONS(934), - [anon_sym_match] = ACTIONS(934), - [anon_sym_mod] = ACTIONS(934), - [anon_sym_pub] = ACTIONS(934), - [anon_sym_return] = ACTIONS(934), - [anon_sym_static] = ACTIONS(934), - [anon_sym_struct] = ACTIONS(934), - [anon_sym_trait] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_union] = ACTIONS(934), - [anon_sym_unsafe] = ACTIONS(934), - [anon_sym_use] = ACTIONS(934), - [anon_sym_while] = ACTIONS(934), - [anon_sym_extern] = ACTIONS(934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(932), - [anon_sym_DOT_DOT] = ACTIONS(934), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [anon_sym_AMP_AMP] = ACTIONS(932), - [anon_sym_PIPE_PIPE] = ACTIONS(932), - [anon_sym_EQ_EQ] = ACTIONS(932), - [anon_sym_BANG_EQ] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(932), - [anon_sym_GT_EQ] = ACTIONS(932), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_PLUS_EQ] = ACTIONS(932), - [anon_sym_DASH_EQ] = ACTIONS(932), - [anon_sym_STAR_EQ] = ACTIONS(932), - [anon_sym_SLASH_EQ] = ACTIONS(932), - [anon_sym_PERCENT_EQ] = ACTIONS(932), - [anon_sym_AMP_EQ] = ACTIONS(932), - [anon_sym_PIPE_EQ] = ACTIONS(932), - [anon_sym_CARET_EQ] = ACTIONS(932), - [anon_sym_LT_LT_EQ] = ACTIONS(932), - [anon_sym_GT_GT_EQ] = ACTIONS(932), - [anon_sym_yield] = ACTIONS(934), - [anon_sym_move] = ACTIONS(934), - [anon_sym_try] = ACTIONS(934), - [sym_integer_literal] = ACTIONS(932), - [aux_sym_string_literal_token1] = ACTIONS(932), - [sym_char_literal] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(934), - [sym_super] = ACTIONS(934), - [sym_crate] = ACTIONS(934), - [sym_metavariable] = ACTIONS(932), - [sym_raw_string_literal] = ACTIONS(932), - [sym_float_literal] = ACTIONS(932), - }, - [180] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [181] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [182] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), + [168] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1371), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40757,7 +39073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -40775,100 +39091,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [183] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1435), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(475), + [169] = { + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [ts_builtin_sym_end] = ACTIONS(892), + [sym_identifier] = ACTIONS(894), + [anon_sym_SEMI] = ACTIONS(892), + [anon_sym_macro_rules_BANG] = ACTIONS(892), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(892), + [anon_sym_u8] = ACTIONS(894), + [anon_sym_i8] = ACTIONS(894), + [anon_sym_u16] = ACTIONS(894), + [anon_sym_i16] = ACTIONS(894), + [anon_sym_u32] = ACTIONS(894), + [anon_sym_i32] = ACTIONS(894), + [anon_sym_u64] = ACTIONS(894), + [anon_sym_i64] = ACTIONS(894), + [anon_sym_u128] = ACTIONS(894), + [anon_sym_i128] = ACTIONS(894), + [anon_sym_isize] = ACTIONS(894), + [anon_sym_usize] = ACTIONS(894), + [anon_sym_f32] = ACTIONS(894), + [anon_sym_f64] = ACTIONS(894), + [anon_sym_bool] = ACTIONS(894), + [anon_sym_str] = ACTIONS(894), + [anon_sym_char] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_EQ] = ACTIONS(894), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(892), + [anon_sym_PERCENT] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_SQUOTE] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_async] = ACTIONS(894), + [anon_sym_break] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_continue] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_enum] = ACTIONS(894), + [anon_sym_fn] = ACTIONS(894), + [anon_sym_for] = ACTIONS(894), + [anon_sym_if] = ACTIONS(894), + [anon_sym_impl] = ACTIONS(894), + [anon_sym_let] = ACTIONS(894), + [anon_sym_loop] = ACTIONS(894), + [anon_sym_match] = ACTIONS(894), + [anon_sym_mod] = ACTIONS(894), + [anon_sym_pub] = ACTIONS(894), + [anon_sym_return] = ACTIONS(894), + [anon_sym_static] = ACTIONS(894), + [anon_sym_struct] = ACTIONS(894), + [anon_sym_trait] = ACTIONS(894), + [anon_sym_type] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_unsafe] = ACTIONS(894), + [anon_sym_use] = ACTIONS(894), + [anon_sym_while] = ACTIONS(894), + [anon_sym_extern] = ACTIONS(894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(892), + [anon_sym_DOT_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(892), + [anon_sym_AMP_AMP] = ACTIONS(892), + [anon_sym_PIPE_PIPE] = ACTIONS(892), + [anon_sym_EQ_EQ] = ACTIONS(892), + [anon_sym_BANG_EQ] = ACTIONS(892), + [anon_sym_LT_EQ] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(892), + [anon_sym_LT_LT] = ACTIONS(894), + [anon_sym_GT_GT] = ACTIONS(894), + [anon_sym_PLUS_EQ] = ACTIONS(892), + [anon_sym_DASH_EQ] = ACTIONS(892), + [anon_sym_STAR_EQ] = ACTIONS(892), + [anon_sym_SLASH_EQ] = ACTIONS(892), + [anon_sym_PERCENT_EQ] = ACTIONS(892), + [anon_sym_AMP_EQ] = ACTIONS(892), + [anon_sym_PIPE_EQ] = ACTIONS(892), + [anon_sym_CARET_EQ] = ACTIONS(892), + [anon_sym_LT_LT_EQ] = ACTIONS(892), + [anon_sym_GT_GT_EQ] = ACTIONS(892), + [anon_sym_yield] = ACTIONS(894), + [anon_sym_move] = ACTIONS(894), + [anon_sym_try] = ACTIONS(894), + [sym_integer_literal] = ACTIONS(892), + [aux_sym_string_literal_token1] = ACTIONS(892), + [sym_char_literal] = ACTIONS(892), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(894), + [sym_super] = ACTIONS(894), + [sym_crate] = ACTIONS(894), + [sym_metavariable] = ACTIONS(892), + [sym_raw_string_literal] = ACTIONS(892), + [sym_float_literal] = ACTIONS(892), + }, + [170] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -40877,543 +39302,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [184] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [185] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), + [171] = { + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [ts_builtin_sym_end] = ACTIONS(896), + [sym_identifier] = ACTIONS(898), + [anon_sym_SEMI] = ACTIONS(896), + [anon_sym_macro_rules_BANG] = ACTIONS(896), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_QMARK] = ACTIONS(896), + [anon_sym_u8] = ACTIONS(898), + [anon_sym_i8] = ACTIONS(898), + [anon_sym_u16] = ACTIONS(898), + [anon_sym_i16] = ACTIONS(898), + [anon_sym_u32] = ACTIONS(898), + [anon_sym_i32] = ACTIONS(898), + [anon_sym_u64] = ACTIONS(898), + [anon_sym_i64] = ACTIONS(898), + [anon_sym_u128] = ACTIONS(898), + [anon_sym_i128] = ACTIONS(898), + [anon_sym_isize] = ACTIONS(898), + [anon_sym_usize] = ACTIONS(898), + [anon_sym_f32] = ACTIONS(898), + [anon_sym_f64] = ACTIONS(898), + [anon_sym_bool] = ACTIONS(898), + [anon_sym_str] = ACTIONS(898), + [anon_sym_char] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_EQ] = ACTIONS(898), + [anon_sym_COLON_COLON] = ACTIONS(896), + [anon_sym_BANG] = ACTIONS(898), + [anon_sym_DOT] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(898), + [anon_sym_POUND] = ACTIONS(896), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_CARET] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_SQUOTE] = ACTIONS(898), + [anon_sym_as] = ACTIONS(898), + [anon_sym_async] = ACTIONS(898), + [anon_sym_break] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_continue] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_enum] = ACTIONS(898), + [anon_sym_fn] = ACTIONS(898), + [anon_sym_for] = ACTIONS(898), + [anon_sym_if] = ACTIONS(898), + [anon_sym_impl] = ACTIONS(898), + [anon_sym_let] = ACTIONS(898), + [anon_sym_loop] = ACTIONS(898), + [anon_sym_match] = ACTIONS(898), + [anon_sym_mod] = ACTIONS(898), + [anon_sym_pub] = ACTIONS(898), + [anon_sym_return] = ACTIONS(898), + [anon_sym_static] = ACTIONS(898), + [anon_sym_struct] = ACTIONS(898), + [anon_sym_trait] = ACTIONS(898), + [anon_sym_type] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_unsafe] = ACTIONS(898), + [anon_sym_use] = ACTIONS(898), + [anon_sym_while] = ACTIONS(898), + [anon_sym_extern] = ACTIONS(898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(896), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_DOT_DOT_EQ] = ACTIONS(896), + [anon_sym_AMP_AMP] = ACTIONS(896), + [anon_sym_PIPE_PIPE] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT_EQ] = ACTIONS(896), + [anon_sym_LT_LT] = ACTIONS(898), + [anon_sym_GT_GT] = ACTIONS(898), + [anon_sym_PLUS_EQ] = ACTIONS(896), + [anon_sym_DASH_EQ] = ACTIONS(896), + [anon_sym_STAR_EQ] = ACTIONS(896), + [anon_sym_SLASH_EQ] = ACTIONS(896), + [anon_sym_PERCENT_EQ] = ACTIONS(896), + [anon_sym_AMP_EQ] = ACTIONS(896), + [anon_sym_PIPE_EQ] = ACTIONS(896), + [anon_sym_CARET_EQ] = ACTIONS(896), + [anon_sym_LT_LT_EQ] = ACTIONS(896), + [anon_sym_GT_GT_EQ] = ACTIONS(896), + [anon_sym_yield] = ACTIONS(898), + [anon_sym_move] = ACTIONS(898), + [anon_sym_try] = ACTIONS(898), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(896), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [186] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [187] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(896), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), }, - [188] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [sym_identifier] = ACTIONS(329), + [172] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1371), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -41422,606 +39520,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [189] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1756), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [190] = { - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), - [ts_builtin_sym_end] = ACTIONS(936), - [sym_identifier] = ACTIONS(938), - [anon_sym_SEMI] = ACTIONS(936), - [anon_sym_macro_rules_BANG] = ACTIONS(936), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_QMARK] = ACTIONS(936), - [anon_sym_u8] = ACTIONS(938), - [anon_sym_i8] = ACTIONS(938), - [anon_sym_u16] = ACTIONS(938), - [anon_sym_i16] = ACTIONS(938), - [anon_sym_u32] = ACTIONS(938), - [anon_sym_i32] = ACTIONS(938), - [anon_sym_u64] = ACTIONS(938), - [anon_sym_i64] = ACTIONS(938), - [anon_sym_u128] = ACTIONS(938), - [anon_sym_i128] = ACTIONS(938), - [anon_sym_isize] = ACTIONS(938), - [anon_sym_usize] = ACTIONS(938), - [anon_sym_f32] = ACTIONS(938), - [anon_sym_f64] = ACTIONS(938), - [anon_sym_bool] = ACTIONS(938), - [anon_sym_str] = ACTIONS(938), - [anon_sym_char] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_COLON_COLON] = ACTIONS(936), - [anon_sym_BANG] = ACTIONS(938), - [anon_sym_DOT] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(936), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LT] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_SQUOTE] = ACTIONS(938), - [anon_sym_as] = ACTIONS(938), - [anon_sym_async] = ACTIONS(938), - [anon_sym_break] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_continue] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_enum] = ACTIONS(938), - [anon_sym_fn] = ACTIONS(938), - [anon_sym_for] = ACTIONS(938), - [anon_sym_if] = ACTIONS(938), - [anon_sym_impl] = ACTIONS(938), - [anon_sym_let] = ACTIONS(938), - [anon_sym_loop] = ACTIONS(938), - [anon_sym_match] = ACTIONS(938), - [anon_sym_mod] = ACTIONS(938), - [anon_sym_pub] = ACTIONS(938), - [anon_sym_return] = ACTIONS(938), - [anon_sym_static] = ACTIONS(938), - [anon_sym_struct] = ACTIONS(938), - [anon_sym_trait] = ACTIONS(938), - [anon_sym_type] = ACTIONS(938), - [anon_sym_union] = ACTIONS(938), - [anon_sym_unsafe] = ACTIONS(938), - [anon_sym_use] = ACTIONS(938), - [anon_sym_while] = ACTIONS(938), - [anon_sym_extern] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(936), - [anon_sym_DOT_DOT] = ACTIONS(938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_AMP_AMP] = ACTIONS(936), - [anon_sym_PIPE_PIPE] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_LT_LT] = ACTIONS(938), - [anon_sym_GT_GT] = ACTIONS(938), - [anon_sym_PLUS_EQ] = ACTIONS(936), - [anon_sym_DASH_EQ] = ACTIONS(936), - [anon_sym_STAR_EQ] = ACTIONS(936), - [anon_sym_SLASH_EQ] = ACTIONS(936), - [anon_sym_PERCENT_EQ] = ACTIONS(936), - [anon_sym_AMP_EQ] = ACTIONS(936), - [anon_sym_PIPE_EQ] = ACTIONS(936), - [anon_sym_CARET_EQ] = ACTIONS(936), - [anon_sym_LT_LT_EQ] = ACTIONS(936), - [anon_sym_GT_GT_EQ] = ACTIONS(936), - [anon_sym_yield] = ACTIONS(938), - [anon_sym_move] = ACTIONS(938), - [anon_sym_try] = ACTIONS(938), - [sym_integer_literal] = ACTIONS(936), - [aux_sym_string_literal_token1] = ACTIONS(936), - [sym_char_literal] = ACTIONS(936), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(938), - [sym_super] = ACTIONS(938), - [sym_crate] = ACTIONS(938), - [sym_metavariable] = ACTIONS(936), - [sym_raw_string_literal] = ACTIONS(936), - [sym_float_literal] = ACTIONS(936), - }, - [191] = { - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), - [ts_builtin_sym_end] = ACTIONS(940), - [sym_identifier] = ACTIONS(942), - [anon_sym_SEMI] = ACTIONS(940), - [anon_sym_macro_rules_BANG] = ACTIONS(940), - [anon_sym_LPAREN] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(940), - [anon_sym_LBRACE] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(940), - [anon_sym_u8] = ACTIONS(942), - [anon_sym_i8] = ACTIONS(942), - [anon_sym_u16] = ACTIONS(942), - [anon_sym_i16] = ACTIONS(942), - [anon_sym_u32] = ACTIONS(942), - [anon_sym_i32] = ACTIONS(942), - [anon_sym_u64] = ACTIONS(942), - [anon_sym_i64] = ACTIONS(942), - [anon_sym_u128] = ACTIONS(942), - [anon_sym_i128] = ACTIONS(942), - [anon_sym_isize] = ACTIONS(942), - [anon_sym_usize] = ACTIONS(942), - [anon_sym_f32] = ACTIONS(942), - [anon_sym_f64] = ACTIONS(942), - [anon_sym_bool] = ACTIONS(942), - [anon_sym_str] = ACTIONS(942), - [anon_sym_char] = ACTIONS(942), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_EQ] = ACTIONS(942), - [anon_sym_COLON_COLON] = ACTIONS(940), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_CARET] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(942), - [anon_sym_SQUOTE] = ACTIONS(942), - [anon_sym_as] = ACTIONS(942), - [anon_sym_async] = ACTIONS(942), - [anon_sym_break] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_continue] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_enum] = ACTIONS(942), - [anon_sym_fn] = ACTIONS(942), - [anon_sym_for] = ACTIONS(942), - [anon_sym_if] = ACTIONS(942), - [anon_sym_impl] = ACTIONS(942), - [anon_sym_let] = ACTIONS(942), - [anon_sym_loop] = ACTIONS(942), - [anon_sym_match] = ACTIONS(942), - [anon_sym_mod] = ACTIONS(942), - [anon_sym_pub] = ACTIONS(942), - [anon_sym_return] = ACTIONS(942), - [anon_sym_static] = ACTIONS(942), - [anon_sym_struct] = ACTIONS(942), - [anon_sym_trait] = ACTIONS(942), - [anon_sym_type] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_unsafe] = ACTIONS(942), - [anon_sym_use] = ACTIONS(942), - [anon_sym_while] = ACTIONS(942), - [anon_sym_extern] = ACTIONS(942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(940), - [anon_sym_DOT_DOT] = ACTIONS(942), - [anon_sym_DOT_DOT_EQ] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(940), - [anon_sym_PIPE_PIPE] = ACTIONS(940), - [anon_sym_EQ_EQ] = ACTIONS(940), - [anon_sym_BANG_EQ] = ACTIONS(940), - [anon_sym_LT_EQ] = ACTIONS(940), - [anon_sym_GT_EQ] = ACTIONS(940), - [anon_sym_LT_LT] = ACTIONS(942), - [anon_sym_GT_GT] = ACTIONS(942), - [anon_sym_PLUS_EQ] = ACTIONS(940), - [anon_sym_DASH_EQ] = ACTIONS(940), - [anon_sym_STAR_EQ] = ACTIONS(940), - [anon_sym_SLASH_EQ] = ACTIONS(940), - [anon_sym_PERCENT_EQ] = ACTIONS(940), - [anon_sym_AMP_EQ] = ACTIONS(940), - [anon_sym_PIPE_EQ] = ACTIONS(940), - [anon_sym_CARET_EQ] = ACTIONS(940), - [anon_sym_LT_LT_EQ] = ACTIONS(940), - [anon_sym_GT_GT_EQ] = ACTIONS(940), - [anon_sym_yield] = ACTIONS(942), - [anon_sym_move] = ACTIONS(942), - [anon_sym_try] = ACTIONS(942), - [sym_integer_literal] = ACTIONS(940), - [aux_sym_string_literal_token1] = ACTIONS(940), - [sym_char_literal] = ACTIONS(940), - [anon_sym_true] = ACTIONS(942), - [anon_sym_false] = ACTIONS(942), + [173] = { + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [ts_builtin_sym_end] = ACTIONS(900), + [sym_identifier] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_macro_rules_BANG] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_QMARK] = ACTIONS(904), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_EQ] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(902), + [anon_sym_DOT] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(906), + [anon_sym_POUND] = ACTIONS(900), + [anon_sym_PERCENT] = ACTIONS(906), + [anon_sym_CARET] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_PIPE] = ACTIONS(906), + [anon_sym_SQUOTE] = ACTIONS(902), + [anon_sym_as] = ACTIONS(906), + [anon_sym_async] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_fn] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_impl] = ACTIONS(902), + [anon_sym_let] = ACTIONS(902), + [anon_sym_loop] = ACTIONS(902), + [anon_sym_match] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_pub] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_static] = ACTIONS(902), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_trait] = ACTIONS(902), + [anon_sym_type] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_unsafe] = ACTIONS(902), + [anon_sym_use] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_extern] = ACTIONS(902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(904), + [anon_sym_DOT_DOT] = ACTIONS(906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(904), + [anon_sym_AMP_AMP] = ACTIONS(904), + [anon_sym_PIPE_PIPE] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(904), + [anon_sym_LT_LT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(906), + [anon_sym_PLUS_EQ] = ACTIONS(904), + [anon_sym_DASH_EQ] = ACTIONS(904), + [anon_sym_STAR_EQ] = ACTIONS(904), + [anon_sym_SLASH_EQ] = ACTIONS(904), + [anon_sym_PERCENT_EQ] = ACTIONS(904), + [anon_sym_AMP_EQ] = ACTIONS(904), + [anon_sym_PIPE_EQ] = ACTIONS(904), + [anon_sym_CARET_EQ] = ACTIONS(904), + [anon_sym_LT_LT_EQ] = ACTIONS(904), + [anon_sym_GT_GT_EQ] = ACTIONS(904), + [anon_sym_yield] = ACTIONS(902), + [anon_sym_move] = ACTIONS(902), + [anon_sym_try] = ACTIONS(902), + [sym_integer_literal] = ACTIONS(900), + [aux_sym_string_literal_token1] = ACTIONS(900), + [sym_char_literal] = ACTIONS(900), + [anon_sym_true] = ACTIONS(902), + [anon_sym_false] = ACTIONS(902), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(942), - [sym_super] = ACTIONS(942), - [sym_crate] = ACTIONS(942), - [sym_metavariable] = ACTIONS(940), - [sym_raw_string_literal] = ACTIONS(940), - [sym_float_literal] = ACTIONS(940), - }, - [192] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1748), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [193] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1806), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(193), - [sym_block_comment] = STATE(193), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [sym_self] = ACTIONS(902), + [sym_super] = ACTIONS(902), + [sym_crate] = ACTIONS(902), + [sym_metavariable] = ACTIONS(900), + [sym_raw_string_literal] = ACTIONS(900), + [sym_float_literal] = ACTIONS(900), }, - [194] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1782), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(194), - [sym_block_comment] = STATE(194), + [174] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1480), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -42065,7 +39727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -42083,169 +39745,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [195] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(195), - [sym_block_comment] = STATE(195), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [196] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1766), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(196), - [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), + [175] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [ts_builtin_sym_end] = ACTIONS(908), + [sym_identifier] = ACTIONS(910), + [anon_sym_SEMI] = ACTIONS(908), + [anon_sym_macro_rules_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(908), + [anon_sym_LBRACK] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_QMARK] = ACTIONS(908), + [anon_sym_u8] = ACTIONS(910), + [anon_sym_i8] = ACTIONS(910), + [anon_sym_u16] = ACTIONS(910), + [anon_sym_i16] = ACTIONS(910), + [anon_sym_u32] = ACTIONS(910), + [anon_sym_i32] = ACTIONS(910), + [anon_sym_u64] = ACTIONS(910), + [anon_sym_i64] = ACTIONS(910), + [anon_sym_u128] = ACTIONS(910), + [anon_sym_i128] = ACTIONS(910), + [anon_sym_isize] = ACTIONS(910), + [anon_sym_usize] = ACTIONS(910), + [anon_sym_f32] = ACTIONS(910), + [anon_sym_f64] = ACTIONS(910), + [anon_sym_bool] = ACTIONS(910), + [anon_sym_str] = ACTIONS(910), + [anon_sym_char] = ACTIONS(910), + [anon_sym_SLASH] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_COLON_COLON] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(910), + [anon_sym_DOT] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(910), + [anon_sym_POUND] = ACTIONS(908), + [anon_sym_PERCENT] = ACTIONS(910), + [anon_sym_CARET] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(910), + [anon_sym_SQUOTE] = ACTIONS(910), + [anon_sym_as] = ACTIONS(910), + [anon_sym_async] = ACTIONS(910), + [anon_sym_break] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_continue] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_enum] = ACTIONS(910), + [anon_sym_fn] = ACTIONS(910), + [anon_sym_for] = ACTIONS(910), + [anon_sym_if] = ACTIONS(910), + [anon_sym_impl] = ACTIONS(910), + [anon_sym_let] = ACTIONS(910), + [anon_sym_loop] = ACTIONS(910), + [anon_sym_match] = ACTIONS(910), + [anon_sym_mod] = ACTIONS(910), + [anon_sym_pub] = ACTIONS(910), + [anon_sym_return] = ACTIONS(910), + [anon_sym_static] = ACTIONS(910), + [anon_sym_struct] = ACTIONS(910), + [anon_sym_trait] = ACTIONS(910), + [anon_sym_type] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_unsafe] = ACTIONS(910), + [anon_sym_use] = ACTIONS(910), + [anon_sym_while] = ACTIONS(910), + [anon_sym_extern] = ACTIONS(910), + [anon_sym_DOT_DOT_DOT] = ACTIONS(908), + [anon_sym_DOT_DOT] = ACTIONS(910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(908), + [anon_sym_AMP_AMP] = ACTIONS(908), + [anon_sym_PIPE_PIPE] = ACTIONS(908), + [anon_sym_EQ_EQ] = ACTIONS(908), + [anon_sym_BANG_EQ] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(908), + [anon_sym_LT_LT] = ACTIONS(910), + [anon_sym_GT_GT] = ACTIONS(910), + [anon_sym_PLUS_EQ] = ACTIONS(908), + [anon_sym_DASH_EQ] = ACTIONS(908), + [anon_sym_STAR_EQ] = ACTIONS(908), + [anon_sym_SLASH_EQ] = ACTIONS(908), + [anon_sym_PERCENT_EQ] = ACTIONS(908), + [anon_sym_AMP_EQ] = ACTIONS(908), + [anon_sym_PIPE_EQ] = ACTIONS(908), + [anon_sym_CARET_EQ] = ACTIONS(908), + [anon_sym_LT_LT_EQ] = ACTIONS(908), + [anon_sym_GT_GT_EQ] = ACTIONS(908), + [anon_sym_yield] = ACTIONS(910), + [anon_sym_move] = ACTIONS(910), + [anon_sym_try] = ACTIONS(910), + [sym_integer_literal] = ACTIONS(908), + [aux_sym_string_literal_token1] = ACTIONS(908), + [sym_char_literal] = ACTIONS(908), + [anon_sym_true] = ACTIONS(910), + [anon_sym_false] = ACTIONS(910), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(910), + [sym_super] = ACTIONS(910), + [sym_crate] = ACTIONS(910), + [sym_metavariable] = ACTIONS(908), + [sym_raw_string_literal] = ACTIONS(908), + [sym_float_literal] = ACTIONS(908), + }, + [176] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), [anon_sym_i16] = ACTIONS(23), @@ -42301,445 +39963,772 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [197] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1767), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(197), - [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), + [177] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [ts_builtin_sym_end] = ACTIONS(912), + [sym_identifier] = ACTIONS(914), + [anon_sym_SEMI] = ACTIONS(912), + [anon_sym_macro_rules_BANG] = ACTIONS(912), + [anon_sym_LPAREN] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_QMARK] = ACTIONS(912), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_SLASH] = ACTIONS(914), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_EQ] = ACTIONS(914), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_DOT] = ACTIONS(914), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_POUND] = ACTIONS(912), + [anon_sym_PERCENT] = ACTIONS(914), + [anon_sym_CARET] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(914), + [anon_sym_GT] = ACTIONS(914), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_SQUOTE] = ACTIONS(914), + [anon_sym_as] = ACTIONS(914), + [anon_sym_async] = ACTIONS(914), + [anon_sym_break] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_continue] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_enum] = ACTIONS(914), + [anon_sym_fn] = ACTIONS(914), + [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(914), + [anon_sym_impl] = ACTIONS(914), + [anon_sym_let] = ACTIONS(914), + [anon_sym_loop] = ACTIONS(914), + [anon_sym_match] = ACTIONS(914), + [anon_sym_mod] = ACTIONS(914), + [anon_sym_pub] = ACTIONS(914), + [anon_sym_return] = ACTIONS(914), + [anon_sym_static] = ACTIONS(914), + [anon_sym_struct] = ACTIONS(914), + [anon_sym_trait] = ACTIONS(914), + [anon_sym_type] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_unsafe] = ACTIONS(914), + [anon_sym_use] = ACTIONS(914), + [anon_sym_while] = ACTIONS(914), + [anon_sym_extern] = ACTIONS(914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(912), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(912), + [anon_sym_AMP_AMP] = ACTIONS(912), + [anon_sym_PIPE_PIPE] = ACTIONS(912), + [anon_sym_EQ_EQ] = ACTIONS(912), + [anon_sym_BANG_EQ] = ACTIONS(912), + [anon_sym_LT_EQ] = ACTIONS(912), + [anon_sym_GT_EQ] = ACTIONS(912), + [anon_sym_LT_LT] = ACTIONS(914), + [anon_sym_GT_GT] = ACTIONS(914), + [anon_sym_PLUS_EQ] = ACTIONS(912), + [anon_sym_DASH_EQ] = ACTIONS(912), + [anon_sym_STAR_EQ] = ACTIONS(912), + [anon_sym_SLASH_EQ] = ACTIONS(912), + [anon_sym_PERCENT_EQ] = ACTIONS(912), + [anon_sym_AMP_EQ] = ACTIONS(912), + [anon_sym_PIPE_EQ] = ACTIONS(912), + [anon_sym_CARET_EQ] = ACTIONS(912), + [anon_sym_LT_LT_EQ] = ACTIONS(912), + [anon_sym_GT_GT_EQ] = ACTIONS(912), + [anon_sym_yield] = ACTIONS(914), + [anon_sym_move] = ACTIONS(914), + [anon_sym_try] = ACTIONS(914), + [sym_integer_literal] = ACTIONS(912), + [aux_sym_string_literal_token1] = ACTIONS(912), + [sym_char_literal] = ACTIONS(912), + [anon_sym_true] = ACTIONS(914), + [anon_sym_false] = ACTIONS(914), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(914), + [sym_super] = ACTIONS(914), + [sym_crate] = ACTIONS(914), + [sym_metavariable] = ACTIONS(912), + [sym_raw_string_literal] = ACTIONS(912), + [sym_float_literal] = ACTIONS(912), + }, + [178] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [198] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1776), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), + [179] = { + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [ts_builtin_sym_end] = ACTIONS(916), + [sym_identifier] = ACTIONS(918), + [anon_sym_SEMI] = ACTIONS(916), + [anon_sym_macro_rules_BANG] = ACTIONS(916), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(916), + [anon_sym_LBRACE] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(916), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_QMARK] = ACTIONS(916), + [anon_sym_u8] = ACTIONS(918), + [anon_sym_i8] = ACTIONS(918), + [anon_sym_u16] = ACTIONS(918), + [anon_sym_i16] = ACTIONS(918), + [anon_sym_u32] = ACTIONS(918), + [anon_sym_i32] = ACTIONS(918), + [anon_sym_u64] = ACTIONS(918), + [anon_sym_i64] = ACTIONS(918), + [anon_sym_u128] = ACTIONS(918), + [anon_sym_i128] = ACTIONS(918), + [anon_sym_isize] = ACTIONS(918), + [anon_sym_usize] = ACTIONS(918), + [anon_sym_f32] = ACTIONS(918), + [anon_sym_f64] = ACTIONS(918), + [anon_sym_bool] = ACTIONS(918), + [anon_sym_str] = ACTIONS(918), + [anon_sym_char] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_BANG] = ACTIONS(918), + [anon_sym_DOT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_POUND] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_CARET] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(918), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_PIPE] = ACTIONS(918), + [anon_sym_SQUOTE] = ACTIONS(918), + [anon_sym_as] = ACTIONS(918), + [anon_sym_async] = ACTIONS(918), + [anon_sym_break] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_continue] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_enum] = ACTIONS(918), + [anon_sym_fn] = ACTIONS(918), + [anon_sym_for] = ACTIONS(918), + [anon_sym_if] = ACTIONS(918), + [anon_sym_impl] = ACTIONS(918), + [anon_sym_let] = ACTIONS(918), + [anon_sym_loop] = ACTIONS(918), + [anon_sym_match] = ACTIONS(918), + [anon_sym_mod] = ACTIONS(918), + [anon_sym_pub] = ACTIONS(918), + [anon_sym_return] = ACTIONS(918), + [anon_sym_static] = ACTIONS(918), + [anon_sym_struct] = ACTIONS(918), + [anon_sym_trait] = ACTIONS(918), + [anon_sym_type] = ACTIONS(918), + [anon_sym_union] = ACTIONS(918), + [anon_sym_unsafe] = ACTIONS(918), + [anon_sym_use] = ACTIONS(918), + [anon_sym_while] = ACTIONS(918), + [anon_sym_extern] = ACTIONS(918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(916), + [anon_sym_DOT_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(916), + [anon_sym_PIPE_PIPE] = ACTIONS(916), + [anon_sym_EQ_EQ] = ACTIONS(916), + [anon_sym_BANG_EQ] = ACTIONS(916), + [anon_sym_LT_EQ] = ACTIONS(916), + [anon_sym_GT_EQ] = ACTIONS(916), + [anon_sym_LT_LT] = ACTIONS(918), + [anon_sym_GT_GT] = ACTIONS(918), + [anon_sym_PLUS_EQ] = ACTIONS(916), + [anon_sym_DASH_EQ] = ACTIONS(916), + [anon_sym_STAR_EQ] = ACTIONS(916), + [anon_sym_SLASH_EQ] = ACTIONS(916), + [anon_sym_PERCENT_EQ] = ACTIONS(916), + [anon_sym_AMP_EQ] = ACTIONS(916), + [anon_sym_PIPE_EQ] = ACTIONS(916), + [anon_sym_CARET_EQ] = ACTIONS(916), + [anon_sym_LT_LT_EQ] = ACTIONS(916), + [anon_sym_GT_GT_EQ] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_move] = ACTIONS(918), + [anon_sym_try] = ACTIONS(918), + [sym_integer_literal] = ACTIONS(916), + [aux_sym_string_literal_token1] = ACTIONS(916), + [sym_char_literal] = ACTIONS(916), + [anon_sym_true] = ACTIONS(918), + [anon_sym_false] = ACTIONS(918), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(916), + [sym_raw_string_literal] = ACTIONS(916), + [sym_float_literal] = ACTIONS(916), + }, + [180] = { + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [ts_builtin_sym_end] = ACTIONS(920), + [sym_identifier] = ACTIONS(922), + [anon_sym_SEMI] = ACTIONS(920), + [anon_sym_macro_rules_BANG] = ACTIONS(920), + [anon_sym_LPAREN] = ACTIONS(920), + [anon_sym_LBRACK] = ACTIONS(920), + [anon_sym_LBRACE] = ACTIONS(920), + [anon_sym_RBRACE] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(922), + [anon_sym_QMARK] = ACTIONS(904), + [anon_sym_u8] = ACTIONS(922), + [anon_sym_i8] = ACTIONS(922), + [anon_sym_u16] = ACTIONS(922), + [anon_sym_i16] = ACTIONS(922), + [anon_sym_u32] = ACTIONS(922), + [anon_sym_i32] = ACTIONS(922), + [anon_sym_u64] = ACTIONS(922), + [anon_sym_i64] = ACTIONS(922), + [anon_sym_u128] = ACTIONS(922), + [anon_sym_i128] = ACTIONS(922), + [anon_sym_isize] = ACTIONS(922), + [anon_sym_usize] = ACTIONS(922), + [anon_sym_f32] = ACTIONS(922), + [anon_sym_f64] = ACTIONS(922), + [anon_sym_bool] = ACTIONS(922), + [anon_sym_str] = ACTIONS(922), + [anon_sym_char] = ACTIONS(922), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_EQ] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(920), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_DOT] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(922), + [anon_sym_POUND] = ACTIONS(920), + [anon_sym_PERCENT] = ACTIONS(906), + [anon_sym_CARET] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(922), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_PIPE] = ACTIONS(922), + [anon_sym_SQUOTE] = ACTIONS(922), + [anon_sym_as] = ACTIONS(906), + [anon_sym_async] = ACTIONS(922), + [anon_sym_break] = ACTIONS(922), + [anon_sym_const] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(922), + [anon_sym_default] = ACTIONS(922), + [anon_sym_enum] = ACTIONS(922), + [anon_sym_fn] = ACTIONS(922), + [anon_sym_for] = ACTIONS(922), + [anon_sym_if] = ACTIONS(922), + [anon_sym_impl] = ACTIONS(922), + [anon_sym_let] = ACTIONS(922), + [anon_sym_loop] = ACTIONS(922), + [anon_sym_match] = ACTIONS(922), + [anon_sym_mod] = ACTIONS(922), + [anon_sym_pub] = ACTIONS(922), + [anon_sym_return] = ACTIONS(922), + [anon_sym_static] = ACTIONS(922), + [anon_sym_struct] = ACTIONS(922), + [anon_sym_trait] = ACTIONS(922), + [anon_sym_type] = ACTIONS(922), + [anon_sym_union] = ACTIONS(922), + [anon_sym_unsafe] = ACTIONS(922), + [anon_sym_use] = ACTIONS(922), + [anon_sym_while] = ACTIONS(922), + [anon_sym_extern] = ACTIONS(922), + [anon_sym_DOT_DOT_DOT] = ACTIONS(904), + [anon_sym_DOT_DOT] = ACTIONS(922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(904), + [anon_sym_AMP_AMP] = ACTIONS(904), + [anon_sym_PIPE_PIPE] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(904), + [anon_sym_LT_LT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(906), + [anon_sym_PLUS_EQ] = ACTIONS(904), + [anon_sym_DASH_EQ] = ACTIONS(904), + [anon_sym_STAR_EQ] = ACTIONS(904), + [anon_sym_SLASH_EQ] = ACTIONS(904), + [anon_sym_PERCENT_EQ] = ACTIONS(904), + [anon_sym_AMP_EQ] = ACTIONS(904), + [anon_sym_PIPE_EQ] = ACTIONS(904), + [anon_sym_CARET_EQ] = ACTIONS(904), + [anon_sym_LT_LT_EQ] = ACTIONS(904), + [anon_sym_GT_GT_EQ] = ACTIONS(904), + [anon_sym_yield] = ACTIONS(922), + [anon_sym_move] = ACTIONS(922), + [anon_sym_try] = ACTIONS(922), + [sym_integer_literal] = ACTIONS(920), + [aux_sym_string_literal_token1] = ACTIONS(920), + [sym_char_literal] = ACTIONS(920), + [anon_sym_true] = ACTIONS(922), + [anon_sym_false] = ACTIONS(922), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(922), + [sym_super] = ACTIONS(922), + [sym_crate] = ACTIONS(922), + [sym_metavariable] = ACTIONS(920), + [sym_raw_string_literal] = ACTIONS(920), + [sym_float_literal] = ACTIONS(920), + }, + [181] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1842), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [199] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), + [182] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [200] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1765), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), + [183] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1648), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(464), + [sym_match_expression] = STATE(464), + [sym_while_expression] = STATE(464), + [sym_loop_expression] = STATE(464), + [sym_for_expression] = STATE(464), + [sym_const_block] = STATE(464), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3540), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(464), + [sym_async_block] = STATE(464), + [sym_try_block] = STATE(464), + [sym_block] = STATE(464), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_async] = ACTIONS(926), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), + [anon_sym_for] = ACTIONS(930), + [anon_sym_if] = ACTIONS(932), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_match] = ACTIONS(936), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), + [anon_sym_unsafe] = ACTIONS(938), + [anon_sym_while] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(942), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [201] = { - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), + [184] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), [ts_builtin_sym_end] = ACTIONS(944), [sym_identifier] = ACTIONS(946), [anon_sym_SEMI] = ACTIONS(944), @@ -42846,318 +40835,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(944), [sym_float_literal] = ACTIONS(944), }, - [202] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(202), - [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(475), + [185] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1726), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [203] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(203), - [sym_block_comment] = STATE(203), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [204] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(204), - [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -43166,16 +40937,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [205] = { - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), + [186] = { + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), [ts_builtin_sym_end] = ACTIONS(948), [sym_identifier] = ACTIONS(950), [anon_sym_SEMI] = ACTIONS(948), @@ -43282,54 +41053,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(948), [sym_float_literal] = ACTIONS(948), }, - [206] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1784), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), + [187] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1625), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_identifier] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(405), + [anon_sym_break] = ACTIONS(407), + [anon_sym_const] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(411), + [anon_sym_default] = ACTIONS(413), + [anon_sym_for] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), + [anon_sym_union] = ACTIONS(413), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), + }, + [188] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [189] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -43391,9 +41380,772 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [207] = { - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), + [190] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1789), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [191] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1551), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [192] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1650), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [193] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1584), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [194] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1792), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [195] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1793), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [196] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [197] = { + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), [ts_builtin_sym_end] = ACTIONS(952), [sym_identifier] = ACTIONS(954), [anon_sym_SEMI] = ACTIONS(952), @@ -43500,9 +42252,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(952), [sym_float_literal] = ACTIONS(952), }, - [208] = { - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), + [198] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1589), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [199] = { + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), [ts_builtin_sym_end] = ACTIONS(956), [sym_identifier] = ACTIONS(958), [anon_sym_SEMI] = ACTIONS(956), @@ -43609,16 +42470,343 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(956), [sym_float_literal] = ACTIONS(956), }, - [209] = { - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [ts_builtin_sym_end] = ACTIONS(960), - [sym_identifier] = ACTIONS(962), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_macro_rules_BANG] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(960), + [200] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [201] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1544), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [202] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1850), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(202), + [sym_block_comment] = STATE(202), + [sym_identifier] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(405), + [anon_sym_break] = ACTIONS(407), + [anon_sym_const] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(411), + [anon_sym_default] = ACTIONS(413), + [anon_sym_for] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), + [anon_sym_union] = ACTIONS(413), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), + }, + [203] = { + [sym_line_comment] = STATE(203), + [sym_block_comment] = STATE(203), + [ts_builtin_sym_end] = ACTIONS(960), + [sym_identifier] = ACTIONS(962), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_macro_rules_BANG] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(960), [anon_sym_RBRACE] = ACTIONS(960), [anon_sym_PLUS] = ACTIONS(962), [anon_sym_STAR] = ACTIONS(962), @@ -43718,100 +42906,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(960), [sym_float_literal] = ACTIONS(960), }, - [210] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), - [sym_identifier] = ACTIONS(475), + [204] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1588), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(204), + [sym_block_comment] = STATE(204), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -43820,107 +43008,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [211] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1708), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), - [sym_identifier] = ACTIONS(475), + [205] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -43929,107 +43117,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [212] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1562), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [sym_identifier] = ACTIONS(475), + [206] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1806), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44038,107 +43226,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [213] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), + [207] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [sym_identifier] = ACTIONS(475), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(964), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44147,107 +43335,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [214] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1746), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [sym_identifier] = ACTIONS(475), + [208] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(964), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44256,107 +43444,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [215] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1533), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [sym_identifier] = ACTIONS(475), + [209] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1786), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44365,216 +43553,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [216] = { - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [ts_builtin_sym_end] = ACTIONS(966), - [sym_identifier] = ACTIONS(968), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_macro_rules_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(966), - [anon_sym_u8] = ACTIONS(968), - [anon_sym_i8] = ACTIONS(968), - [anon_sym_u16] = ACTIONS(968), - [anon_sym_i16] = ACTIONS(968), - [anon_sym_u32] = ACTIONS(968), - [anon_sym_i32] = ACTIONS(968), - [anon_sym_u64] = ACTIONS(968), - [anon_sym_i64] = ACTIONS(968), - [anon_sym_u128] = ACTIONS(968), - [anon_sym_i128] = ACTIONS(968), - [anon_sym_isize] = ACTIONS(968), - [anon_sym_usize] = ACTIONS(968), - [anon_sym_f32] = ACTIONS(968), - [anon_sym_f64] = ACTIONS(968), - [anon_sym_bool] = ACTIONS(968), - [anon_sym_str] = ACTIONS(968), - [anon_sym_char] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_COLON_COLON] = ACTIONS(966), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_CARET] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_SQUOTE] = ACTIONS(968), - [anon_sym_as] = ACTIONS(968), - [anon_sym_async] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_enum] = ACTIONS(968), - [anon_sym_fn] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_impl] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_loop] = ACTIONS(968), - [anon_sym_match] = ACTIONS(968), - [anon_sym_mod] = ACTIONS(968), - [anon_sym_pub] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_static] = ACTIONS(968), - [anon_sym_struct] = ACTIONS(968), - [anon_sym_trait] = ACTIONS(968), - [anon_sym_type] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_unsafe] = ACTIONS(968), - [anon_sym_use] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(966), - [anon_sym_PIPE_PIPE] = ACTIONS(966), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT_EQ] = ACTIONS(966), - [anon_sym_GT_EQ] = ACTIONS(966), - [anon_sym_LT_LT] = ACTIONS(968), - [anon_sym_GT_GT] = ACTIONS(968), - [anon_sym_PLUS_EQ] = ACTIONS(966), - [anon_sym_DASH_EQ] = ACTIONS(966), - [anon_sym_STAR_EQ] = ACTIONS(966), - [anon_sym_SLASH_EQ] = ACTIONS(966), - [anon_sym_PERCENT_EQ] = ACTIONS(966), - [anon_sym_AMP_EQ] = ACTIONS(966), - [anon_sym_PIPE_EQ] = ACTIONS(966), - [anon_sym_CARET_EQ] = ACTIONS(966), - [anon_sym_LT_LT_EQ] = ACTIONS(966), - [anon_sym_GT_GT_EQ] = ACTIONS(966), - [anon_sym_yield] = ACTIONS(968), - [anon_sym_move] = ACTIONS(968), - [anon_sym_try] = ACTIONS(968), - [sym_integer_literal] = ACTIONS(966), - [aux_sym_string_literal_token1] = ACTIONS(966), - [sym_char_literal] = ACTIONS(966), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(968), - [sym_super] = ACTIONS(968), - [sym_crate] = ACTIONS(968), - [sym_metavariable] = ACTIONS(966), - [sym_raw_string_literal] = ACTIONS(966), - [sym_float_literal] = ACTIONS(966), + [210] = { + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [ts_builtin_sym_end] = ACTIONS(964), + [sym_identifier] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(964), + [anon_sym_macro_rules_BANG] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_QMARK] = ACTIONS(964), + [anon_sym_u8] = ACTIONS(966), + [anon_sym_i8] = ACTIONS(966), + [anon_sym_u16] = ACTIONS(966), + [anon_sym_i16] = ACTIONS(966), + [anon_sym_u32] = ACTIONS(966), + [anon_sym_i32] = ACTIONS(966), + [anon_sym_u64] = ACTIONS(966), + [anon_sym_i64] = ACTIONS(966), + [anon_sym_u128] = ACTIONS(966), + [anon_sym_i128] = ACTIONS(966), + [anon_sym_isize] = ACTIONS(966), + [anon_sym_usize] = ACTIONS(966), + [anon_sym_f32] = ACTIONS(966), + [anon_sym_f64] = ACTIONS(966), + [anon_sym_bool] = ACTIONS(966), + [anon_sym_str] = ACTIONS(966), + [anon_sym_char] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_COLON_COLON] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(966), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(964), + [anon_sym_PERCENT] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_SQUOTE] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_async] = ACTIONS(966), + [anon_sym_break] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_continue] = ACTIONS(966), + [anon_sym_default] = ACTIONS(966), + [anon_sym_enum] = ACTIONS(966), + [anon_sym_fn] = ACTIONS(966), + [anon_sym_for] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_impl] = ACTIONS(966), + [anon_sym_let] = ACTIONS(966), + [anon_sym_loop] = ACTIONS(966), + [anon_sym_match] = ACTIONS(966), + [anon_sym_mod] = ACTIONS(966), + [anon_sym_pub] = ACTIONS(966), + [anon_sym_return] = ACTIONS(966), + [anon_sym_static] = ACTIONS(966), + [anon_sym_struct] = ACTIONS(966), + [anon_sym_trait] = ACTIONS(966), + [anon_sym_type] = ACTIONS(966), + [anon_sym_union] = ACTIONS(966), + [anon_sym_unsafe] = ACTIONS(966), + [anon_sym_use] = ACTIONS(966), + [anon_sym_while] = ACTIONS(966), + [anon_sym_extern] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(964), + [anon_sym_DOT_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_AMP_AMP] = ACTIONS(964), + [anon_sym_PIPE_PIPE] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(964), + [anon_sym_BANG_EQ] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), + [anon_sym_STAR_EQ] = ACTIONS(964), + [anon_sym_SLASH_EQ] = ACTIONS(964), + [anon_sym_PERCENT_EQ] = ACTIONS(964), + [anon_sym_AMP_EQ] = ACTIONS(964), + [anon_sym_PIPE_EQ] = ACTIONS(964), + [anon_sym_CARET_EQ] = ACTIONS(964), + [anon_sym_LT_LT_EQ] = ACTIONS(964), + [anon_sym_GT_GT_EQ] = ACTIONS(964), + [anon_sym_yield] = ACTIONS(966), + [anon_sym_move] = ACTIONS(966), + [anon_sym_try] = ACTIONS(966), + [sym_integer_literal] = ACTIONS(964), + [aux_sym_string_literal_token1] = ACTIONS(964), + [sym_char_literal] = ACTIONS(964), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(966), + [sym_super] = ACTIONS(966), + [sym_crate] = ACTIONS(966), + [sym_metavariable] = ACTIONS(964), + [sym_raw_string_literal] = ACTIONS(964), + [sym_float_literal] = ACTIONS(964), }, - [217] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [sym_identifier] = ACTIONS(475), + [211] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44583,61 +43771,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [218] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), + [212] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -44699,100 +43887,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [219] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [sym_identifier] = ACTIONS(329), + [213] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1810), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44801,66 +43989,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [220] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), + [214] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -44878,10 +44066,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -44891,80 +44079,298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(856), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(668), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [221] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), + [215] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1126), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [216] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [217] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1828), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45026,98 +44432,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [222] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [sym_identifier] = ACTIONS(475), + [218] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1540), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(652), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -45128,279 +44534,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [223] = { - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [ts_builtin_sym_end] = ACTIONS(970), - [sym_identifier] = ACTIONS(972), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_macro_rules_BANG] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_QMARK] = ACTIONS(970), - [anon_sym_u8] = ACTIONS(972), - [anon_sym_i8] = ACTIONS(972), - [anon_sym_u16] = ACTIONS(972), - [anon_sym_i16] = ACTIONS(972), - [anon_sym_u32] = ACTIONS(972), - [anon_sym_i32] = ACTIONS(972), - [anon_sym_u64] = ACTIONS(972), - [anon_sym_i64] = ACTIONS(972), - [anon_sym_u128] = ACTIONS(972), - [anon_sym_i128] = ACTIONS(972), - [anon_sym_isize] = ACTIONS(972), - [anon_sym_usize] = ACTIONS(972), - [anon_sym_f32] = ACTIONS(972), - [anon_sym_f64] = ACTIONS(972), - [anon_sym_bool] = ACTIONS(972), - [anon_sym_str] = ACTIONS(972), - [anon_sym_char] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_EQ] = ACTIONS(972), - [anon_sym_COLON_COLON] = ACTIONS(970), - [anon_sym_BANG] = ACTIONS(972), - [anon_sym_DOT] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(970), - [anon_sym_PERCENT] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_SQUOTE] = ACTIONS(972), - [anon_sym_as] = ACTIONS(972), - [anon_sym_async] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_enum] = ACTIONS(972), - [anon_sym_fn] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_impl] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_mod] = ACTIONS(972), - [anon_sym_pub] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_static] = ACTIONS(972), - [anon_sym_struct] = ACTIONS(972), - [anon_sym_trait] = ACTIONS(972), - [anon_sym_type] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_unsafe] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT] = ACTIONS(970), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS_EQ] = ACTIONS(970), - [anon_sym_DASH_EQ] = ACTIONS(970), - [anon_sym_STAR_EQ] = ACTIONS(970), - [anon_sym_SLASH_EQ] = ACTIONS(970), - [anon_sym_PERCENT_EQ] = ACTIONS(970), - [anon_sym_AMP_EQ] = ACTIONS(970), - [anon_sym_PIPE_EQ] = ACTIONS(970), - [anon_sym_CARET_EQ] = ACTIONS(970), - [anon_sym_LT_LT_EQ] = ACTIONS(970), - [anon_sym_GT_GT_EQ] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_move] = ACTIONS(972), - [anon_sym_try] = ACTIONS(972), - [sym_integer_literal] = ACTIONS(970), - [aux_sym_string_literal_token1] = ACTIONS(970), - [sym_char_literal] = ACTIONS(970), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(972), - [sym_super] = ACTIONS(972), - [sym_crate] = ACTIONS(972), - [sym_metavariable] = ACTIONS(970), - [sym_raw_string_literal] = ACTIONS(970), - [sym_float_literal] = ACTIONS(970), - }, - [224] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1556), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [219] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1788), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [sym_identifier] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(405), + [anon_sym_break] = ACTIONS(407), + [anon_sym_const] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(411), + [anon_sym_default] = ACTIONS(413), + [anon_sym_for] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), + [anon_sym_union] = ACTIONS(413), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [225] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), + [220] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45462,163 +44759,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [226] = { - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [ts_builtin_sym_end] = ACTIONS(974), - [sym_identifier] = ACTIONS(976), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_macro_rules_BANG] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_QMARK] = ACTIONS(974), - [anon_sym_u8] = ACTIONS(976), - [anon_sym_i8] = ACTIONS(976), - [anon_sym_u16] = ACTIONS(976), - [anon_sym_i16] = ACTIONS(976), - [anon_sym_u32] = ACTIONS(976), - [anon_sym_i32] = ACTIONS(976), - [anon_sym_u64] = ACTIONS(976), - [anon_sym_i64] = ACTIONS(976), - [anon_sym_u128] = ACTIONS(976), - [anon_sym_i128] = ACTIONS(976), - [anon_sym_isize] = ACTIONS(976), - [anon_sym_usize] = ACTIONS(976), - [anon_sym_f32] = ACTIONS(976), - [anon_sym_f64] = ACTIONS(976), - [anon_sym_bool] = ACTIONS(976), - [anon_sym_str] = ACTIONS(976), - [anon_sym_char] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(976), - [anon_sym_COLON_COLON] = ACTIONS(974), - [anon_sym_BANG] = ACTIONS(976), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_SQUOTE] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_async] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_enum] = ACTIONS(976), - [anon_sym_fn] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_impl] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_mod] = ACTIONS(976), - [anon_sym_pub] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_static] = ACTIONS(976), - [anon_sym_struct] = ACTIONS(976), - [anon_sym_trait] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_unsafe] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(974), - [anon_sym_AMP_AMP] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(974), - [anon_sym_EQ_EQ] = ACTIONS(974), - [anon_sym_BANG_EQ] = ACTIONS(974), - [anon_sym_LT_EQ] = ACTIONS(974), - [anon_sym_GT_EQ] = ACTIONS(974), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_PLUS_EQ] = ACTIONS(974), - [anon_sym_DASH_EQ] = ACTIONS(974), - [anon_sym_STAR_EQ] = ACTIONS(974), - [anon_sym_SLASH_EQ] = ACTIONS(974), - [anon_sym_PERCENT_EQ] = ACTIONS(974), - [anon_sym_AMP_EQ] = ACTIONS(974), - [anon_sym_PIPE_EQ] = ACTIONS(974), - [anon_sym_CARET_EQ] = ACTIONS(974), - [anon_sym_LT_LT_EQ] = ACTIONS(974), - [anon_sym_GT_GT_EQ] = ACTIONS(974), - [anon_sym_yield] = ACTIONS(976), - [anon_sym_move] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [sym_integer_literal] = ACTIONS(974), - [aux_sym_string_literal_token1] = ACTIONS(974), - [sym_char_literal] = ACTIONS(974), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = ACTIONS(976), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(976), - [sym_super] = ACTIONS(976), - [sym_crate] = ACTIONS(976), - [sym_metavariable] = ACTIONS(974), - [sym_raw_string_literal] = ACTIONS(974), - [sym_float_literal] = ACTIONS(974), - }, - [227] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1753), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), + [221] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45680,168 +44868,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [228] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1662), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), + [222] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1841), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), }, - [229] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), + [223] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1632), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -45859,10 +45047,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -45872,126 +45060,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [230] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1768), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [sym_identifier] = ACTIONS(475), + [224] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1535), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(964), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -46000,61 +45188,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [231] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1462), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), + [225] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46098,7 +45286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -46116,100 +45304,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [232] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1809), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), - [sym_identifier] = ACTIONS(329), + [226] = { + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [ts_builtin_sym_end] = ACTIONS(968), + [sym_identifier] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(968), + [anon_sym_macro_rules_BANG] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_QMARK] = ACTIONS(968), + [anon_sym_u8] = ACTIONS(970), + [anon_sym_i8] = ACTIONS(970), + [anon_sym_u16] = ACTIONS(970), + [anon_sym_i16] = ACTIONS(970), + [anon_sym_u32] = ACTIONS(970), + [anon_sym_i32] = ACTIONS(970), + [anon_sym_u64] = ACTIONS(970), + [anon_sym_i64] = ACTIONS(970), + [anon_sym_u128] = ACTIONS(970), + [anon_sym_i128] = ACTIONS(970), + [anon_sym_isize] = ACTIONS(970), + [anon_sym_usize] = ACTIONS(970), + [anon_sym_f32] = ACTIONS(970), + [anon_sym_f64] = ACTIONS(970), + [anon_sym_bool] = ACTIONS(970), + [anon_sym_str] = ACTIONS(970), + [anon_sym_char] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_EQ] = ACTIONS(970), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(970), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(970), + [anon_sym_CARET] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_SQUOTE] = ACTIONS(970), + [anon_sym_as] = ACTIONS(970), + [anon_sym_async] = ACTIONS(970), + [anon_sym_break] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [anon_sym_continue] = ACTIONS(970), + [anon_sym_default] = ACTIONS(970), + [anon_sym_enum] = ACTIONS(970), + [anon_sym_fn] = ACTIONS(970), + [anon_sym_for] = ACTIONS(970), + [anon_sym_if] = ACTIONS(970), + [anon_sym_impl] = ACTIONS(970), + [anon_sym_let] = ACTIONS(970), + [anon_sym_loop] = ACTIONS(970), + [anon_sym_match] = ACTIONS(970), + [anon_sym_mod] = ACTIONS(970), + [anon_sym_pub] = ACTIONS(970), + [anon_sym_return] = ACTIONS(970), + [anon_sym_static] = ACTIONS(970), + [anon_sym_struct] = ACTIONS(970), + [anon_sym_trait] = ACTIONS(970), + [anon_sym_type] = ACTIONS(970), + [anon_sym_union] = ACTIONS(970), + [anon_sym_unsafe] = ACTIONS(970), + [anon_sym_use] = ACTIONS(970), + [anon_sym_while] = ACTIONS(970), + [anon_sym_extern] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(968), + [anon_sym_DOT_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(970), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PERCENT_EQ] = ACTIONS(968), + [anon_sym_AMP_EQ] = ACTIONS(968), + [anon_sym_PIPE_EQ] = ACTIONS(968), + [anon_sym_CARET_EQ] = ACTIONS(968), + [anon_sym_LT_LT_EQ] = ACTIONS(968), + [anon_sym_GT_GT_EQ] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(970), + [anon_sym_move] = ACTIONS(970), + [anon_sym_try] = ACTIONS(970), + [sym_integer_literal] = ACTIONS(968), + [aux_sym_string_literal_token1] = ACTIONS(968), + [sym_char_literal] = ACTIONS(968), + [anon_sym_true] = ACTIONS(970), + [anon_sym_false] = ACTIONS(970), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(970), + [sym_super] = ACTIONS(970), + [sym_crate] = ACTIONS(970), + [sym_metavariable] = ACTIONS(968), + [sym_raw_string_literal] = ACTIONS(968), + [sym_float_literal] = ACTIONS(968), + }, + [227] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1126), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -46218,105 +45515,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [233] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [sym_identifier] = ACTIONS(475), + [228] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), + [anon_sym_DOT_DOT] = ACTIONS(688), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -46327,107 +45624,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [234] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1396), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(475), + [229] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1588), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -46436,175 +45733,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [235] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1672), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [230] = { + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), + [ts_builtin_sym_end] = ACTIONS(972), + [sym_identifier] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(972), + [anon_sym_macro_rules_BANG] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_QMARK] = ACTIONS(972), + [anon_sym_u8] = ACTIONS(974), + [anon_sym_i8] = ACTIONS(974), + [anon_sym_u16] = ACTIONS(974), + [anon_sym_i16] = ACTIONS(974), + [anon_sym_u32] = ACTIONS(974), + [anon_sym_i32] = ACTIONS(974), + [anon_sym_u64] = ACTIONS(974), + [anon_sym_i64] = ACTIONS(974), + [anon_sym_u128] = ACTIONS(974), + [anon_sym_i128] = ACTIONS(974), + [anon_sym_isize] = ACTIONS(974), + [anon_sym_usize] = ACTIONS(974), + [anon_sym_f32] = ACTIONS(974), + [anon_sym_f64] = ACTIONS(974), + [anon_sym_bool] = ACTIONS(974), + [anon_sym_str] = ACTIONS(974), + [anon_sym_char] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_COLON_COLON] = ACTIONS(972), + [anon_sym_BANG] = ACTIONS(974), + [anon_sym_DOT] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(972), + [anon_sym_PERCENT] = ACTIONS(974), + [anon_sym_CARET] = ACTIONS(974), + [anon_sym_LT] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_SQUOTE] = ACTIONS(974), + [anon_sym_as] = ACTIONS(974), + [anon_sym_async] = ACTIONS(974), + [anon_sym_break] = ACTIONS(974), + [anon_sym_const] = ACTIONS(974), + [anon_sym_continue] = ACTIONS(974), + [anon_sym_default] = ACTIONS(974), + [anon_sym_enum] = ACTIONS(974), + [anon_sym_fn] = ACTIONS(974), + [anon_sym_for] = ACTIONS(974), + [anon_sym_if] = ACTIONS(974), + [anon_sym_impl] = ACTIONS(974), + [anon_sym_let] = ACTIONS(974), + [anon_sym_loop] = ACTIONS(974), + [anon_sym_match] = ACTIONS(974), + [anon_sym_mod] = ACTIONS(974), + [anon_sym_pub] = ACTIONS(974), + [anon_sym_return] = ACTIONS(974), + [anon_sym_static] = ACTIONS(974), + [anon_sym_struct] = ACTIONS(974), + [anon_sym_trait] = ACTIONS(974), + [anon_sym_type] = ACTIONS(974), + [anon_sym_union] = ACTIONS(974), + [anon_sym_unsafe] = ACTIONS(974), + [anon_sym_use] = ACTIONS(974), + [anon_sym_while] = ACTIONS(974), + [anon_sym_extern] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT] = ACTIONS(972), + [anon_sym_DOT_DOT] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(972), + [anon_sym_BANG_EQ] = ACTIONS(972), + [anon_sym_LT_EQ] = ACTIONS(972), + [anon_sym_GT_EQ] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_GT_GT] = ACTIONS(974), + [anon_sym_PLUS_EQ] = ACTIONS(972), + [anon_sym_DASH_EQ] = ACTIONS(972), + [anon_sym_STAR_EQ] = ACTIONS(972), + [anon_sym_SLASH_EQ] = ACTIONS(972), + [anon_sym_PERCENT_EQ] = ACTIONS(972), + [anon_sym_AMP_EQ] = ACTIONS(972), + [anon_sym_PIPE_EQ] = ACTIONS(972), + [anon_sym_CARET_EQ] = ACTIONS(972), + [anon_sym_LT_LT_EQ] = ACTIONS(972), + [anon_sym_GT_GT_EQ] = ACTIONS(972), + [anon_sym_yield] = ACTIONS(974), + [anon_sym_move] = ACTIONS(974), + [anon_sym_try] = ACTIONS(974), + [sym_integer_literal] = ACTIONS(972), + [aux_sym_string_literal_token1] = ACTIONS(972), + [sym_char_literal] = ACTIONS(972), + [anon_sym_true] = ACTIONS(974), + [anon_sym_false] = ACTIONS(974), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(974), + [sym_super] = ACTIONS(974), + [sym_crate] = ACTIONS(974), + [sym_metavariable] = ACTIONS(972), + [sym_raw_string_literal] = ACTIONS(972), + [sym_float_literal] = ACTIONS(972), }, - [236] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1673), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), + [231] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1756), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -46622,10 +45919,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -46635,126 +45932,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [237] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), - [sym_identifier] = ACTIONS(475), + [232] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1536), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(964), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -46763,279 +46060,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [238] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1741), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(682), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [239] = { - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), - [ts_builtin_sym_end] = ACTIONS(978), - [sym_identifier] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_macro_rules_BANG] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(980), - [anon_sym_STAR] = ACTIONS(980), - [anon_sym_QMARK] = ACTIONS(978), - [anon_sym_u8] = ACTIONS(980), - [anon_sym_i8] = ACTIONS(980), - [anon_sym_u16] = ACTIONS(980), - [anon_sym_i16] = ACTIONS(980), - [anon_sym_u32] = ACTIONS(980), - [anon_sym_i32] = ACTIONS(980), - [anon_sym_u64] = ACTIONS(980), - [anon_sym_i64] = ACTIONS(980), - [anon_sym_u128] = ACTIONS(980), - [anon_sym_i128] = ACTIONS(980), - [anon_sym_isize] = ACTIONS(980), - [anon_sym_usize] = ACTIONS(980), - [anon_sym_f32] = ACTIONS(980), - [anon_sym_f64] = ACTIONS(980), - [anon_sym_bool] = ACTIONS(980), - [anon_sym_str] = ACTIONS(980), - [anon_sym_char] = ACTIONS(980), - [anon_sym_SLASH] = ACTIONS(980), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_COLON_COLON] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(980), - [anon_sym_DOT] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(978), - [anon_sym_PERCENT] = ACTIONS(980), - [anon_sym_CARET] = ACTIONS(980), - [anon_sym_LT] = ACTIONS(980), - [anon_sym_GT] = ACTIONS(980), - [anon_sym_PIPE] = ACTIONS(980), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_as] = ACTIONS(980), - [anon_sym_async] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_fn] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_impl] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_mod] = ACTIONS(980), - [anon_sym_pub] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_static] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_trait] = ACTIONS(980), - [anon_sym_type] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_unsafe] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(978), - [anon_sym_AMP_AMP] = ACTIONS(978), - [anon_sym_PIPE_PIPE] = ACTIONS(978), - [anon_sym_EQ_EQ] = ACTIONS(978), - [anon_sym_BANG_EQ] = ACTIONS(978), - [anon_sym_LT_EQ] = ACTIONS(978), - [anon_sym_GT_EQ] = ACTIONS(978), - [anon_sym_LT_LT] = ACTIONS(980), - [anon_sym_GT_GT] = ACTIONS(980), - [anon_sym_PLUS_EQ] = ACTIONS(978), - [anon_sym_DASH_EQ] = ACTIONS(978), - [anon_sym_STAR_EQ] = ACTIONS(978), - [anon_sym_SLASH_EQ] = ACTIONS(978), - [anon_sym_PERCENT_EQ] = ACTIONS(978), - [anon_sym_AMP_EQ] = ACTIONS(978), - [anon_sym_PIPE_EQ] = ACTIONS(978), - [anon_sym_CARET_EQ] = ACTIONS(978), - [anon_sym_LT_LT_EQ] = ACTIONS(978), - [anon_sym_GT_GT_EQ] = ACTIONS(978), - [anon_sym_yield] = ACTIONS(980), - [anon_sym_move] = ACTIONS(980), - [anon_sym_try] = ACTIONS(980), - [sym_integer_literal] = ACTIONS(978), - [aux_sym_string_literal_token1] = ACTIONS(978), - [sym_char_literal] = ACTIONS(978), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(980), - [sym_super] = ACTIONS(980), - [sym_crate] = ACTIONS(980), - [sym_metavariable] = ACTIONS(978), - [sym_raw_string_literal] = ACTIONS(978), - [sym_float_literal] = ACTIONS(978), - }, - [240] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), + [233] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1734), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47097,59 +46176,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [241] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1713), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), + [234] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1701), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -47167,10 +46246,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -47180,126 +46259,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [242] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1778), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(475), + [235] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(466), + [sym_match_expression] = STATE(466), + [sym_while_expression] = STATE(466), + [sym_loop_expression] = STATE(466), + [sym_for_expression] = STATE(466), + [sym_const_block] = STATE(466), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3540), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(466), + [sym_async_block] = STATE(466), + [sym_try_block] = STATE(466), + [sym_block] = STATE(466), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(924), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(926), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(928), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), + [anon_sym_for] = ACTIONS(930), + [anon_sym_if] = ACTIONS(932), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_match] = ACTIONS(936), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), + [anon_sym_unsafe] = ACTIONS(938), + [anon_sym_while] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(942), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [236] = { + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [ts_builtin_sym_end] = ACTIONS(976), + [sym_identifier] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(976), + [anon_sym_macro_rules_BANG] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_LBRACK] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_QMARK] = ACTIONS(976), + [anon_sym_u8] = ACTIONS(978), + [anon_sym_i8] = ACTIONS(978), + [anon_sym_u16] = ACTIONS(978), + [anon_sym_i16] = ACTIONS(978), + [anon_sym_u32] = ACTIONS(978), + [anon_sym_i32] = ACTIONS(978), + [anon_sym_u64] = ACTIONS(978), + [anon_sym_i64] = ACTIONS(978), + [anon_sym_u128] = ACTIONS(978), + [anon_sym_i128] = ACTIONS(978), + [anon_sym_isize] = ACTIONS(978), + [anon_sym_usize] = ACTIONS(978), + [anon_sym_f32] = ACTIONS(978), + [anon_sym_f64] = ACTIONS(978), + [anon_sym_bool] = ACTIONS(978), + [anon_sym_str] = ACTIONS(978), + [anon_sym_char] = ACTIONS(978), + [anon_sym_SLASH] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_COLON_COLON] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(978), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(976), + [anon_sym_PERCENT] = ACTIONS(978), + [anon_sym_CARET] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(978), + [anon_sym_GT] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_SQUOTE] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_async] = ACTIONS(978), + [anon_sym_break] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [anon_sym_continue] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_enum] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(978), + [anon_sym_for] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_impl] = ACTIONS(978), + [anon_sym_let] = ACTIONS(978), + [anon_sym_loop] = ACTIONS(978), + [anon_sym_match] = ACTIONS(978), + [anon_sym_mod] = ACTIONS(978), + [anon_sym_pub] = ACTIONS(978), + [anon_sym_return] = ACTIONS(978), + [anon_sym_static] = ACTIONS(978), + [anon_sym_struct] = ACTIONS(978), + [anon_sym_trait] = ACTIONS(978), + [anon_sym_type] = ACTIONS(978), + [anon_sym_union] = ACTIONS(978), + [anon_sym_unsafe] = ACTIONS(978), + [anon_sym_use] = ACTIONS(978), + [anon_sym_while] = ACTIONS(978), + [anon_sym_extern] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(976), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(976), + [anon_sym_PIPE_PIPE] = ACTIONS(976), + [anon_sym_EQ_EQ] = ACTIONS(976), + [anon_sym_BANG_EQ] = ACTIONS(976), + [anon_sym_LT_EQ] = ACTIONS(976), + [anon_sym_GT_EQ] = ACTIONS(976), + [anon_sym_LT_LT] = ACTIONS(978), + [anon_sym_GT_GT] = ACTIONS(978), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [anon_sym_yield] = ACTIONS(978), + [anon_sym_move] = ACTIONS(978), + [anon_sym_try] = ACTIONS(978), + [sym_integer_literal] = ACTIONS(976), + [aux_sym_string_literal_token1] = ACTIONS(976), + [sym_char_literal] = ACTIONS(976), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_crate] = ACTIONS(978), + [sym_metavariable] = ACTIONS(976), + [sym_raw_string_literal] = ACTIONS(976), + [sym_float_literal] = ACTIONS(976), + }, + [237] = { + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [ts_builtin_sym_end] = ACTIONS(980), + [sym_identifier] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(980), + [anon_sym_macro_rules_BANG] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_u8] = ACTIONS(982), + [anon_sym_i8] = ACTIONS(982), + [anon_sym_u16] = ACTIONS(982), + [anon_sym_i16] = ACTIONS(982), + [anon_sym_u32] = ACTIONS(982), + [anon_sym_i32] = ACTIONS(982), + [anon_sym_u64] = ACTIONS(982), + [anon_sym_i64] = ACTIONS(982), + [anon_sym_u128] = ACTIONS(982), + [anon_sym_i128] = ACTIONS(982), + [anon_sym_isize] = ACTIONS(982), + [anon_sym_usize] = ACTIONS(982), + [anon_sym_f32] = ACTIONS(982), + [anon_sym_f64] = ACTIONS(982), + [anon_sym_bool] = ACTIONS(982), + [anon_sym_str] = ACTIONS(982), + [anon_sym_char] = ACTIONS(982), + [anon_sym_SLASH] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_COLON_COLON] = ACTIONS(980), + [anon_sym_BANG] = ACTIONS(982), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_PERCENT] = ACTIONS(982), + [anon_sym_CARET] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(982), + [anon_sym_GT] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_SQUOTE] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_async] = ACTIONS(982), + [anon_sym_break] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [anon_sym_continue] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_enum] = ACTIONS(982), + [anon_sym_fn] = ACTIONS(982), + [anon_sym_for] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_impl] = ACTIONS(982), + [anon_sym_let] = ACTIONS(982), + [anon_sym_loop] = ACTIONS(982), + [anon_sym_match] = ACTIONS(982), + [anon_sym_mod] = ACTIONS(982), + [anon_sym_pub] = ACTIONS(982), + [anon_sym_return] = ACTIONS(982), + [anon_sym_static] = ACTIONS(982), + [anon_sym_struct] = ACTIONS(982), + [anon_sym_trait] = ACTIONS(982), + [anon_sym_type] = ACTIONS(982), + [anon_sym_union] = ACTIONS(982), + [anon_sym_unsafe] = ACTIONS(982), + [anon_sym_use] = ACTIONS(982), + [anon_sym_while] = ACTIONS(982), + [anon_sym_extern] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(980), + [anon_sym_BANG_EQ] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(980), + [anon_sym_GT_EQ] = ACTIONS(980), + [anon_sym_LT_LT] = ACTIONS(982), + [anon_sym_GT_GT] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PERCENT_EQ] = ACTIONS(980), + [anon_sym_AMP_EQ] = ACTIONS(980), + [anon_sym_PIPE_EQ] = ACTIONS(980), + [anon_sym_CARET_EQ] = ACTIONS(980), + [anon_sym_LT_LT_EQ] = ACTIONS(980), + [anon_sym_GT_GT_EQ] = ACTIONS(980), + [anon_sym_yield] = ACTIONS(982), + [anon_sym_move] = ACTIONS(982), + [anon_sym_try] = ACTIONS(982), + [sym_integer_literal] = ACTIONS(980), + [aux_sym_string_literal_token1] = ACTIONS(980), + [sym_char_literal] = ACTIONS(980), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(982), + [sym_super] = ACTIONS(982), + [sym_crate] = ACTIONS(982), + [sym_metavariable] = ACTIONS(980), + [sym_raw_string_literal] = ACTIONS(980), + [sym_float_literal] = ACTIONS(980), + }, + [238] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(964), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -47308,61 +46714,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [243] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), + [239] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47424,59 +46830,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [244] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1741), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), + [240] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1731), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -47494,93 +46900,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), + [anon_sym_DASH] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), + [anon_sym_break] = ACTIONS(407), [anon_sym_const] = ACTIONS(409), [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [245] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), + [241] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1781), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [sym_identifier] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(405), + [anon_sym_break] = ACTIONS(407), + [anon_sym_const] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(411), + [anon_sym_default] = ACTIONS(413), + [anon_sym_for] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), + [anon_sym_union] = ACTIONS(413), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), + }, + [242] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1735), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47642,54 +47157,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [246] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1846), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(246), - [sym_block_comment] = STATE(246), + [243] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1780), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47751,62 +47266,389 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [247] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), - [sym_identifier] = ACTIONS(329), + [244] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1580), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(688), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [245] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1653), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(465), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(886), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [246] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(39), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(43), + [anon_sym_default] = ACTIONS(345), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, + [247] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1753), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), + [sym_identifier] = ACTIONS(329), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), [anon_sym_i16] = ACTIONS(23), [anon_sym_u32] = ACTIONS(23), [anon_sym_i32] = ACTIONS(23), @@ -47861,97 +47703,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [248] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1547), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1562), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(688), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -47962,107 +47804,325 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, [249] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1810), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(475), + [sym_identifier] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(405), + [anon_sym_break] = ACTIONS(407), + [anon_sym_const] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(411), + [anon_sym_default] = ACTIONS(413), + [anon_sym_for] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), + [anon_sym_union] = ACTIONS(413), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), + }, + [250] = { + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [ts_builtin_sym_end] = ACTIONS(984), + [sym_identifier] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_macro_rules_BANG] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(986), + [anon_sym_QMARK] = ACTIONS(984), + [anon_sym_u8] = ACTIONS(986), + [anon_sym_i8] = ACTIONS(986), + [anon_sym_u16] = ACTIONS(986), + [anon_sym_i16] = ACTIONS(986), + [anon_sym_u32] = ACTIONS(986), + [anon_sym_i32] = ACTIONS(986), + [anon_sym_u64] = ACTIONS(986), + [anon_sym_i64] = ACTIONS(986), + [anon_sym_u128] = ACTIONS(986), + [anon_sym_i128] = ACTIONS(986), + [anon_sym_isize] = ACTIONS(986), + [anon_sym_usize] = ACTIONS(986), + [anon_sym_f32] = ACTIONS(986), + [anon_sym_f64] = ACTIONS(986), + [anon_sym_bool] = ACTIONS(986), + [anon_sym_str] = ACTIONS(986), + [anon_sym_char] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(986), + [anon_sym_COLON_COLON] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(986), + [anon_sym_DOT] = ACTIONS(986), + [anon_sym_AMP] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(984), + [anon_sym_PERCENT] = ACTIONS(986), + [anon_sym_CARET] = ACTIONS(986), + [anon_sym_LT] = ACTIONS(986), + [anon_sym_GT] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_async] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_default] = ACTIONS(986), + [anon_sym_enum] = ACTIONS(986), + [anon_sym_fn] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_impl] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_mod] = ACTIONS(986), + [anon_sym_pub] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_static] = ACTIONS(986), + [anon_sym_struct] = ACTIONS(986), + [anon_sym_trait] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_union] = ACTIONS(986), + [anon_sym_unsafe] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [anon_sym_extern] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(984), + [anon_sym_PIPE_PIPE] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(984), + [anon_sym_BANG_EQ] = ACTIONS(984), + [anon_sym_LT_EQ] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(984), + [anon_sym_LT_LT] = ACTIONS(986), + [anon_sym_GT_GT] = ACTIONS(986), + [anon_sym_PLUS_EQ] = ACTIONS(984), + [anon_sym_DASH_EQ] = ACTIONS(984), + [anon_sym_STAR_EQ] = ACTIONS(984), + [anon_sym_SLASH_EQ] = ACTIONS(984), + [anon_sym_PERCENT_EQ] = ACTIONS(984), + [anon_sym_AMP_EQ] = ACTIONS(984), + [anon_sym_PIPE_EQ] = ACTIONS(984), + [anon_sym_CARET_EQ] = ACTIONS(984), + [anon_sym_LT_LT_EQ] = ACTIONS(984), + [anon_sym_GT_GT_EQ] = ACTIONS(984), + [anon_sym_yield] = ACTIONS(986), + [anon_sym_move] = ACTIONS(986), + [anon_sym_try] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(984), + [aux_sym_string_literal_token1] = ACTIONS(984), + [sym_char_literal] = ACTIONS(984), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(986), + [sym_super] = ACTIONS(986), + [sym_crate] = ACTIONS(986), + [sym_metavariable] = ACTIONS(984), + [sym_raw_string_literal] = ACTIONS(984), + [sym_float_literal] = ACTIONS(984), + }, + [251] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1846), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_COLON_COLON] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(27), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(39), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(345), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(67), + [anon_sym_static] = ACTIONS(355), + [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -48071,214 +48131,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [250] = { - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [ts_builtin_sym_end] = ACTIONS(982), - [sym_identifier] = ACTIONS(984), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_macro_rules_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(982), - [anon_sym_u8] = ACTIONS(984), - [anon_sym_i8] = ACTIONS(984), - [anon_sym_u16] = ACTIONS(984), - [anon_sym_i16] = ACTIONS(984), - [anon_sym_u32] = ACTIONS(984), - [anon_sym_i32] = ACTIONS(984), - [anon_sym_u64] = ACTIONS(984), - [anon_sym_i64] = ACTIONS(984), - [anon_sym_u128] = ACTIONS(984), - [anon_sym_i128] = ACTIONS(984), - [anon_sym_isize] = ACTIONS(984), - [anon_sym_usize] = ACTIONS(984), - [anon_sym_f32] = ACTIONS(984), - [anon_sym_f64] = ACTIONS(984), - [anon_sym_bool] = ACTIONS(984), - [anon_sym_str] = ACTIONS(984), - [anon_sym_char] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_BANG] = ACTIONS(984), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(982), - [anon_sym_PERCENT] = ACTIONS(984), - [anon_sym_CARET] = ACTIONS(984), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_SQUOTE] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_async] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_enum] = ACTIONS(984), - [anon_sym_fn] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_impl] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_mod] = ACTIONS(984), - [anon_sym_pub] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_static] = ACTIONS(984), - [anon_sym_struct] = ACTIONS(984), - [anon_sym_trait] = ACTIONS(984), - [anon_sym_type] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_unsafe] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [anon_sym_EQ_EQ] = ACTIONS(982), - [anon_sym_BANG_EQ] = ACTIONS(982), - [anon_sym_LT_EQ] = ACTIONS(982), - [anon_sym_GT_EQ] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(984), - [anon_sym_GT_GT] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(982), - [anon_sym_DASH_EQ] = ACTIONS(982), - [anon_sym_STAR_EQ] = ACTIONS(982), - [anon_sym_SLASH_EQ] = ACTIONS(982), - [anon_sym_PERCENT_EQ] = ACTIONS(982), - [anon_sym_AMP_EQ] = ACTIONS(982), - [anon_sym_PIPE_EQ] = ACTIONS(982), - [anon_sym_CARET_EQ] = ACTIONS(982), - [anon_sym_LT_LT_EQ] = ACTIONS(982), - [anon_sym_GT_GT_EQ] = ACTIONS(982), - [anon_sym_yield] = ACTIONS(984), - [anon_sym_move] = ACTIONS(984), - [anon_sym_try] = ACTIONS(984), - [sym_integer_literal] = ACTIONS(982), - [aux_sym_string_literal_token1] = ACTIONS(982), - [sym_char_literal] = ACTIONS(982), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = ACTIONS(984), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(984), - [sym_super] = ACTIONS(984), - [sym_crate] = ACTIONS(984), - [sym_metavariable] = ACTIONS(982), - [sym_raw_string_literal] = ACTIONS(982), - [sym_float_literal] = ACTIONS(982), - }, - [251] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1569), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [sym_identifier] = ACTIONS(475), + [252] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1572), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(489), [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), + [anon_sym_DOT_DOT] = ACTIONS(688), [anon_sym_yield] = ACTIONS(493), [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), @@ -48289,61 +48240,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [252] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), + [253] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48405,59 +48356,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [253] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), + [254] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(662), [anon_sym_u8] = ACTIONS(399), [anon_sym_i8] = ACTIONS(399), [anon_sym_u16] = ACTIONS(399), @@ -48475,10 +48426,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(399), [anon_sym_str] = ACTIONS(399), [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(662), [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), @@ -48488,193 +48439,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_continue] = ACTIONS(411), [anon_sym_default] = ACTIONS(413), [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [254] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, [255] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(464), + [sym_match_expression] = STATE(464), + [sym_while_expression] = STATE(464), + [sym_loop_expression] = STATE(464), + [sym_for_expression] = STATE(464), + [sym_const_block] = STATE(464), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3540), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(464), + [sym_async_block] = STATE(464), + [sym_try_block] = STATE(464), + [sym_block] = STATE(464), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(255), [sym_block_comment] = STATE(255), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_LBRACE] = ACTIONS(924), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48700,24 +48542,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), + [anon_sym_async] = ACTIONS(926), [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), + [anon_sym_const] = ACTIONS(928), [anon_sym_continue] = ACTIONS(43), [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), + [anon_sym_for] = ACTIONS(930), + [anon_sym_if] = ACTIONS(932), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_match] = ACTIONS(936), [anon_sym_return] = ACTIONS(67), [anon_sym_static] = ACTIONS(355), [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), + [anon_sym_unsafe] = ACTIONS(938), + [anon_sym_while] = ACTIONS(940), [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), + [anon_sym_try] = ACTIONS(942), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -48733,57 +48575,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [256] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1474), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(466), + [sym_match_expression] = STATE(466), + [sym_while_expression] = STATE(466), + [sym_loop_expression] = STATE(466), + [sym_for_expression] = STATE(466), + [sym_const_block] = STATE(466), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3540), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(466), + [sym_async_block] = STATE(466), + [sym_try_block] = STATE(466), + [sym_block] = STATE(466), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(256), [sym_block_comment] = STATE(256), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_LBRACE] = ACTIONS(924), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -48809,24 +48651,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), + [anon_sym_async] = ACTIONS(926), [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), + [anon_sym_const] = ACTIONS(928), [anon_sym_continue] = ACTIONS(43), [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), + [anon_sym_for] = ACTIONS(930), + [anon_sym_if] = ACTIONS(932), + [anon_sym_loop] = ACTIONS(934), + [anon_sym_match] = ACTIONS(936), [anon_sym_return] = ACTIONS(67), [anon_sym_static] = ACTIONS(355), [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_unsafe] = ACTIONS(938), + [anon_sym_while] = ACTIONS(940), + [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), + [anon_sym_try] = ACTIONS(942), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -48842,51 +48684,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [257] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1435), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1697), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(257), [sym_block_comment] = STATE(257), [sym_identifier] = ACTIONS(329), @@ -48932,7 +48774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -48951,51 +48793,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [258] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(258), [sym_block_comment] = STATE(258), [sym_identifier] = ACTIONS(329), @@ -49060,51 +48902,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [259] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1477), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1491), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(259), [sym_block_comment] = STATE(259), [sym_identifier] = ACTIONS(329), @@ -49150,7 +48992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -49169,162 +49011,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [260] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1697), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1126), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(260), [sym_block_comment] = STATE(260), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [261] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49368,7 +49101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -49386,52 +49119,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, + [261] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1537), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [sym_identifier] = ACTIONS(457), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(333), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(341), + [anon_sym_break] = ACTIONS(485), + [anon_sym_const] = ACTIONS(343), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), + [anon_sym_try] = ACTIONS(361), + [sym_integer_literal] = ACTIONS(95), + [aux_sym_string_literal_token1] = ACTIONS(97), + [sym_char_literal] = ACTIONS(95), + [anon_sym_true] = ACTIONS(99), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), + [sym_raw_string_literal] = ACTIONS(95), + [sym_float_literal] = ACTIONS(95), + }, [262] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1479), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1490), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(262), [sym_block_comment] = STATE(262), [sym_identifier] = ACTIONS(329), @@ -49477,7 +49319,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -49496,51 +49338,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [263] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1478), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(263), [sym_block_comment] = STATE(263), [sym_identifier] = ACTIONS(329), @@ -49586,7 +49428,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -49605,51 +49447,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [264] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1461), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1489), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(264), [sym_block_comment] = STATE(264), [sym_identifier] = ACTIONS(329), @@ -49695,7 +49537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -49714,162 +49556,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [265] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1488), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), [sym_line_comment] = STATE(265), [sym_block_comment] = STATE(265), - [ts_builtin_sym_end] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_macro_rules_BANG] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_u8] = ACTIONS(988), - [anon_sym_i8] = ACTIONS(988), - [anon_sym_u16] = ACTIONS(988), - [anon_sym_i16] = ACTIONS(988), - [anon_sym_u32] = ACTIONS(988), - [anon_sym_i32] = ACTIONS(988), - [anon_sym_u64] = ACTIONS(988), - [anon_sym_i64] = ACTIONS(988), - [anon_sym_u128] = ACTIONS(988), - [anon_sym_i128] = ACTIONS(988), - [anon_sym_isize] = ACTIONS(988), - [anon_sym_usize] = ACTIONS(988), - [anon_sym_f32] = ACTIONS(988), - [anon_sym_f64] = ACTIONS(988), - [anon_sym_bool] = ACTIONS(988), - [anon_sym_str] = ACTIONS(988), - [anon_sym_char] = ACTIONS(988), - [anon_sym_SLASH] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(992), - [anon_sym_COLON_COLON] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LT] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_as] = ACTIONS(992), - [anon_sym_async] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_fn] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_impl] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_mod] = ACTIONS(988), - [anon_sym_pub] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_static] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_trait] = ACTIONS(988), - [anon_sym_type] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_unsafe] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_yield] = ACTIONS(988), - [anon_sym_move] = ACTIONS(988), - [anon_sym_try] = ACTIONS(988), - [sym_integer_literal] = ACTIONS(986), - [aux_sym_string_literal_token1] = ACTIONS(986), - [sym_char_literal] = ACTIONS(986), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(988), - [sym_super] = ACTIONS(988), - [sym_crate] = ACTIONS(988), - [sym_metavariable] = ACTIONS(986), - [sym_raw_string_literal] = ACTIONS(986), - [sym_float_literal] = ACTIONS(986), - }, - [266] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1462), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49913,7 +49646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -49931,163 +49664,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [267] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1698), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [268] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1459), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), + [266] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1486), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50131,7 +49755,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -50149,54 +49773,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [269] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1469), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), + [267] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1482), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50240,7 +49864,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -50258,54 +49882,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [270] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1460), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), + [268] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1704), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50349,7 +49973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -50367,54 +49991,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [271] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1471), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), + [269] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1480), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50458,7 +50082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), + [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -50476,100 +50100,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [272] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(329), + [270] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1798), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -50578,652 +50202,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [273] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [274] = { - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [ts_builtin_sym_end] = ACTIONS(994), - [sym_identifier] = ACTIONS(996), - [anon_sym_SEMI] = ACTIONS(994), - [anon_sym_macro_rules_BANG] = ACTIONS(994), - [anon_sym_LPAREN] = ACTIONS(994), - [anon_sym_LBRACK] = ACTIONS(994), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_RBRACE] = ACTIONS(994), - [anon_sym_PLUS] = ACTIONS(996), - [anon_sym_STAR] = ACTIONS(996), - [anon_sym_QMARK] = ACTIONS(994), - [anon_sym_u8] = ACTIONS(996), - [anon_sym_i8] = ACTIONS(996), - [anon_sym_u16] = ACTIONS(996), - [anon_sym_i16] = ACTIONS(996), - [anon_sym_u32] = ACTIONS(996), - [anon_sym_i32] = ACTIONS(996), - [anon_sym_u64] = ACTIONS(996), - [anon_sym_i64] = ACTIONS(996), - [anon_sym_u128] = ACTIONS(996), - [anon_sym_i128] = ACTIONS(996), - [anon_sym_isize] = ACTIONS(996), - [anon_sym_usize] = ACTIONS(996), - [anon_sym_f32] = ACTIONS(996), - [anon_sym_f64] = ACTIONS(996), - [anon_sym_bool] = ACTIONS(996), - [anon_sym_str] = ACTIONS(996), - [anon_sym_char] = ACTIONS(996), - [anon_sym_SLASH] = ACTIONS(996), - [anon_sym_DASH] = ACTIONS(996), - [anon_sym_EQ] = ACTIONS(996), - [anon_sym_COLON_COLON] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(996), - [anon_sym_DOT] = ACTIONS(996), - [anon_sym_AMP] = ACTIONS(996), - [anon_sym_POUND] = ACTIONS(994), - [anon_sym_PERCENT] = ACTIONS(996), - [anon_sym_CARET] = ACTIONS(996), - [anon_sym_LT] = ACTIONS(996), - [anon_sym_GT] = ACTIONS(996), - [anon_sym_PIPE] = ACTIONS(996), - [anon_sym_SQUOTE] = ACTIONS(996), - [anon_sym_as] = ACTIONS(996), - [anon_sym_async] = ACTIONS(996), - [anon_sym_break] = ACTIONS(996), - [anon_sym_const] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_default] = ACTIONS(996), - [anon_sym_enum] = ACTIONS(996), - [anon_sym_fn] = ACTIONS(996), - [anon_sym_for] = ACTIONS(996), - [anon_sym_if] = ACTIONS(996), - [anon_sym_impl] = ACTIONS(996), - [anon_sym_let] = ACTIONS(996), - [anon_sym_loop] = ACTIONS(996), - [anon_sym_match] = ACTIONS(996), - [anon_sym_mod] = ACTIONS(996), - [anon_sym_pub] = ACTIONS(996), - [anon_sym_return] = ACTIONS(996), - [anon_sym_static] = ACTIONS(996), - [anon_sym_struct] = ACTIONS(996), - [anon_sym_trait] = ACTIONS(996), - [anon_sym_type] = ACTIONS(996), - [anon_sym_union] = ACTIONS(996), - [anon_sym_unsafe] = ACTIONS(996), - [anon_sym_use] = ACTIONS(996), - [anon_sym_while] = ACTIONS(996), - [anon_sym_extern] = ACTIONS(996), - [anon_sym_DOT_DOT_DOT] = ACTIONS(994), - [anon_sym_DOT_DOT] = ACTIONS(996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(994), - [anon_sym_AMP_AMP] = ACTIONS(994), - [anon_sym_PIPE_PIPE] = ACTIONS(994), - [anon_sym_EQ_EQ] = ACTIONS(994), - [anon_sym_BANG_EQ] = ACTIONS(994), - [anon_sym_LT_EQ] = ACTIONS(994), - [anon_sym_GT_EQ] = ACTIONS(994), - [anon_sym_LT_LT] = ACTIONS(996), - [anon_sym_GT_GT] = ACTIONS(996), - [anon_sym_PLUS_EQ] = ACTIONS(994), - [anon_sym_DASH_EQ] = ACTIONS(994), - [anon_sym_STAR_EQ] = ACTIONS(994), - [anon_sym_SLASH_EQ] = ACTIONS(994), - [anon_sym_PERCENT_EQ] = ACTIONS(994), - [anon_sym_AMP_EQ] = ACTIONS(994), - [anon_sym_PIPE_EQ] = ACTIONS(994), - [anon_sym_CARET_EQ] = ACTIONS(994), - [anon_sym_LT_LT_EQ] = ACTIONS(994), - [anon_sym_GT_GT_EQ] = ACTIONS(994), - [anon_sym_yield] = ACTIONS(996), - [anon_sym_move] = ACTIONS(996), - [anon_sym_try] = ACTIONS(996), - [sym_integer_literal] = ACTIONS(994), - [aux_sym_string_literal_token1] = ACTIONS(994), - [sym_char_literal] = ACTIONS(994), - [anon_sym_true] = ACTIONS(996), - [anon_sym_false] = ACTIONS(996), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(996), - [sym_super] = ACTIONS(996), - [sym_crate] = ACTIONS(996), - [sym_metavariable] = ACTIONS(994), - [sym_raw_string_literal] = ACTIONS(994), - [sym_float_literal] = ACTIONS(994), - }, - [275] = { - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [ts_builtin_sym_end] = ACTIONS(998), - [sym_identifier] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_macro_rules_BANG] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(1000), - [anon_sym_STAR] = ACTIONS(1000), - [anon_sym_QMARK] = ACTIONS(998), - [anon_sym_u8] = ACTIONS(1000), - [anon_sym_i8] = ACTIONS(1000), - [anon_sym_u16] = ACTIONS(1000), - [anon_sym_i16] = ACTIONS(1000), - [anon_sym_u32] = ACTIONS(1000), - [anon_sym_i32] = ACTIONS(1000), - [anon_sym_u64] = ACTIONS(1000), - [anon_sym_i64] = ACTIONS(1000), - [anon_sym_u128] = ACTIONS(1000), - [anon_sym_i128] = ACTIONS(1000), - [anon_sym_isize] = ACTIONS(1000), - [anon_sym_usize] = ACTIONS(1000), - [anon_sym_f32] = ACTIONS(1000), - [anon_sym_f64] = ACTIONS(1000), - [anon_sym_bool] = ACTIONS(1000), - [anon_sym_str] = ACTIONS(1000), - [anon_sym_char] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(1000), - [anon_sym_COLON_COLON] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(1000), - [anon_sym_DOT] = ACTIONS(1000), - [anon_sym_AMP] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(998), - [anon_sym_PERCENT] = ACTIONS(1000), - [anon_sym_CARET] = ACTIONS(1000), - [anon_sym_LT] = ACTIONS(1000), - [anon_sym_GT] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_SQUOTE] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_async] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_fn] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_impl] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(1000), - [anon_sym_pub] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_trait] = ACTIONS(1000), - [anon_sym_type] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_unsafe] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [anon_sym_extern] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT] = ACTIONS(998), - [anon_sym_DOT_DOT] = ACTIONS(1000), - [anon_sym_DOT_DOT_EQ] = ACTIONS(998), - [anon_sym_AMP_AMP] = ACTIONS(998), - [anon_sym_PIPE_PIPE] = ACTIONS(998), - [anon_sym_EQ_EQ] = ACTIONS(998), - [anon_sym_BANG_EQ] = ACTIONS(998), - [anon_sym_LT_EQ] = ACTIONS(998), - [anon_sym_GT_EQ] = ACTIONS(998), - [anon_sym_LT_LT] = ACTIONS(1000), - [anon_sym_GT_GT] = ACTIONS(1000), - [anon_sym_PLUS_EQ] = ACTIONS(998), - [anon_sym_DASH_EQ] = ACTIONS(998), - [anon_sym_STAR_EQ] = ACTIONS(998), - [anon_sym_SLASH_EQ] = ACTIONS(998), - [anon_sym_PERCENT_EQ] = ACTIONS(998), - [anon_sym_AMP_EQ] = ACTIONS(998), - [anon_sym_PIPE_EQ] = ACTIONS(998), - [anon_sym_CARET_EQ] = ACTIONS(998), - [anon_sym_LT_LT_EQ] = ACTIONS(998), - [anon_sym_GT_GT_EQ] = ACTIONS(998), - [anon_sym_yield] = ACTIONS(1000), - [anon_sym_move] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(1000), - [sym_integer_literal] = ACTIONS(998), - [aux_sym_string_literal_token1] = ACTIONS(998), - [sym_char_literal] = ACTIONS(998), - [anon_sym_true] = ACTIONS(1000), - [anon_sym_false] = ACTIONS(1000), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1000), - [sym_super] = ACTIONS(1000), - [sym_crate] = ACTIONS(1000), - [sym_metavariable] = ACTIONS(998), - [sym_raw_string_literal] = ACTIONS(998), - [sym_float_literal] = ACTIONS(998), - }, - [276] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [277] = { - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), - [ts_builtin_sym_end] = ACTIONS(1002), - [sym_identifier] = ACTIONS(1004), - [anon_sym_SEMI] = ACTIONS(1002), - [anon_sym_macro_rules_BANG] = ACTIONS(1002), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_LBRACE] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(1002), - [anon_sym_u8] = ACTIONS(1004), - [anon_sym_i8] = ACTIONS(1004), - [anon_sym_u16] = ACTIONS(1004), - [anon_sym_i16] = ACTIONS(1004), - [anon_sym_u32] = ACTIONS(1004), - [anon_sym_i32] = ACTIONS(1004), - [anon_sym_u64] = ACTIONS(1004), - [anon_sym_i64] = ACTIONS(1004), - [anon_sym_u128] = ACTIONS(1004), - [anon_sym_i128] = ACTIONS(1004), - [anon_sym_isize] = ACTIONS(1004), - [anon_sym_usize] = ACTIONS(1004), - [anon_sym_f32] = ACTIONS(1004), - [anon_sym_f64] = ACTIONS(1004), - [anon_sym_bool] = ACTIONS(1004), - [anon_sym_str] = ACTIONS(1004), - [anon_sym_char] = ACTIONS(1004), - [anon_sym_SLASH] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_COLON_COLON] = ACTIONS(1002), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1004), - [anon_sym_CARET] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_SQUOTE] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_async] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_enum] = ACTIONS(1004), - [anon_sym_fn] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_impl] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_mod] = ACTIONS(1004), - [anon_sym_pub] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_struct] = ACTIONS(1004), - [anon_sym_trait] = ACTIONS(1004), - [anon_sym_type] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_unsafe] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1002), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), - [anon_sym_AMP_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(1002), - [anon_sym_BANG_EQ] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(1002), - [anon_sym_GT_EQ] = ACTIONS(1002), - [anon_sym_LT_LT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1002), - [anon_sym_DASH_EQ] = ACTIONS(1002), - [anon_sym_STAR_EQ] = ACTIONS(1002), - [anon_sym_SLASH_EQ] = ACTIONS(1002), - [anon_sym_PERCENT_EQ] = ACTIONS(1002), - [anon_sym_AMP_EQ] = ACTIONS(1002), - [anon_sym_PIPE_EQ] = ACTIONS(1002), - [anon_sym_CARET_EQ] = ACTIONS(1002), - [anon_sym_LT_LT_EQ] = ACTIONS(1002), - [anon_sym_GT_GT_EQ] = ACTIONS(1002), - [anon_sym_yield] = ACTIONS(1004), - [anon_sym_move] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1004), - [sym_integer_literal] = ACTIONS(1002), - [aux_sym_string_literal_token1] = ACTIONS(1002), - [sym_char_literal] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1004), - [sym_super] = ACTIONS(1004), - [sym_crate] = ACTIONS(1004), - [sym_metavariable] = ACTIONS(1002), - [sym_raw_string_literal] = ACTIONS(1002), - [sym_float_literal] = ACTIONS(1002), - }, - [278] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1269), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(475), + [271] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1539), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(118), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(646), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(646), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(646), + [anon_sym_AMP] = ACTIONS(648), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(485), [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_continue] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(489), + [anon_sym_static] = ACTIONS(491), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(652), + [anon_sym_yield] = ACTIONS(493), + [anon_sym_move] = ACTIONS(495), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -51232,606 +50311,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [279] = { - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), - [ts_builtin_sym_end] = ACTIONS(1006), - [sym_identifier] = ACTIONS(1008), - [anon_sym_SEMI] = ACTIONS(1006), - [anon_sym_macro_rules_BANG] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_LBRACE] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1008), - [anon_sym_QMARK] = ACTIONS(1006), - [anon_sym_u8] = ACTIONS(1008), - [anon_sym_i8] = ACTIONS(1008), - [anon_sym_u16] = ACTIONS(1008), - [anon_sym_i16] = ACTIONS(1008), - [anon_sym_u32] = ACTIONS(1008), - [anon_sym_i32] = ACTIONS(1008), - [anon_sym_u64] = ACTIONS(1008), - [anon_sym_i64] = ACTIONS(1008), - [anon_sym_u128] = ACTIONS(1008), - [anon_sym_i128] = ACTIONS(1008), - [anon_sym_isize] = ACTIONS(1008), - [anon_sym_usize] = ACTIONS(1008), - [anon_sym_f32] = ACTIONS(1008), - [anon_sym_f64] = ACTIONS(1008), - [anon_sym_bool] = ACTIONS(1008), - [anon_sym_str] = ACTIONS(1008), - [anon_sym_char] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_COLON_COLON] = ACTIONS(1006), - [anon_sym_BANG] = ACTIONS(1008), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_AMP] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(1006), - [anon_sym_PERCENT] = ACTIONS(1008), - [anon_sym_CARET] = ACTIONS(1008), - [anon_sym_LT] = ACTIONS(1008), - [anon_sym_GT] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_SQUOTE] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_async] = ACTIONS(1008), - [anon_sym_break] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_continue] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_enum] = ACTIONS(1008), - [anon_sym_fn] = ACTIONS(1008), - [anon_sym_for] = ACTIONS(1008), - [anon_sym_if] = ACTIONS(1008), - [anon_sym_impl] = ACTIONS(1008), - [anon_sym_let] = ACTIONS(1008), - [anon_sym_loop] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1008), - [anon_sym_mod] = ACTIONS(1008), - [anon_sym_pub] = ACTIONS(1008), - [anon_sym_return] = ACTIONS(1008), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_struct] = ACTIONS(1008), - [anon_sym_trait] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_unsafe] = ACTIONS(1008), - [anon_sym_use] = ACTIONS(1008), - [anon_sym_while] = ACTIONS(1008), - [anon_sym_extern] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1006), - [anon_sym_DOT_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_AMP_AMP] = ACTIONS(1006), - [anon_sym_PIPE_PIPE] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1008), - [anon_sym_GT_GT] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1006), - [anon_sym_DASH_EQ] = ACTIONS(1006), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PERCENT_EQ] = ACTIONS(1006), - [anon_sym_AMP_EQ] = ACTIONS(1006), - [anon_sym_PIPE_EQ] = ACTIONS(1006), - [anon_sym_CARET_EQ] = ACTIONS(1006), - [anon_sym_LT_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_GT_EQ] = ACTIONS(1006), - [anon_sym_yield] = ACTIONS(1008), - [anon_sym_move] = ACTIONS(1008), - [anon_sym_try] = ACTIONS(1008), - [sym_integer_literal] = ACTIONS(1006), - [aux_sym_string_literal_token1] = ACTIONS(1006), - [sym_char_literal] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1008), - [sym_super] = ACTIONS(1008), - [sym_crate] = ACTIONS(1008), - [sym_metavariable] = ACTIONS(1006), - [sym_raw_string_literal] = ACTIONS(1006), - [sym_float_literal] = ACTIONS(1006), - }, - [280] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [281] = { - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [ts_builtin_sym_end] = ACTIONS(1010), - [sym_identifier] = ACTIONS(1012), - [anon_sym_SEMI] = ACTIONS(1010), - [anon_sym_macro_rules_BANG] = ACTIONS(1010), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_QMARK] = ACTIONS(1010), - [anon_sym_u8] = ACTIONS(1012), - [anon_sym_i8] = ACTIONS(1012), - [anon_sym_u16] = ACTIONS(1012), - [anon_sym_i16] = ACTIONS(1012), - [anon_sym_u32] = ACTIONS(1012), - [anon_sym_i32] = ACTIONS(1012), - [anon_sym_u64] = ACTIONS(1012), - [anon_sym_i64] = ACTIONS(1012), - [anon_sym_u128] = ACTIONS(1012), - [anon_sym_i128] = ACTIONS(1012), - [anon_sym_isize] = ACTIONS(1012), - [anon_sym_usize] = ACTIONS(1012), - [anon_sym_f32] = ACTIONS(1012), - [anon_sym_f64] = ACTIONS(1012), - [anon_sym_bool] = ACTIONS(1012), - [anon_sym_str] = ACTIONS(1012), - [anon_sym_char] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1012), - [anon_sym_COLON_COLON] = ACTIONS(1010), - [anon_sym_BANG] = ACTIONS(1012), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_AMP] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(1010), - [anon_sym_PERCENT] = ACTIONS(1012), - [anon_sym_CARET] = ACTIONS(1012), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_SQUOTE] = ACTIONS(1012), - [anon_sym_as] = ACTIONS(1012), - [anon_sym_async] = ACTIONS(1012), - [anon_sym_break] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_continue] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_enum] = ACTIONS(1012), - [anon_sym_fn] = ACTIONS(1012), - [anon_sym_for] = ACTIONS(1012), - [anon_sym_if] = ACTIONS(1012), - [anon_sym_impl] = ACTIONS(1012), - [anon_sym_let] = ACTIONS(1012), - [anon_sym_loop] = ACTIONS(1012), - [anon_sym_match] = ACTIONS(1012), - [anon_sym_mod] = ACTIONS(1012), - [anon_sym_pub] = ACTIONS(1012), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_struct] = ACTIONS(1012), - [anon_sym_trait] = ACTIONS(1012), - [anon_sym_type] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_unsafe] = ACTIONS(1012), - [anon_sym_use] = ACTIONS(1012), - [anon_sym_while] = ACTIONS(1012), - [anon_sym_extern] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1010), - [anon_sym_DOT_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_AMP_AMP] = ACTIONS(1010), - [anon_sym_PIPE_PIPE] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_LT_LT] = ACTIONS(1012), - [anon_sym_GT_GT] = ACTIONS(1012), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [anon_sym_DASH_EQ] = ACTIONS(1010), - [anon_sym_STAR_EQ] = ACTIONS(1010), - [anon_sym_SLASH_EQ] = ACTIONS(1010), - [anon_sym_PERCENT_EQ] = ACTIONS(1010), - [anon_sym_AMP_EQ] = ACTIONS(1010), - [anon_sym_PIPE_EQ] = ACTIONS(1010), - [anon_sym_CARET_EQ] = ACTIONS(1010), - [anon_sym_LT_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_GT_EQ] = ACTIONS(1010), - [anon_sym_yield] = ACTIONS(1012), - [anon_sym_move] = ACTIONS(1012), - [anon_sym_try] = ACTIONS(1012), - [sym_integer_literal] = ACTIONS(1010), - [aux_sym_string_literal_token1] = ACTIONS(1010), - [sym_char_literal] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1012), - [sym_super] = ACTIONS(1012), - [sym_crate] = ACTIONS(1012), - [sym_metavariable] = ACTIONS(1010), - [sym_raw_string_literal] = ACTIONS(1010), - [sym_float_literal] = ACTIONS(1010), - }, - [282] = { - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), - [ts_builtin_sym_end] = ACTIONS(1014), - [sym_identifier] = ACTIONS(1016), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_macro_rules_BANG] = ACTIONS(1014), - [anon_sym_LPAREN] = ACTIONS(1014), - [anon_sym_LBRACK] = ACTIONS(1014), - [anon_sym_LBRACE] = ACTIONS(1014), - [anon_sym_RBRACE] = ACTIONS(1014), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(1016), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_u8] = ACTIONS(1016), - [anon_sym_i8] = ACTIONS(1016), - [anon_sym_u16] = ACTIONS(1016), - [anon_sym_i16] = ACTIONS(1016), - [anon_sym_u32] = ACTIONS(1016), - [anon_sym_i32] = ACTIONS(1016), - [anon_sym_u64] = ACTIONS(1016), - [anon_sym_i64] = ACTIONS(1016), - [anon_sym_u128] = ACTIONS(1016), - [anon_sym_i128] = ACTIONS(1016), - [anon_sym_isize] = ACTIONS(1016), - [anon_sym_usize] = ACTIONS(1016), - [anon_sym_f32] = ACTIONS(1016), - [anon_sym_f64] = ACTIONS(1016), - [anon_sym_bool] = ACTIONS(1016), - [anon_sym_str] = ACTIONS(1016), - [anon_sym_char] = ACTIONS(1016), - [anon_sym_SLASH] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(1016), - [anon_sym_EQ] = ACTIONS(992), - [anon_sym_COLON_COLON] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_DOT] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(1016), - [anon_sym_POUND] = ACTIONS(1014), - [anon_sym_PERCENT] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LT] = ACTIONS(1016), - [anon_sym_GT] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_SQUOTE] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(992), - [anon_sym_async] = ACTIONS(1016), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_const] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_default] = ACTIONS(1016), - [anon_sym_enum] = ACTIONS(1016), - [anon_sym_fn] = ACTIONS(1016), - [anon_sym_for] = ACTIONS(1016), - [anon_sym_if] = ACTIONS(1016), - [anon_sym_impl] = ACTIONS(1016), - [anon_sym_let] = ACTIONS(1016), - [anon_sym_loop] = ACTIONS(1016), - [anon_sym_match] = ACTIONS(1016), - [anon_sym_mod] = ACTIONS(1016), - [anon_sym_pub] = ACTIONS(1016), - [anon_sym_return] = ACTIONS(1016), - [anon_sym_static] = ACTIONS(1016), - [anon_sym_struct] = ACTIONS(1016), - [anon_sym_trait] = ACTIONS(1016), - [anon_sym_type] = ACTIONS(1016), - [anon_sym_union] = ACTIONS(1016), - [anon_sym_unsafe] = ACTIONS(1016), - [anon_sym_use] = ACTIONS(1016), - [anon_sym_while] = ACTIONS(1016), - [anon_sym_extern] = ACTIONS(1016), - [anon_sym_DOT_DOT_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(1016), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_yield] = ACTIONS(1016), - [anon_sym_move] = ACTIONS(1016), - [anon_sym_try] = ACTIONS(1016), - [sym_integer_literal] = ACTIONS(1014), - [aux_sym_string_literal_token1] = ACTIONS(1014), - [sym_char_literal] = ACTIONS(1014), - [anon_sym_true] = ACTIONS(1016), - [anon_sym_false] = ACTIONS(1016), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1016), - [sym_super] = ACTIONS(1016), - [sym_crate] = ACTIONS(1016), - [sym_metavariable] = ACTIONS(1014), - [sym_raw_string_literal] = ACTIONS(1014), - [sym_float_literal] = ACTIONS(1014), - }, - [283] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(139), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(852), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(852), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(852), - [anon_sym_AMP] = ACTIONS(854), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(407), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(421), - [anon_sym_static] = ACTIONS(423), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(862), - [anon_sym_yield] = ACTIONS(429), - [anon_sym_move] = ACTIONS(431), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [284] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1783), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), + [272] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1478), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51875,7 +50409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -51893,163 +50427,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [285] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(712), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), - }, - [286] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), + [273] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1477), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52093,7 +50518,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -52111,54 +50536,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [287] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1858), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), + [274] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1474), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52202,7 +50627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -52220,54 +50645,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [288] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), + [275] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1750), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52329,54 +50754,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [289] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), + [276] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1663), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52438,58 +50863,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [290] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(466), - [sym_match_expression] = STATE(466), - [sym_while_expression] = STATE(466), - [sym_loop_expression] = STATE(466), - [sym_for_expression] = STATE(466), - [sym_const_block] = STATE(466), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3504), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(466), - [sym_async_block] = STATE(466), - [sym_try_block] = STATE(466), - [sym_block] = STATE(466), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), + [277] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(912), + [anon_sym_LBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52515,24 +50940,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(914), + [anon_sym_async] = ACTIONS(341), [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(916), + [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(918), - [anon_sym_if] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(922), - [anon_sym_match] = ACTIONS(924), + [anon_sym_for] = ACTIONS(347), + [anon_sym_if] = ACTIONS(349), + [anon_sym_loop] = ACTIONS(351), + [anon_sym_match] = ACTIONS(353), [anon_sym_return] = ACTIONS(67), [anon_sym_static] = ACTIONS(355), [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(926), - [anon_sym_while] = ACTIONS(928), + [anon_sym_unsafe] = ACTIONS(357), + [anon_sym_while] = ACTIONS(359), [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(930), + [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -52547,54 +50972,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [291] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), + [278] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52656,209 +51081,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [292] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1811), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(475), + [279] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1824), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [293] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1546), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), + [anon_sym_DOT_DOT] = ACTIONS(886), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -52867,107 +51183,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [294] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1812), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(475), + [280] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1354), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(706), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -52976,216 +51292,216 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [295] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [281] = { + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [ts_builtin_sym_end] = ACTIONS(988), + [sym_identifier] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_macro_rules_BANG] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(990), + [anon_sym_STAR] = ACTIONS(990), + [anon_sym_QMARK] = ACTIONS(988), + [anon_sym_u8] = ACTIONS(990), + [anon_sym_i8] = ACTIONS(990), + [anon_sym_u16] = ACTIONS(990), + [anon_sym_i16] = ACTIONS(990), + [anon_sym_u32] = ACTIONS(990), + [anon_sym_i32] = ACTIONS(990), + [anon_sym_u64] = ACTIONS(990), + [anon_sym_i64] = ACTIONS(990), + [anon_sym_u128] = ACTIONS(990), + [anon_sym_i128] = ACTIONS(990), + [anon_sym_isize] = ACTIONS(990), + [anon_sym_usize] = ACTIONS(990), + [anon_sym_f32] = ACTIONS(990), + [anon_sym_f64] = ACTIONS(990), + [anon_sym_bool] = ACTIONS(990), + [anon_sym_str] = ACTIONS(990), + [anon_sym_char] = ACTIONS(990), + [anon_sym_SLASH] = ACTIONS(990), + [anon_sym_DASH] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(990), + [anon_sym_COLON_COLON] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(990), + [anon_sym_DOT] = ACTIONS(990), + [anon_sym_AMP] = ACTIONS(990), + [anon_sym_POUND] = ACTIONS(988), + [anon_sym_PERCENT] = ACTIONS(990), + [anon_sym_CARET] = ACTIONS(990), + [anon_sym_LT] = ACTIONS(990), + [anon_sym_GT] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_async] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_default] = ACTIONS(990), + [anon_sym_enum] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_impl] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_mod] = ACTIONS(990), + [anon_sym_pub] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_static] = ACTIONS(990), + [anon_sym_struct] = ACTIONS(990), + [anon_sym_trait] = ACTIONS(990), + [anon_sym_type] = ACTIONS(990), + [anon_sym_union] = ACTIONS(990), + [anon_sym_unsafe] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [anon_sym_extern] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT] = ACTIONS(990), + [anon_sym_DOT_DOT_EQ] = ACTIONS(988), + [anon_sym_AMP_AMP] = ACTIONS(988), + [anon_sym_PIPE_PIPE] = ACTIONS(988), + [anon_sym_EQ_EQ] = ACTIONS(988), + [anon_sym_BANG_EQ] = ACTIONS(988), + [anon_sym_LT_EQ] = ACTIONS(988), + [anon_sym_GT_EQ] = ACTIONS(988), + [anon_sym_LT_LT] = ACTIONS(990), + [anon_sym_GT_GT] = ACTIONS(990), + [anon_sym_PLUS_EQ] = ACTIONS(988), + [anon_sym_DASH_EQ] = ACTIONS(988), + [anon_sym_STAR_EQ] = ACTIONS(988), + [anon_sym_SLASH_EQ] = ACTIONS(988), + [anon_sym_PERCENT_EQ] = ACTIONS(988), + [anon_sym_AMP_EQ] = ACTIONS(988), + [anon_sym_PIPE_EQ] = ACTIONS(988), + [anon_sym_CARET_EQ] = ACTIONS(988), + [anon_sym_LT_LT_EQ] = ACTIONS(988), + [anon_sym_GT_GT_EQ] = ACTIONS(988), + [anon_sym_yield] = ACTIONS(990), + [anon_sym_move] = ACTIONS(990), + [anon_sym_try] = ACTIONS(990), + [sym_integer_literal] = ACTIONS(988), + [aux_sym_string_literal_token1] = ACTIONS(988), + [sym_char_literal] = ACTIONS(988), + [anon_sym_true] = ACTIONS(990), + [anon_sym_false] = ACTIONS(990), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(990), + [sym_super] = ACTIONS(990), + [sym_crate] = ACTIONS(990), + [sym_metavariable] = ACTIONS(988), + [sym_raw_string_literal] = ACTIONS(988), + [sym_float_literal] = ACTIONS(988), }, - [296] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(475), + [282] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2723), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1519), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(113), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_identifier] = ACTIONS(457), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_u8] = ACTIONS(459), + [anon_sym_i8] = ACTIONS(459), + [anon_sym_u16] = ACTIONS(459), + [anon_sym_i16] = ACTIONS(459), + [anon_sym_u32] = ACTIONS(459), + [anon_sym_i32] = ACTIONS(459), + [anon_sym_u64] = ACTIONS(459), + [anon_sym_i64] = ACTIONS(459), + [anon_sym_u128] = ACTIONS(459), + [anon_sym_i128] = ACTIONS(459), + [anon_sym_isize] = ACTIONS(459), + [anon_sym_usize] = ACTIONS(459), + [anon_sym_f32] = ACTIONS(459), + [anon_sym_f64] = ACTIONS(459), + [anon_sym_bool] = ACTIONS(459), + [anon_sym_str] = ACTIONS(459), + [anon_sym_char] = ACTIONS(459), + [anon_sym_DASH] = ACTIONS(698), + [anon_sym_COLON_COLON] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(698), + [anon_sym_AMP] = ACTIONS(704), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(465), [anon_sym_const] = ACTIONS(343), [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), + [anon_sym_default] = ACTIONS(467), [anon_sym_for] = ACTIONS(347), [anon_sym_if] = ACTIONS(349), [anon_sym_loop] = ACTIONS(351), [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), + [anon_sym_return] = ACTIONS(469), + [anon_sym_static] = ACTIONS(471), + [anon_sym_union] = ACTIONS(467), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), + [anon_sym_DOT_DOT] = ACTIONS(886), + [anon_sym_yield] = ACTIONS(473), + [anon_sym_move] = ACTIONS(475), [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -53194,61 +51510,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(99), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), + [sym_self] = ACTIONS(477), + [sym_super] = ACTIONS(479), + [sym_crate] = ACTIONS(479), + [sym_metavariable] = ACTIONS(481), [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [297] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), + [283] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1354), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53292,7 +51608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), + [anon_sym_DOT_DOT] = ACTIONS(838), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(361), @@ -53310,54 +51626,163 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [298] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1396), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), + [284] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1680), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [sym_identifier] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(35), + [anon_sym_async] = ACTIONS(405), + [anon_sym_break] = ACTIONS(407), + [anon_sym_const] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(411), + [anon_sym_default] = ACTIONS(413), + [anon_sym_for] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), + [anon_sym_union] = ACTIONS(413), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), + }, + [285] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1834), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53401,337 +51826,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(345), [anon_sym_unsafe] = ACTIONS(357), [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(740), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [299] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [300] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(662), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [301] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1795), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(466), - [sym_match_expression] = STATE(466), - [sym_while_expression] = STATE(466), - [sym_loop_expression] = STATE(466), - [sym_for_expression] = STATE(466), - [sym_const_block] = STATE(466), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3504), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(466), - [sym_async_block] = STATE(466), - [sym_try_block] = STATE(466), - [sym_block] = STATE(466), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(914), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(918), - [anon_sym_if] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(922), - [anon_sym_match] = ACTIONS(924), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(926), - [anon_sym_while] = ACTIONS(928), [anon_sym_DOT_DOT] = ACTIONS(87), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(930), + [anon_sym_try] = ACTIONS(361), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -53746,163 +51844,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [302] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1712), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [303] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1762), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), + [286] = { + [sym_bracketed_type] = STATE(3517), + [sym_generic_function] = STATE(1233), + [sym_generic_type_with_turbofish] = STATE(2869), + [sym__expression_except_range] = STATE(1042), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1292), + [sym_scoped_identifier] = STATE(1207), + [sym_scoped_type_identifier_in_expression_position] = STATE(3067), + [sym_range_expression] = STATE(1243), + [sym_unary_expression] = STATE(1233), + [sym_try_expression] = STATE(1233), + [sym_reference_expression] = STATE(1233), + [sym_binary_expression] = STATE(1233), + [sym_assignment_expression] = STATE(1233), + [sym_compound_assignment_expr] = STATE(1233), + [sym_type_cast_expression] = STATE(1233), + [sym_return_expression] = STATE(1233), + [sym_yield_expression] = STATE(1233), + [sym_call_expression] = STATE(1233), + [sym_array_expression] = STATE(1233), + [sym_parenthesized_expression] = STATE(1233), + [sym_tuple_expression] = STATE(1233), + [sym_unit_expression] = STATE(1233), + [sym_struct_expression] = STATE(1233), + [sym_if_expression] = STATE(1233), + [sym_match_expression] = STATE(1233), + [sym_while_expression] = STATE(1233), + [sym_loop_expression] = STATE(1233), + [sym_for_expression] = STATE(1233), + [sym_const_block] = STATE(1233), + [sym_closure_expression] = STATE(1233), + [sym_closure_parameters] = STATE(136), + [sym_label] = STATE(3496), + [sym_break_expression] = STATE(1233), + [sym_continue_expression] = STATE(1233), + [sym_index_expression] = STATE(1233), + [sym_await_expression] = STATE(1233), + [sym_field_expression] = STATE(1044), + [sym_unsafe_block] = STATE(1233), + [sym_async_block] = STATE(1233), + [sym_try_block] = STATE(1233), + [sym_block] = STATE(1233), + [sym__literal] = STATE(1233), + [sym_string_literal] = STATE(1094), + [sym_boolean_literal] = STATE(1094), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), [sym_identifier] = ACTIONS(329), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53964,12316 +51953,11487 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(95), [sym_float_literal] = ACTIONS(95), }, - [304] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1821), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [287] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1679), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(405), + [anon_sym_break] = ACTIONS(407), + [anon_sym_const] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(411), + [anon_sym_default] = ACTIONS(413), + [anon_sym_for] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), + [anon_sym_union] = ACTIONS(413), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [305] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1822), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), + [288] = { + [sym_bracketed_type] = STATE(3464), + [sym_generic_function] = STATE(1685), + [sym_generic_type_with_turbofish] = STATE(2819), + [sym__expression_except_range] = STATE(1603), + [sym__expression] = STATE(1783), + [sym_macro_invocation] = STATE(1692), + [sym_scoped_identifier] = STATE(1555), + [sym_scoped_type_identifier_in_expression_position] = STATE(3147), + [sym_range_expression] = STATE(1687), + [sym_unary_expression] = STATE(1685), + [sym_try_expression] = STATE(1685), + [sym_reference_expression] = STATE(1685), + [sym_binary_expression] = STATE(1685), + [sym_assignment_expression] = STATE(1685), + [sym_compound_assignment_expr] = STATE(1685), + [sym_type_cast_expression] = STATE(1685), + [sym_return_expression] = STATE(1685), + [sym_yield_expression] = STATE(1685), + [sym_call_expression] = STATE(1685), + [sym_array_expression] = STATE(1685), + [sym_parenthesized_expression] = STATE(1685), + [sym_tuple_expression] = STATE(1685), + [sym_unit_expression] = STATE(1685), + [sym_struct_expression] = STATE(1685), + [sym_if_expression] = STATE(1685), + [sym_match_expression] = STATE(1685), + [sym_while_expression] = STATE(1685), + [sym_loop_expression] = STATE(1685), + [sym_for_expression] = STATE(1685), + [sym_const_block] = STATE(1685), + [sym_closure_expression] = STATE(1685), + [sym_closure_parameters] = STATE(125), + [sym_label] = STATE(3546), + [sym_break_expression] = STATE(1685), + [sym_continue_expression] = STATE(1685), + [sym_index_expression] = STATE(1685), + [sym_await_expression] = STATE(1685), + [sym_field_expression] = STATE(1618), + [sym_unsafe_block] = STATE(1685), + [sym_async_block] = STATE(1685), + [sym_try_block] = STATE(1685), + [sym_block] = STATE(1685), + [sym__literal] = STATE(1685), + [sym_string_literal] = STATE(1718), + [sym_boolean_literal] = STATE(1718), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(393), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_LBRACK] = ACTIONS(451), + [anon_sym_LBRACE] = ACTIONS(395), + [anon_sym_STAR] = ACTIONS(662), + [anon_sym_u8] = ACTIONS(399), + [anon_sym_i8] = ACTIONS(399), + [anon_sym_u16] = ACTIONS(399), + [anon_sym_i16] = ACTIONS(399), + [anon_sym_u32] = ACTIONS(399), + [anon_sym_i32] = ACTIONS(399), + [anon_sym_u64] = ACTIONS(399), + [anon_sym_i64] = ACTIONS(399), + [anon_sym_u128] = ACTIONS(399), + [anon_sym_i128] = ACTIONS(399), + [anon_sym_isize] = ACTIONS(399), + [anon_sym_usize] = ACTIONS(399), + [anon_sym_f32] = ACTIONS(399), + [anon_sym_f64] = ACTIONS(399), + [anon_sym_bool] = ACTIONS(399), + [anon_sym_str] = ACTIONS(399), + [anon_sym_char] = ACTIONS(399), + [anon_sym_DASH] = ACTIONS(662), + [anon_sym_COLON_COLON] = ACTIONS(401), + [anon_sym_BANG] = ACTIONS(662), + [anon_sym_AMP] = ACTIONS(664), [anon_sym_LT] = ACTIONS(31), [anon_sym_PIPE] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [anon_sym_async] = ACTIONS(405), + [anon_sym_break] = ACTIONS(407), + [anon_sym_const] = ACTIONS(409), + [anon_sym_continue] = ACTIONS(411), + [anon_sym_default] = ACTIONS(413), + [anon_sym_for] = ACTIONS(415), + [anon_sym_if] = ACTIONS(417), + [anon_sym_loop] = ACTIONS(419), + [anon_sym_match] = ACTIONS(421), + [anon_sym_return] = ACTIONS(423), + [anon_sym_static] = ACTIONS(425), + [anon_sym_union] = ACTIONS(413), + [anon_sym_unsafe] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_DOT_DOT] = ACTIONS(722), + [anon_sym_yield] = ACTIONS(431), + [anon_sym_move] = ACTIONS(433), + [anon_sym_try] = ACTIONS(435), + [sym_integer_literal] = ACTIONS(437), + [aux_sym_string_literal_token1] = ACTIONS(439), + [sym_char_literal] = ACTIONS(437), + [anon_sym_true] = ACTIONS(441), + [anon_sym_false] = ACTIONS(441), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(443), + [sym_super] = ACTIONS(445), + [sym_crate] = ACTIONS(445), + [sym_metavariable] = ACTIONS(447), + [sym_raw_string_literal] = ACTIONS(437), + [sym_float_literal] = ACTIONS(437), }, - [306] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1823), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(123), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(716), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(716), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(716), - [anon_sym_AMP] = ACTIONS(722), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(507), - [anon_sym_static] = ACTIONS(509), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(724), - [anon_sym_yield] = ACTIONS(511), - [anon_sym_move] = ACTIONS(513), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [289] = { + [sym_attribute_item] = STATE(311), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(2763), + [sym_variadic_parameter] = STATE(2763), + [sym_parameter] = STATE(2763), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2661), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(996), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1006), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1010), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, - [307] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), + [290] = { + [sym_attribute_item] = STATE(313), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(2917), + [sym_variadic_parameter] = STATE(2917), + [sym_parameter] = STATE(2917), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2534), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(1062), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1064), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1066), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [291] = { + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(904), + [anon_sym_macro_rules_BANG] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(904), + [anon_sym_LBRACK] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_QMARK] = ACTIONS(904), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym_DASH] = ACTIONS(906), + [anon_sym_EQ] = ACTIONS(906), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(902), + [anon_sym_DOT] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(906), + [anon_sym_POUND] = ACTIONS(900), + [anon_sym_PERCENT] = ACTIONS(906), + [anon_sym_CARET] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(906), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_PIPE] = ACTIONS(906), + [anon_sym_SQUOTE] = ACTIONS(902), + [anon_sym_as] = ACTIONS(906), + [anon_sym_async] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_fn] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_impl] = ACTIONS(902), + [anon_sym_let] = ACTIONS(902), + [anon_sym_loop] = ACTIONS(902), + [anon_sym_match] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_pub] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_static] = ACTIONS(902), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_trait] = ACTIONS(902), + [anon_sym_type] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_unsafe] = ACTIONS(902), + [anon_sym_use] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_extern] = ACTIONS(902), + [anon_sym_DOT_DOT_DOT] = ACTIONS(904), + [anon_sym_DOT_DOT] = ACTIONS(906), + [anon_sym_DOT_DOT_EQ] = ACTIONS(904), + [anon_sym_AMP_AMP] = ACTIONS(904), + [anon_sym_PIPE_PIPE] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(904), + [anon_sym_LT_LT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(906), + [anon_sym_PLUS_EQ] = ACTIONS(904), + [anon_sym_DASH_EQ] = ACTIONS(904), + [anon_sym_STAR_EQ] = ACTIONS(904), + [anon_sym_SLASH_EQ] = ACTIONS(904), + [anon_sym_PERCENT_EQ] = ACTIONS(904), + [anon_sym_AMP_EQ] = ACTIONS(904), + [anon_sym_PIPE_EQ] = ACTIONS(904), + [anon_sym_CARET_EQ] = ACTIONS(904), + [anon_sym_LT_LT_EQ] = ACTIONS(904), + [anon_sym_GT_GT_EQ] = ACTIONS(904), + [anon_sym_yield] = ACTIONS(902), + [anon_sym_move] = ACTIONS(902), + [anon_sym_try] = ACTIONS(902), + [sym_integer_literal] = ACTIONS(900), + [aux_sym_string_literal_token1] = ACTIONS(900), + [sym_char_literal] = ACTIONS(900), + [anon_sym_true] = ACTIONS(902), + [anon_sym_false] = ACTIONS(902), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(902), + [sym_super] = ACTIONS(902), + [sym_crate] = ACTIONS(902), + [sym_metavariable] = ACTIONS(900), + [sym_raw_string_literal] = ACTIONS(900), + [sym_float_literal] = ACTIONS(900), + }, + [292] = { + [sym_attribute_item] = STATE(312), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(2833), + [sym_variadic_parameter] = STATE(2833), + [sym_parameter] = STATE(2833), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2563), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(1068), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1070), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1072), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [293] = { + [sym_attribute_item] = STATE(312), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(2833), + [sym_variadic_parameter] = STATE(2833), + [sym_parameter] = STATE(2833), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2563), + [sym_bracketed_type] = STATE(3488), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3099), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2076), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2401), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1078), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1084), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1096), + [sym_crate] = ACTIONS(1096), + [sym_metavariable] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [294] = { + [sym_attribute_item] = STATE(312), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(2833), + [sym_variadic_parameter] = STATE(2833), + [sym_parameter] = STATE(2833), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2563), + [sym_bracketed_type] = STATE(3488), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3099), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2076), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2401), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1100), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1102), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1096), + [sym_crate] = ACTIONS(1096), + [sym_metavariable] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [295] = { + [sym_attribute_item] = STATE(312), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(2833), + [sym_variadic_parameter] = STATE(2833), + [sym_parameter] = STATE(2833), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2563), + [sym_bracketed_type] = STATE(3488), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3099), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2076), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2401), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1104), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1082), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1106), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1088), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1094), + [sym_super] = ACTIONS(1096), + [sym_crate] = ACTIONS(1096), + [sym_metavariable] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [296] = { + [sym_attribute_item] = STATE(309), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(3277), + [sym_variadic_parameter] = STATE(3277), + [sym_parameter] = STATE(3277), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2728), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(1108), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [297] = { + [sym_attribute_item] = STATE(309), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(3277), + [sym_variadic_parameter] = STATE(3277), + [sym_parameter] = STATE(3277), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2728), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(1112), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [298] = { + [sym_attribute_item] = STATE(309), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(3277), + [sym_variadic_parameter] = STATE(3277), + [sym_parameter] = STATE(3277), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2728), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(1114), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [299] = { + [sym_attribute_item] = STATE(309), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(3277), + [sym_variadic_parameter] = STATE(3277), + [sym_parameter] = STATE(3277), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2728), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(1116), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [300] = { + [sym_attribute_item] = STATE(309), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(3277), + [sym_variadic_parameter] = STATE(3277), + [sym_parameter] = STATE(3277), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2728), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(1118), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [301] = { + [sym_attribute_item] = STATE(309), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(3277), + [sym_variadic_parameter] = STATE(3277), + [sym_parameter] = STATE(3277), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2728), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [302] = { + [sym_attribute_item] = STATE(309), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(3277), + [sym_variadic_parameter] = STATE(3277), + [sym_parameter] = STATE(3277), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2728), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(1122), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [303] = { + [sym_attribute_item] = STATE(309), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(3277), + [sym_variadic_parameter] = STATE(3277), + [sym_parameter] = STATE(3277), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2728), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [304] = { + [sym_attribute_item] = STATE(309), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(3277), + [sym_variadic_parameter] = STATE(3277), + [sym_parameter] = STATE(3277), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2728), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_RPAREN] = ACTIONS(1126), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [305] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2659), + [sym_bracketed_type] = STATE(3488), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3099), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2076), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym_closure_expression] = STATE(2741), + [sym_closure_parameters] = STATE(132), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1128), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1096), + [sym_super] = ACTIONS(1096), + [sym_crate] = ACTIONS(1096), + [sym_metavariable] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [306] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2659), + [sym_bracketed_type] = STATE(3488), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3099), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2076), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym_closure_expression] = STATE(2741), + [sym_closure_parameters] = STATE(132), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1146), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1096), + [sym_super] = ACTIONS(1096), + [sym_crate] = ACTIONS(1096), + [sym_metavariable] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [307] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2659), + [sym_bracketed_type] = STATE(3488), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3099), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2076), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym_closure_expression] = STATE(2741), + [sym_closure_parameters] = STATE(132), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_RPAREN] = ACTIONS(1148), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1096), + [sym_super] = ACTIONS(1096), + [sym_crate] = ACTIONS(1096), + [sym_metavariable] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [308] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(486), - [sym_match_expression] = STATE(486), - [sym_while_expression] = STATE(486), - [sym_loop_expression] = STATE(486), - [sym_for_expression] = STATE(486), - [sym_const_block] = STATE(486), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3504), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(486), - [sym_async_block] = STATE(486), - [sym_try_block] = STATE(486), - [sym_block] = STATE(486), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_attribute_item] = STATE(309), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(3277), + [sym_variadic_parameter] = STATE(3277), + [sym_parameter] = STATE(3277), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2728), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(308), [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(912), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(914), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(916), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(918), - [anon_sym_if] = ACTIONS(920), - [anon_sym_loop] = ACTIONS(922), - [anon_sym_match] = ACTIONS(924), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(926), - [anon_sym_while] = ACTIONS(928), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(930), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1110), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_POUND] = ACTIONS(1018), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [309] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(3117), + [sym_variadic_parameter] = STATE(3117), + [sym_parameter] = STATE(3117), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2821), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(309), [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1150), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [310] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(310), [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [aux_sym_token_tree_pattern_repeat1] = STATE(310), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1152), + [anon_sym_SEMI] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1158), + [anon_sym_RPAREN] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(1163), + [anon_sym_RBRACK] = ACTIONS(1161), + [anon_sym_LBRACE] = ACTIONS(1166), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_COLON] = ACTIONS(1169), + [anon_sym_DOLLAR] = ACTIONS(1172), + [anon_sym_PLUS] = ACTIONS(1155), + [anon_sym_STAR] = ACTIONS(1155), + [anon_sym_QMARK] = ACTIONS(1155), + [anon_sym_u8] = ACTIONS(1152), + [anon_sym_i8] = ACTIONS(1152), + [anon_sym_u16] = ACTIONS(1152), + [anon_sym_i16] = ACTIONS(1152), + [anon_sym_u32] = ACTIONS(1152), + [anon_sym_i32] = ACTIONS(1152), + [anon_sym_u64] = ACTIONS(1152), + [anon_sym_i64] = ACTIONS(1152), + [anon_sym_u128] = ACTIONS(1152), + [anon_sym_i128] = ACTIONS(1152), + [anon_sym_isize] = ACTIONS(1152), + [anon_sym_usize] = ACTIONS(1152), + [anon_sym_f32] = ACTIONS(1152), + [anon_sym_f64] = ACTIONS(1152), + [anon_sym_bool] = ACTIONS(1152), + [anon_sym_str] = ACTIONS(1152), + [anon_sym_char] = ACTIONS(1152), + [anon_sym_SLASH] = ACTIONS(1169), + [anon_sym__] = ACTIONS(1169), + [anon_sym_BSLASH] = ACTIONS(1155), + [anon_sym_DASH] = ACTIONS(1169), + [anon_sym_EQ] = ACTIONS(1155), + [anon_sym_DASH_GT] = ACTIONS(1155), + [anon_sym_COMMA] = ACTIONS(1155), + [anon_sym_COLON_COLON] = ACTIONS(1155), + [anon_sym_BANG] = ACTIONS(1155), + [anon_sym_DOT] = ACTIONS(1155), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_AMP] = ACTIONS(1155), + [anon_sym_POUND] = ACTIONS(1155), + [anon_sym_PERCENT] = ACTIONS(1155), + [anon_sym_CARET] = ACTIONS(1155), + [anon_sym_LT] = ACTIONS(1155), + [anon_sym_GT] = ACTIONS(1155), + [anon_sym_PIPE] = ACTIONS(1155), + [anon_sym_TILDE] = ACTIONS(1155), + [anon_sym_SQUOTE] = ACTIONS(1152), + [anon_sym_as] = ACTIONS(1152), + [anon_sym_async] = ACTIONS(1152), + [anon_sym_await] = ACTIONS(1152), + [anon_sym_break] = ACTIONS(1152), + [anon_sym_const] = ACTIONS(1152), + [anon_sym_continue] = ACTIONS(1152), + [anon_sym_default] = ACTIONS(1152), + [anon_sym_enum] = ACTIONS(1152), + [anon_sym_fn] = ACTIONS(1152), + [anon_sym_for] = ACTIONS(1152), + [anon_sym_if] = ACTIONS(1152), + [anon_sym_impl] = ACTIONS(1152), + [anon_sym_let] = ACTIONS(1152), + [anon_sym_loop] = ACTIONS(1152), + [anon_sym_match] = ACTIONS(1152), + [anon_sym_mod] = ACTIONS(1152), + [anon_sym_pub] = ACTIONS(1152), + [anon_sym_return] = ACTIONS(1152), + [anon_sym_static] = ACTIONS(1152), + [anon_sym_struct] = ACTIONS(1152), + [anon_sym_trait] = ACTIONS(1152), + [anon_sym_type] = ACTIONS(1152), + [anon_sym_union] = ACTIONS(1152), + [anon_sym_unsafe] = ACTIONS(1152), + [anon_sym_use] = ACTIONS(1152), + [anon_sym_where] = ACTIONS(1152), + [anon_sym_while] = ACTIONS(1152), + [sym_mutable_specifier] = ACTIONS(1152), + [sym_integer_literal] = ACTIONS(1175), + [aux_sym_string_literal_token1] = ACTIONS(1178), + [sym_char_literal] = ACTIONS(1175), + [anon_sym_true] = ACTIONS(1181), + [anon_sym_false] = ACTIONS(1181), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1152), + [sym_super] = ACTIONS(1152), + [sym_crate] = ACTIONS(1152), + [sym_metavariable] = ACTIONS(1184), + [sym_raw_string_literal] = ACTIONS(1175), + [sym_float_literal] = ACTIONS(1175), }, [311] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2802), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1396), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1510), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(145), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(2870), + [sym_variadic_parameter] = STATE(2870), + [sym_parameter] = STATE(2870), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2546), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(311), [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(475), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_u8] = ACTIONS(477), - [anon_sym_i8] = ACTIONS(477), - [anon_sym_u16] = ACTIONS(477), - [anon_sym_i16] = ACTIONS(477), - [anon_sym_u32] = ACTIONS(477), - [anon_sym_i32] = ACTIONS(477), - [anon_sym_u64] = ACTIONS(477), - [anon_sym_i64] = ACTIONS(477), - [anon_sym_u128] = ACTIONS(477), - [anon_sym_i128] = ACTIONS(477), - [anon_sym_isize] = ACTIONS(477), - [anon_sym_usize] = ACTIONS(477), - [anon_sym_f32] = ACTIONS(477), - [anon_sym_f64] = ACTIONS(477), - [anon_sym_bool] = ACTIONS(477), - [anon_sym_str] = ACTIONS(477), - [anon_sym_char] = ACTIONS(477), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_COLON_COLON] = ACTIONS(479), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(658), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1187), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(483), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_default] = ACTIONS(487), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(489), - [anon_sym_static] = ACTIONS(491), - [anon_sym_union] = ACTIONS(487), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(714), - [anon_sym_yield] = ACTIONS(493), - [anon_sym_move] = ACTIONS(495), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(497), - [sym_super] = ACTIONS(499), - [sym_crate] = ACTIONS(499), - [sym_metavariable] = ACTIONS(501), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [312] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(2886), + [sym_variadic_parameter] = STATE(2886), + [sym_parameter] = STATE(2886), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2545), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(312), [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1189), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [313] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_self_parameter] = STATE(2874), + [sym_variadic_parameter] = STATE(2874), + [sym_parameter] = STATE(2874), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2553), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(2852), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3141), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(313), [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1191), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1016), [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1042), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1046), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1056), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [314] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [315] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1738), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [316] = { - [sym_bracketed_type] = STATE(3383), - [sym_generic_function] = STATE(1138), - [sym_generic_type_with_turbofish] = STATE(2740), - [sym__expression_except_range] = STATE(1086), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1264), - [sym_scoped_identifier] = STATE(1276), - [sym_scoped_type_identifier_in_expression_position] = STATE(3084), - [sym_range_expression] = STATE(1147), - [sym_unary_expression] = STATE(1138), - [sym_try_expression] = STATE(1138), - [sym_reference_expression] = STATE(1138), - [sym_binary_expression] = STATE(1138), - [sym_assignment_expression] = STATE(1138), - [sym_compound_assignment_expr] = STATE(1138), - [sym_type_cast_expression] = STATE(1138), - [sym_return_expression] = STATE(1138), - [sym_yield_expression] = STATE(1138), - [sym_call_expression] = STATE(1138), - [sym_array_expression] = STATE(1138), - [sym_parenthesized_expression] = STATE(1138), - [sym_tuple_expression] = STATE(1138), - [sym_unit_expression] = STATE(1138), - [sym_struct_expression] = STATE(1138), - [sym_if_expression] = STATE(1138), - [sym_match_expression] = STATE(1138), - [sym_while_expression] = STATE(1138), - [sym_loop_expression] = STATE(1138), - [sym_for_expression] = STATE(1138), - [sym_const_block] = STATE(1138), - [sym_closure_expression] = STATE(1138), - [sym_closure_parameters] = STATE(135), - [sym_label] = STATE(3456), - [sym_break_expression] = STATE(1138), - [sym_continue_expression] = STATE(1138), - [sym_index_expression] = STATE(1138), - [sym_await_expression] = STATE(1138), - [sym_field_expression] = STATE(1046), - [sym_unsafe_block] = STATE(1138), - [sym_async_block] = STATE(1138), - [sym_try_block] = STATE(1138), - [sym_block] = STATE(1138), - [sym__literal] = STATE(1138), - [sym_string_literal] = STATE(1273), - [sym_boolean_literal] = STATE(1273), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(329), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(333), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_COLON_COLON] = ACTIONS(25), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(341), - [anon_sym_break] = ACTIONS(39), - [anon_sym_const] = ACTIONS(343), - [anon_sym_continue] = ACTIONS(43), - [anon_sym_default] = ACTIONS(345), - [anon_sym_for] = ACTIONS(347), - [anon_sym_if] = ACTIONS(349), - [anon_sym_loop] = ACTIONS(351), - [anon_sym_match] = ACTIONS(353), - [anon_sym_return] = ACTIONS(67), - [anon_sym_static] = ACTIONS(355), - [anon_sym_union] = ACTIONS(345), - [anon_sym_unsafe] = ACTIONS(357), - [anon_sym_while] = ACTIONS(359), - [anon_sym_DOT_DOT] = ACTIONS(87), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(361), - [sym_integer_literal] = ACTIONS(95), - [aux_sym_string_literal_token1] = ACTIONS(97), - [sym_char_literal] = ACTIONS(95), - [anon_sym_true] = ACTIONS(99), - [anon_sym_false] = ACTIONS(99), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), - [sym_raw_string_literal] = ACTIONS(95), - [sym_float_literal] = ACTIONS(95), - }, - [317] = { - [sym_bracketed_type] = STATE(3391), - [sym_generic_function] = STATE(1632), - [sym_generic_type_with_turbofish] = STATE(2865), - [sym__expression_except_range] = STATE(1534), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(1642), - [sym_scoped_identifier] = STATE(1531), - [sym_scoped_type_identifier_in_expression_position] = STATE(3139), - [sym_range_expression] = STATE(1636), - [sym_unary_expression] = STATE(1632), - [sym_try_expression] = STATE(1632), - [sym_reference_expression] = STATE(1632), - [sym_binary_expression] = STATE(1632), - [sym_assignment_expression] = STATE(1632), - [sym_compound_assignment_expr] = STATE(1632), - [sym_type_cast_expression] = STATE(1632), - [sym_return_expression] = STATE(1632), - [sym_yield_expression] = STATE(1632), - [sym_call_expression] = STATE(1632), - [sym_array_expression] = STATE(1632), - [sym_parenthesized_expression] = STATE(1632), - [sym_tuple_expression] = STATE(1632), - [sym_unit_expression] = STATE(1632), - [sym_struct_expression] = STATE(1632), - [sym_if_expression] = STATE(1632), - [sym_match_expression] = STATE(1632), - [sym_while_expression] = STATE(1632), - [sym_loop_expression] = STATE(1632), - [sym_for_expression] = STATE(1632), - [sym_const_block] = STATE(1632), - [sym_closure_expression] = STATE(1632), - [sym_closure_parameters] = STATE(152), - [sym_label] = STATE(3499), - [sym_break_expression] = STATE(1632), - [sym_continue_expression] = STATE(1632), - [sym_index_expression] = STATE(1632), - [sym_await_expression] = STATE(1632), - [sym_field_expression] = STATE(1541), - [sym_unsafe_block] = STATE(1632), - [sym_async_block] = STATE(1632), - [sym_try_block] = STATE(1632), - [sym_block] = STATE(1632), - [sym__literal] = STATE(1632), - [sym_string_literal] = STATE(1617), - [sym_boolean_literal] = STATE(1617), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(461), - [anon_sym_LBRACK] = ACTIONS(465), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_STAR] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(399), - [anon_sym_i8] = ACTIONS(399), - [anon_sym_u16] = ACTIONS(399), - [anon_sym_i16] = ACTIONS(399), - [anon_sym_u32] = ACTIONS(399), - [anon_sym_i32] = ACTIONS(399), - [anon_sym_u64] = ACTIONS(399), - [anon_sym_i64] = ACTIONS(399), - [anon_sym_u128] = ACTIONS(399), - [anon_sym_i128] = ACTIONS(399), - [anon_sym_isize] = ACTIONS(399), - [anon_sym_usize] = ACTIONS(399), - [anon_sym_f32] = ACTIONS(399), - [anon_sym_f64] = ACTIONS(399), - [anon_sym_bool] = ACTIONS(399), - [anon_sym_str] = ACTIONS(399), - [anon_sym_char] = ACTIONS(399), - [anon_sym_DASH] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(401), - [anon_sym_BANG] = ACTIONS(676), - [anon_sym_AMP] = ACTIONS(678), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(35), - [anon_sym_async] = ACTIONS(405), - [anon_sym_break] = ACTIONS(449), - [anon_sym_const] = ACTIONS(409), - [anon_sym_continue] = ACTIONS(411), - [anon_sym_default] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_if] = ACTIONS(451), - [anon_sym_loop] = ACTIONS(417), - [anon_sym_match] = ACTIONS(419), - [anon_sym_return] = ACTIONS(453), - [anon_sym_static] = ACTIONS(455), - [anon_sym_union] = ACTIONS(413), - [anon_sym_unsafe] = ACTIONS(425), - [anon_sym_while] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(682), - [anon_sym_yield] = ACTIONS(457), - [anon_sym_move] = ACTIONS(459), - [anon_sym_try] = ACTIONS(433), - [sym_integer_literal] = ACTIONS(435), - [aux_sym_string_literal_token1] = ACTIONS(437), - [sym_char_literal] = ACTIONS(435), - [anon_sym_true] = ACTIONS(439), - [anon_sym_false] = ACTIONS(439), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(441), - [sym_super] = ACTIONS(443), - [sym_crate] = ACTIONS(443), - [sym_metavariable] = ACTIONS(445), - [sym_raw_string_literal] = ACTIONS(435), - [sym_float_literal] = ACTIONS(435), + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [aux_sym_token_tree_pattern_repeat1] = STATE(328), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1203), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), + }, + [315] = { + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), + [aux_sym_token_tree_pattern_repeat1] = STATE(322), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1203), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), + }, + [316] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2752), + [sym_bracketed_type] = STATE(3489), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3094), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2376), + [sym_scoped_identifier] = STATE(2134), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2681), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_RBRACK] = ACTIONS(1221), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1235), + [sym_super] = ACTIONS(1235), + [sym_crate] = ACTIONS(1235), + [sym_metavariable] = ACTIONS(1237), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), + }, + [317] = { + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [aux_sym_token_tree_pattern_repeat1] = STATE(320), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1239), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [318] = { + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(318), [sym_block_comment] = STATE(318), - [sym_identifier] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_macro_rules_BANG] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_u8] = ACTIONS(988), - [anon_sym_i8] = ACTIONS(988), - [anon_sym_u16] = ACTIONS(988), - [anon_sym_i16] = ACTIONS(988), - [anon_sym_u32] = ACTIONS(988), - [anon_sym_i32] = ACTIONS(988), - [anon_sym_u64] = ACTIONS(988), - [anon_sym_i64] = ACTIONS(988), - [anon_sym_u128] = ACTIONS(988), - [anon_sym_i128] = ACTIONS(988), - [anon_sym_isize] = ACTIONS(988), - [anon_sym_usize] = ACTIONS(988), - [anon_sym_f32] = ACTIONS(988), - [anon_sym_f64] = ACTIONS(988), - [anon_sym_bool] = ACTIONS(988), - [anon_sym_str] = ACTIONS(988), - [anon_sym_char] = ACTIONS(988), - [anon_sym_SLASH] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_EQ] = ACTIONS(992), - [anon_sym_COLON_COLON] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(988), - [anon_sym_DOT] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(992), - [anon_sym_POUND] = ACTIONS(986), - [anon_sym_PERCENT] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LT] = ACTIONS(992), - [anon_sym_GT] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(992), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_as] = ACTIONS(992), - [anon_sym_async] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_fn] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_impl] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_mod] = ACTIONS(988), - [anon_sym_pub] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_static] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_trait] = ACTIONS(988), - [anon_sym_type] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_unsafe] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(992), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_yield] = ACTIONS(988), - [anon_sym_move] = ACTIONS(988), - [anon_sym_try] = ACTIONS(988), - [sym_integer_literal] = ACTIONS(986), - [aux_sym_string_literal_token1] = ACTIONS(986), - [sym_char_literal] = ACTIONS(986), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(988), - [sym_super] = ACTIONS(988), - [sym_crate] = ACTIONS(988), - [sym_metavariable] = ACTIONS(986), - [sym_raw_string_literal] = ACTIONS(986), - [sym_float_literal] = ACTIONS(986), + [aux_sym_token_tree_pattern_repeat1] = STATE(321), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(1239), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [319] = { - [sym_attribute_item] = STATE(355), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(2926), - [sym_variadic_parameter] = STATE(2926), - [sym_parameter] = STATE(2926), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2587), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(319), [sym_block_comment] = STATE(319), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1030), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1034), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_pattern_repeat1] = STATE(324), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1239), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [320] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(2812), - [sym_variadic_parameter] = STATE(2812), - [sym_parameter] = STATE(2812), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3444), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3445), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2381), - [sym_scoped_identifier] = STATE(2069), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2390), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(320), [sym_block_comment] = STATE(320), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1094), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1104), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_pattern_repeat1] = STATE(310), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1241), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [321] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(2812), - [sym_variadic_parameter] = STATE(2812), - [sym_parameter] = STATE(2812), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3444), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3445), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2381), - [sym_scoped_identifier] = STATE(2069), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2390), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(321), [sym_block_comment] = STATE(321), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1112), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1104), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_pattern_repeat1] = STATE(310), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(1241), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [322] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(2812), - [sym_variadic_parameter] = STATE(2812), - [sym_parameter] = STATE(2812), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(322), [sym_block_comment] = STATE(322), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1116), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1118), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_pattern_repeat1] = STATE(310), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [323] = { - [sym_attribute_item] = STATE(357), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(2812), - [sym_variadic_parameter] = STATE(2812), - [sym_parameter] = STATE(2812), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2524), - [sym_bracketed_type] = STATE(3444), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3445), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2381), - [sym_scoped_identifier] = STATE(2069), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2390), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(323), [sym_block_comment] = STATE(323), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1092), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1122), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1098), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1104), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_pattern_repeat1] = STATE(325), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1245), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [324] = { - [sym_attribute_item] = STATE(356), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(2730), - [sym_variadic_parameter] = STATE(2730), - [sym_parameter] = STATE(2730), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2674), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(324), [sym_block_comment] = STATE(324), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1124), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1126), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1128), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_pattern_repeat1] = STATE(310), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1241), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [325] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(325), [sym_block_comment] = STATE(325), - [aux_sym_token_tree_pattern_repeat1] = STATE(325), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1130), - [anon_sym_SEMI] = ACTIONS(1133), - [anon_sym_LPAREN] = ACTIONS(1136), - [anon_sym_RPAREN] = ACTIONS(1139), - [anon_sym_LBRACK] = ACTIONS(1141), - [anon_sym_RBRACK] = ACTIONS(1139), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_RBRACE] = ACTIONS(1139), - [anon_sym_COLON] = ACTIONS(1147), - [anon_sym_DOLLAR] = ACTIONS(1150), - [anon_sym_PLUS] = ACTIONS(1133), - [anon_sym_STAR] = ACTIONS(1133), - [anon_sym_QMARK] = ACTIONS(1133), - [anon_sym_u8] = ACTIONS(1130), - [anon_sym_i8] = ACTIONS(1130), - [anon_sym_u16] = ACTIONS(1130), - [anon_sym_i16] = ACTIONS(1130), - [anon_sym_u32] = ACTIONS(1130), - [anon_sym_i32] = ACTIONS(1130), - [anon_sym_u64] = ACTIONS(1130), - [anon_sym_i64] = ACTIONS(1130), - [anon_sym_u128] = ACTIONS(1130), - [anon_sym_i128] = ACTIONS(1130), - [anon_sym_isize] = ACTIONS(1130), - [anon_sym_usize] = ACTIONS(1130), - [anon_sym_f32] = ACTIONS(1130), - [anon_sym_f64] = ACTIONS(1130), - [anon_sym_bool] = ACTIONS(1130), - [anon_sym_str] = ACTIONS(1130), - [anon_sym_char] = ACTIONS(1130), - [anon_sym_SLASH] = ACTIONS(1147), - [anon_sym__] = ACTIONS(1147), - [anon_sym_BSLASH] = ACTIONS(1133), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_EQ] = ACTIONS(1133), - [anon_sym_DASH_GT] = ACTIONS(1133), - [anon_sym_COMMA] = ACTIONS(1133), - [anon_sym_COLON_COLON] = ACTIONS(1133), - [anon_sym_BANG] = ACTIONS(1133), - [anon_sym_DOT] = ACTIONS(1133), - [anon_sym_AT] = ACTIONS(1133), - [anon_sym_AMP] = ACTIONS(1133), - [anon_sym_POUND] = ACTIONS(1133), - [anon_sym_PERCENT] = ACTIONS(1133), - [anon_sym_CARET] = ACTIONS(1133), - [anon_sym_LT] = ACTIONS(1133), - [anon_sym_GT] = ACTIONS(1133), - [anon_sym_PIPE] = ACTIONS(1133), - [anon_sym_TILDE] = ACTIONS(1133), - [anon_sym_SQUOTE] = ACTIONS(1130), - [anon_sym_as] = ACTIONS(1130), - [anon_sym_async] = ACTIONS(1130), - [anon_sym_await] = ACTIONS(1130), - [anon_sym_break] = ACTIONS(1130), - [anon_sym_const] = ACTIONS(1130), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_default] = ACTIONS(1130), - [anon_sym_enum] = ACTIONS(1130), - [anon_sym_fn] = ACTIONS(1130), - [anon_sym_for] = ACTIONS(1130), - [anon_sym_if] = ACTIONS(1130), - [anon_sym_impl] = ACTIONS(1130), - [anon_sym_let] = ACTIONS(1130), - [anon_sym_loop] = ACTIONS(1130), - [anon_sym_match] = ACTIONS(1130), - [anon_sym_mod] = ACTIONS(1130), - [anon_sym_pub] = ACTIONS(1130), - [anon_sym_return] = ACTIONS(1130), - [anon_sym_static] = ACTIONS(1130), - [anon_sym_struct] = ACTIONS(1130), - [anon_sym_trait] = ACTIONS(1130), - [anon_sym_type] = ACTIONS(1130), - [anon_sym_union] = ACTIONS(1130), - [anon_sym_unsafe] = ACTIONS(1130), - [anon_sym_use] = ACTIONS(1130), - [anon_sym_where] = ACTIONS(1130), - [anon_sym_while] = ACTIONS(1130), - [sym_mutable_specifier] = ACTIONS(1130), - [sym_integer_literal] = ACTIONS(1153), - [aux_sym_string_literal_token1] = ACTIONS(1156), - [sym_char_literal] = ACTIONS(1153), - [anon_sym_true] = ACTIONS(1159), - [anon_sym_false] = ACTIONS(1159), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1130), - [sym_super] = ACTIONS(1130), - [sym_crate] = ACTIONS(1130), - [sym_metavariable] = ACTIONS(1162), - [sym_raw_string_literal] = ACTIONS(1153), - [sym_float_literal] = ACTIONS(1153), + [aux_sym_token_tree_pattern_repeat1] = STATE(310), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_RPAREN] = ACTIONS(1247), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [326] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(3106), - [sym_variadic_parameter] = STATE(3106), - [sym_parameter] = STATE(3106), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(326), [sym_block_comment] = STATE(326), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1165), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_repeat1] = STATE(326), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1249), + [anon_sym_SEMI] = ACTIONS(1252), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_RPAREN] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1260), + [anon_sym_RBRACK] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1263), + [anon_sym_RBRACE] = ACTIONS(1258), + [anon_sym_COLON] = ACTIONS(1266), + [anon_sym_DOLLAR] = ACTIONS(1269), + [anon_sym_PLUS] = ACTIONS(1252), + [anon_sym_STAR] = ACTIONS(1252), + [anon_sym_QMARK] = ACTIONS(1252), + [anon_sym_u8] = ACTIONS(1249), + [anon_sym_i8] = ACTIONS(1249), + [anon_sym_u16] = ACTIONS(1249), + [anon_sym_i16] = ACTIONS(1249), + [anon_sym_u32] = ACTIONS(1249), + [anon_sym_i32] = ACTIONS(1249), + [anon_sym_u64] = ACTIONS(1249), + [anon_sym_i64] = ACTIONS(1249), + [anon_sym_u128] = ACTIONS(1249), + [anon_sym_i128] = ACTIONS(1249), + [anon_sym_isize] = ACTIONS(1249), + [anon_sym_usize] = ACTIONS(1249), + [anon_sym_f32] = ACTIONS(1249), + [anon_sym_f64] = ACTIONS(1249), + [anon_sym_bool] = ACTIONS(1249), + [anon_sym_str] = ACTIONS(1249), + [anon_sym_char] = ACTIONS(1249), + [anon_sym_SLASH] = ACTIONS(1266), + [anon_sym__] = ACTIONS(1266), + [anon_sym_BSLASH] = ACTIONS(1252), + [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_DASH_GT] = ACTIONS(1252), + [anon_sym_COMMA] = ACTIONS(1252), + [anon_sym_COLON_COLON] = ACTIONS(1252), + [anon_sym_BANG] = ACTIONS(1252), + [anon_sym_DOT] = ACTIONS(1252), + [anon_sym_AT] = ACTIONS(1252), + [anon_sym_AMP] = ACTIONS(1252), + [anon_sym_POUND] = ACTIONS(1252), + [anon_sym_PERCENT] = ACTIONS(1252), + [anon_sym_CARET] = ACTIONS(1252), + [anon_sym_LT] = ACTIONS(1252), + [anon_sym_GT] = ACTIONS(1252), + [anon_sym_PIPE] = ACTIONS(1252), + [anon_sym_TILDE] = ACTIONS(1252), + [anon_sym_SQUOTE] = ACTIONS(1249), + [anon_sym_as] = ACTIONS(1249), + [anon_sym_async] = ACTIONS(1249), + [anon_sym_await] = ACTIONS(1249), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_const] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_default] = ACTIONS(1249), + [anon_sym_enum] = ACTIONS(1249), + [anon_sym_fn] = ACTIONS(1249), + [anon_sym_for] = ACTIONS(1249), + [anon_sym_if] = ACTIONS(1249), + [anon_sym_impl] = ACTIONS(1249), + [anon_sym_let] = ACTIONS(1249), + [anon_sym_loop] = ACTIONS(1249), + [anon_sym_match] = ACTIONS(1249), + [anon_sym_mod] = ACTIONS(1249), + [anon_sym_pub] = ACTIONS(1249), + [anon_sym_return] = ACTIONS(1249), + [anon_sym_static] = ACTIONS(1249), + [anon_sym_struct] = ACTIONS(1249), + [anon_sym_trait] = ACTIONS(1249), + [anon_sym_type] = ACTIONS(1249), + [anon_sym_union] = ACTIONS(1249), + [anon_sym_unsafe] = ACTIONS(1249), + [anon_sym_use] = ACTIONS(1249), + [anon_sym_where] = ACTIONS(1249), + [anon_sym_while] = ACTIONS(1249), + [sym_mutable_specifier] = ACTIONS(1249), + [sym_integer_literal] = ACTIONS(1272), + [aux_sym_string_literal_token1] = ACTIONS(1275), + [sym_char_literal] = ACTIONS(1272), + [anon_sym_true] = ACTIONS(1278), + [anon_sym_false] = ACTIONS(1278), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1249), + [sym_super] = ACTIONS(1249), + [sym_crate] = ACTIONS(1249), + [sym_metavariable] = ACTIONS(1281), + [sym_raw_string_literal] = ACTIONS(1272), + [sym_float_literal] = ACTIONS(1272), }, [327] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(3106), - [sym_variadic_parameter] = STATE(3106), - [sym_parameter] = STATE(3106), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(327), [sym_block_comment] = STATE(327), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_pattern_repeat1] = STATE(310), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(1243), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [328] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(3106), - [sym_variadic_parameter] = STATE(3106), - [sym_parameter] = STATE(3106), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(328), [sym_block_comment] = STATE(328), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_pattern_repeat1] = STATE(310), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [329] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(3106), - [sym_variadic_parameter] = STATE(3106), - [sym_parameter] = STATE(3106), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym__token_pattern] = STATE(412), + [sym_token_tree_pattern] = STATE(410), + [sym_token_binding_pattern] = STATE(410), + [sym_token_repetition_pattern] = STATE(410), + [sym__literal] = STATE(410), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(329), [sym_block_comment] = STATE(329), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_pattern_repeat1] = STATE(327), + [aux_sym__non_special_token_repeat1] = STATE(393), + [sym_identifier] = ACTIONS(1193), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(1203), + [anon_sym_LBRACE] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1207), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1193), + [anon_sym_i8] = ACTIONS(1193), + [anon_sym_u16] = ACTIONS(1193), + [anon_sym_i16] = ACTIONS(1193), + [anon_sym_u32] = ACTIONS(1193), + [anon_sym_i32] = ACTIONS(1193), + [anon_sym_u64] = ACTIONS(1193), + [anon_sym_i64] = ACTIONS(1193), + [anon_sym_u128] = ACTIONS(1193), + [anon_sym_i128] = ACTIONS(1193), + [anon_sym_isize] = ACTIONS(1193), + [anon_sym_usize] = ACTIONS(1193), + [anon_sym_f32] = ACTIONS(1193), + [anon_sym_f64] = ACTIONS(1193), + [anon_sym_bool] = ACTIONS(1193), + [anon_sym_str] = ACTIONS(1193), + [anon_sym_char] = ACTIONS(1193), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1193), + [anon_sym_as] = ACTIONS(1193), + [anon_sym_async] = ACTIONS(1193), + [anon_sym_await] = ACTIONS(1193), + [anon_sym_break] = ACTIONS(1193), + [anon_sym_const] = ACTIONS(1193), + [anon_sym_continue] = ACTIONS(1193), + [anon_sym_default] = ACTIONS(1193), + [anon_sym_enum] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1193), + [anon_sym_for] = ACTIONS(1193), + [anon_sym_if] = ACTIONS(1193), + [anon_sym_impl] = ACTIONS(1193), + [anon_sym_let] = ACTIONS(1193), + [anon_sym_loop] = ACTIONS(1193), + [anon_sym_match] = ACTIONS(1193), + [anon_sym_mod] = ACTIONS(1193), + [anon_sym_pub] = ACTIONS(1193), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_static] = ACTIONS(1193), + [anon_sym_struct] = ACTIONS(1193), + [anon_sym_trait] = ACTIONS(1193), + [anon_sym_type] = ACTIONS(1193), + [anon_sym_union] = ACTIONS(1193), + [anon_sym_unsafe] = ACTIONS(1193), + [anon_sym_use] = ACTIONS(1193), + [anon_sym_where] = ACTIONS(1193), + [anon_sym_while] = ACTIONS(1193), + [sym_mutable_specifier] = ACTIONS(1193), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1193), + [sym_super] = ACTIONS(1193), + [sym_crate] = ACTIONS(1193), + [sym_metavariable] = ACTIONS(1215), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [330] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(3106), - [sym_variadic_parameter] = STATE(3106), - [sym_parameter] = STATE(3106), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(330), [sym_block_comment] = STATE(330), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1284), + [anon_sym_SEMI] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1290), + [anon_sym_RPAREN] = ACTIONS(1293), + [anon_sym_LBRACK] = ACTIONS(1295), + [anon_sym_RBRACK] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(1298), + [anon_sym_RBRACE] = ACTIONS(1293), + [anon_sym_COLON] = ACTIONS(1301), + [anon_sym_DOLLAR] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1287), + [anon_sym_u8] = ACTIONS(1284), + [anon_sym_i8] = ACTIONS(1284), + [anon_sym_u16] = ACTIONS(1284), + [anon_sym_i16] = ACTIONS(1284), + [anon_sym_u32] = ACTIONS(1284), + [anon_sym_i32] = ACTIONS(1284), + [anon_sym_u64] = ACTIONS(1284), + [anon_sym_i64] = ACTIONS(1284), + [anon_sym_u128] = ACTIONS(1284), + [anon_sym_i128] = ACTIONS(1284), + [anon_sym_isize] = ACTIONS(1284), + [anon_sym_usize] = ACTIONS(1284), + [anon_sym_f32] = ACTIONS(1284), + [anon_sym_f64] = ACTIONS(1284), + [anon_sym_bool] = ACTIONS(1284), + [anon_sym_str] = ACTIONS(1284), + [anon_sym_char] = ACTIONS(1284), + [anon_sym_SLASH] = ACTIONS(1301), + [anon_sym__] = ACTIONS(1301), + [anon_sym_BSLASH] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1301), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_DASH_GT] = ACTIONS(1287), + [anon_sym_COMMA] = ACTIONS(1287), + [anon_sym_COLON_COLON] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1287), + [anon_sym_DOT] = ACTIONS(1287), + [anon_sym_AT] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_POUND] = ACTIONS(1287), + [anon_sym_PERCENT] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_TILDE] = ACTIONS(1287), + [anon_sym_SQUOTE] = ACTIONS(1284), + [anon_sym_as] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_await] = ACTIONS(1284), + [anon_sym_break] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_continue] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1284), + [anon_sym_enum] = ACTIONS(1284), + [anon_sym_fn] = ACTIONS(1284), + [anon_sym_for] = ACTIONS(1284), + [anon_sym_if] = ACTIONS(1284), + [anon_sym_impl] = ACTIONS(1284), + [anon_sym_let] = ACTIONS(1284), + [anon_sym_loop] = ACTIONS(1284), + [anon_sym_match] = ACTIONS(1284), + [anon_sym_mod] = ACTIONS(1284), + [anon_sym_pub] = ACTIONS(1284), + [anon_sym_return] = ACTIONS(1284), + [anon_sym_static] = ACTIONS(1284), + [anon_sym_struct] = ACTIONS(1284), + [anon_sym_trait] = ACTIONS(1284), + [anon_sym_type] = ACTIONS(1284), + [anon_sym_union] = ACTIONS(1284), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_use] = ACTIONS(1284), + [anon_sym_where] = ACTIONS(1284), + [anon_sym_while] = ACTIONS(1284), + [sym_mutable_specifier] = ACTIONS(1284), + [sym_integer_literal] = ACTIONS(1307), + [aux_sym_string_literal_token1] = ACTIONS(1310), + [sym_char_literal] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(1313), + [anon_sym_false] = ACTIONS(1313), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1284), + [sym_super] = ACTIONS(1284), + [sym_crate] = ACTIONS(1284), + [sym_raw_string_literal] = ACTIONS(1307), + [sym_float_literal] = ACTIONS(1307), }, [331] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(3106), - [sym_variadic_parameter] = STATE(3106), - [sym_parameter] = STATE(3106), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(331), [sym_block_comment] = STATE(331), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_repeat1] = STATE(326), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [332] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(3106), - [sym_variadic_parameter] = STATE(3106), - [sym_parameter] = STATE(3106), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(332), [sym_block_comment] = STATE(332), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_repeat1] = STATE(326), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_RBRACK] = ACTIONS(1330), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [333] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(3106), - [sym_variadic_parameter] = STATE(3106), - [sym_parameter] = STATE(3106), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3488), + [sym_lifetime] = STATE(804), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3099), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2076), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2086), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(333), [sym_block_comment] = STATE(333), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1332), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1096), + [sym_super] = ACTIONS(1096), + [sym_crate] = ACTIONS(1096), + [sym_metavariable] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [334] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2654), - [sym_bracketed_type] = STATE(3444), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3445), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2381), - [sym_scoped_identifier] = STATE(2069), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym_closure_expression] = STATE(2882), - [sym_closure_parameters] = STATE(131), - [sym__pattern] = STATE(2636), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(334), [sym_block_comment] = STATE(334), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1183), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1187), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1197), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1106), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(385), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1340), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [335] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2654), - [sym_bracketed_type] = STATE(3444), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3445), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2381), - [sym_scoped_identifier] = STATE(2069), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym_closure_expression] = STATE(2882), - [sym_closure_parameters] = STATE(131), - [sym__pattern] = STATE(2636), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(3488), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3099), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2076), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2068), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(335), [sym_block_comment] = STATE(335), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1187), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1197), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1106), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1096), + [sym_super] = ACTIONS(1096), + [sym_crate] = ACTIONS(1096), + [sym_metavariable] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [336] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(3106), - [sym_variadic_parameter] = STATE(3106), - [sym_parameter] = STATE(3106), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(336), [sym_block_comment] = STATE(336), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1356), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [337] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2654), - [sym_bracketed_type] = STATE(3444), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3445), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2381), - [sym_scoped_identifier] = STATE(2069), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym_closure_expression] = STATE(2882), - [sym_closure_parameters] = STATE(131), - [sym__pattern] = STATE(2636), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(3489), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3094), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2376), + [sym_scoped_identifier] = STATE(2134), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2068), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(337), [sym_block_comment] = STATE(337), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1203), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1187), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1197), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1106), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1235), + [sym_super] = ACTIONS(1235), + [sym_crate] = ACTIONS(1235), + [sym_metavariable] = ACTIONS(1237), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [338] = { - [sym_attribute_item] = STATE(358), - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(3106), - [sym_variadic_parameter] = STATE(3106), - [sym_parameter] = STATE(3106), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), [sym_line_comment] = STATE(338), [sym_block_comment] = STATE(338), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1167), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_POUND] = ACTIONS(1042), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(1358), + [anon_sym_SEMI] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_RPAREN] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_RBRACK] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_RBRACE] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u128] = ACTIONS(1358), + [anon_sym_i128] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_str] = ACTIONS(1358), + [anon_sym_char] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_COMMA] = ACTIONS(1360), + [anon_sym_COLON_COLON] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_as] = ACTIONS(1358), + [anon_sym_async] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_loop] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_unsafe] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_else] = ACTIONS(1358), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1360), + [anon_sym_DOT_DOT] = ACTIONS(1358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), + [anon_sym_STAR_EQ] = ACTIONS(1360), + [anon_sym_SLASH_EQ] = ACTIONS(1360), + [anon_sym_PERCENT_EQ] = ACTIONS(1360), + [anon_sym_AMP_EQ] = ACTIONS(1360), + [anon_sym_PIPE_EQ] = ACTIONS(1360), + [anon_sym_CARET_EQ] = ACTIONS(1360), + [anon_sym_LT_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_GT_EQ] = ACTIONS(1360), + [anon_sym_yield] = ACTIONS(1358), + [anon_sym_move] = ACTIONS(1358), + [anon_sym_try] = ACTIONS(1358), + [sym_integer_literal] = ACTIONS(1360), + [aux_sym_string_literal_token1] = ACTIONS(1360), + [sym_char_literal] = ACTIONS(1360), + [anon_sym_true] = ACTIONS(1358), + [anon_sym_false] = ACTIONS(1358), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1358), + [sym_super] = ACTIONS(1358), + [sym_crate] = ACTIONS(1358), + [sym_metavariable] = ACTIONS(1360), + [sym_raw_string_literal] = ACTIONS(1360), + [sym_float_literal] = ACTIONS(1360), }, [339] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(339), [sym_block_comment] = STATE(339), - [aux_sym_token_tree_repeat1] = STATE(339), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1205), - [anon_sym_SEMI] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1211), - [anon_sym_RPAREN] = ACTIONS(1214), - [anon_sym_LBRACK] = ACTIONS(1216), - [anon_sym_RBRACK] = ACTIONS(1214), - [anon_sym_LBRACE] = ACTIONS(1219), - [anon_sym_RBRACE] = ACTIONS(1214), - [anon_sym_COLON] = ACTIONS(1222), - [anon_sym_DOLLAR] = ACTIONS(1225), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1208), - [anon_sym_u8] = ACTIONS(1205), - [anon_sym_i8] = ACTIONS(1205), - [anon_sym_u16] = ACTIONS(1205), - [anon_sym_i16] = ACTIONS(1205), - [anon_sym_u32] = ACTIONS(1205), - [anon_sym_i32] = ACTIONS(1205), - [anon_sym_u64] = ACTIONS(1205), - [anon_sym_i64] = ACTIONS(1205), - [anon_sym_u128] = ACTIONS(1205), - [anon_sym_i128] = ACTIONS(1205), - [anon_sym_isize] = ACTIONS(1205), - [anon_sym_usize] = ACTIONS(1205), - [anon_sym_f32] = ACTIONS(1205), - [anon_sym_f64] = ACTIONS(1205), - [anon_sym_bool] = ACTIONS(1205), - [anon_sym_str] = ACTIONS(1205), - [anon_sym_char] = ACTIONS(1205), - [anon_sym_SLASH] = ACTIONS(1222), - [anon_sym__] = ACTIONS(1222), - [anon_sym_BSLASH] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1222), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_DASH_GT] = ACTIONS(1208), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_COLON_COLON] = ACTIONS(1208), - [anon_sym_BANG] = ACTIONS(1208), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_AT] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_POUND] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_TILDE] = ACTIONS(1208), - [anon_sym_SQUOTE] = ACTIONS(1205), - [anon_sym_as] = ACTIONS(1205), - [anon_sym_async] = ACTIONS(1205), - [anon_sym_await] = ACTIONS(1205), - [anon_sym_break] = ACTIONS(1205), - [anon_sym_const] = ACTIONS(1205), - [anon_sym_continue] = ACTIONS(1205), - [anon_sym_default] = ACTIONS(1205), - [anon_sym_enum] = ACTIONS(1205), - [anon_sym_fn] = ACTIONS(1205), - [anon_sym_for] = ACTIONS(1205), - [anon_sym_if] = ACTIONS(1205), - [anon_sym_impl] = ACTIONS(1205), - [anon_sym_let] = ACTIONS(1205), - [anon_sym_loop] = ACTIONS(1205), - [anon_sym_match] = ACTIONS(1205), - [anon_sym_mod] = ACTIONS(1205), - [anon_sym_pub] = ACTIONS(1205), - [anon_sym_return] = ACTIONS(1205), - [anon_sym_static] = ACTIONS(1205), - [anon_sym_struct] = ACTIONS(1205), - [anon_sym_trait] = ACTIONS(1205), - [anon_sym_type] = ACTIONS(1205), - [anon_sym_union] = ACTIONS(1205), - [anon_sym_unsafe] = ACTIONS(1205), - [anon_sym_use] = ACTIONS(1205), - [anon_sym_where] = ACTIONS(1205), - [anon_sym_while] = ACTIONS(1205), - [sym_mutable_specifier] = ACTIONS(1205), - [sym_integer_literal] = ACTIONS(1228), - [aux_sym_string_literal_token1] = ACTIONS(1231), - [sym_char_literal] = ACTIONS(1228), - [anon_sym_true] = ACTIONS(1234), - [anon_sym_false] = ACTIONS(1234), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1205), - [sym_super] = ACTIONS(1205), - [sym_crate] = ACTIONS(1205), - [sym_metavariable] = ACTIONS(1237), - [sym_raw_string_literal] = ACTIONS(1228), - [sym_float_literal] = ACTIONS(1228), + [aux_sym_token_tree_repeat1] = STATE(365), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1362), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [340] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(340), [sym_block_comment] = STATE(340), - [aux_sym_token_tree_pattern_repeat1] = STATE(325), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1246), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [341] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(341), [sym_block_comment] = STATE(341), - [aux_sym_token_tree_pattern_repeat1] = STATE(352), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1264), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym_token_tree_repeat1] = STATE(332), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_RBRACK] = ACTIONS(1362), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [342] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(342), [sym_block_comment] = STATE(342), - [aux_sym_token_tree_pattern_repeat1] = STATE(325), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1246), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym_token_tree_repeat1] = STATE(359), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1362), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [343] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(343), [sym_block_comment] = STATE(343), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1266), - [anon_sym_SEMI] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(1277), - [anon_sym_RBRACK] = ACTIONS(1275), - [anon_sym_LBRACE] = ACTIONS(1280), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_COLON] = ACTIONS(1283), - [anon_sym_DOLLAR] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_QMARK] = ACTIONS(1269), - [anon_sym_u8] = ACTIONS(1266), - [anon_sym_i8] = ACTIONS(1266), - [anon_sym_u16] = ACTIONS(1266), - [anon_sym_i16] = ACTIONS(1266), - [anon_sym_u32] = ACTIONS(1266), - [anon_sym_i32] = ACTIONS(1266), - [anon_sym_u64] = ACTIONS(1266), - [anon_sym_i64] = ACTIONS(1266), - [anon_sym_u128] = ACTIONS(1266), - [anon_sym_i128] = ACTIONS(1266), - [anon_sym_isize] = ACTIONS(1266), - [anon_sym_usize] = ACTIONS(1266), - [anon_sym_f32] = ACTIONS(1266), - [anon_sym_f64] = ACTIONS(1266), - [anon_sym_bool] = ACTIONS(1266), - [anon_sym_str] = ACTIONS(1266), - [anon_sym_char] = ACTIONS(1266), - [anon_sym_SLASH] = ACTIONS(1283), - [anon_sym__] = ACTIONS(1283), - [anon_sym_BSLASH] = ACTIONS(1269), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_EQ] = ACTIONS(1269), - [anon_sym_DASH_GT] = ACTIONS(1269), - [anon_sym_COMMA] = ACTIONS(1269), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_DOT] = ACTIONS(1269), - [anon_sym_AT] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1269), - [anon_sym_POUND] = ACTIONS(1269), - [anon_sym_PERCENT] = ACTIONS(1269), - [anon_sym_CARET] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(1269), - [anon_sym_GT] = ACTIONS(1269), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_TILDE] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1266), - [anon_sym_as] = ACTIONS(1266), - [anon_sym_async] = ACTIONS(1266), - [anon_sym_await] = ACTIONS(1266), - [anon_sym_break] = ACTIONS(1266), - [anon_sym_const] = ACTIONS(1266), - [anon_sym_continue] = ACTIONS(1266), - [anon_sym_default] = ACTIONS(1266), - [anon_sym_enum] = ACTIONS(1266), - [anon_sym_fn] = ACTIONS(1266), - [anon_sym_for] = ACTIONS(1266), - [anon_sym_if] = ACTIONS(1266), - [anon_sym_impl] = ACTIONS(1266), - [anon_sym_let] = ACTIONS(1266), - [anon_sym_loop] = ACTIONS(1266), - [anon_sym_match] = ACTIONS(1266), - [anon_sym_mod] = ACTIONS(1266), - [anon_sym_pub] = ACTIONS(1266), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_static] = ACTIONS(1266), - [anon_sym_struct] = ACTIONS(1266), - [anon_sym_trait] = ACTIONS(1266), - [anon_sym_type] = ACTIONS(1266), - [anon_sym_union] = ACTIONS(1266), - [anon_sym_unsafe] = ACTIONS(1266), - [anon_sym_use] = ACTIONS(1266), - [anon_sym_where] = ACTIONS(1266), - [anon_sym_while] = ACTIONS(1266), - [sym_mutable_specifier] = ACTIONS(1266), - [sym_integer_literal] = ACTIONS(1289), - [aux_sym_string_literal_token1] = ACTIONS(1292), - [sym_char_literal] = ACTIONS(1289), - [anon_sym_true] = ACTIONS(1295), - [anon_sym_false] = ACTIONS(1295), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1266), - [sym_super] = ACTIONS(1266), - [sym_crate] = ACTIONS(1266), - [sym_raw_string_literal] = ACTIONS(1289), - [sym_float_literal] = ACTIONS(1289), + [aux_sym_token_tree_repeat1] = STATE(326), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1364), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [344] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(344), [sym_block_comment] = STATE(344), - [aux_sym_token_tree_pattern_repeat1] = STATE(342), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1298), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [345] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(345), [sym_block_comment] = STATE(345), - [aux_sym_token_tree_pattern_repeat1] = STATE(351), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1300), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(368), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [346] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(346), [sym_block_comment] = STATE(346), - [aux_sym_token_tree_pattern_repeat1] = STATE(353), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym_token_tree_repeat1] = STATE(326), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [347] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(3488), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3099), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2076), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2068), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(347), [sym_block_comment] = STATE(347), - [aux_sym_token_tree_pattern_repeat1] = STATE(325), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1302), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1370), + [sym_super] = ACTIONS(1096), + [sym_crate] = ACTIONS(1096), + [sym_metavariable] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [348] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(348), [sym_block_comment] = STATE(348), - [aux_sym_token_tree_pattern_repeat1] = STATE(350), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_RBRACK] = ACTIONS(1300), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(370), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [349] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(349), [sym_block_comment] = STATE(349), - [aux_sym_token_tree_pattern_repeat1] = STATE(347), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1300), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(371), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1372), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [350] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(350), [sym_block_comment] = STATE(350), - [aux_sym_token_tree_pattern_repeat1] = STATE(325), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_RBRACK] = ACTIONS(1302), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym_token_tree_repeat1] = STATE(343), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [351] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(351), [sym_block_comment] = STATE(351), - [aux_sym_token_tree_pattern_repeat1] = STATE(325), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_RBRACE] = ACTIONS(1302), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(362), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1368), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [352] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2068), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(352), [sym_block_comment] = STATE(352), - [aux_sym_token_tree_pattern_repeat1] = STATE(325), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1058), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [353] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(353), [sym_block_comment] = STATE(353), - [aux_sym_token_tree_pattern_repeat1] = STATE(325), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_RBRACK] = ACTIONS(1246), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [354] = { - [sym__token_pattern] = STATE(442), - [sym_token_tree_pattern] = STATE(447), - [sym_token_binding_pattern] = STATE(447), - [sym_token_repetition_pattern] = STATE(447), - [sym__literal] = STATE(447), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3489), + [sym_lifetime] = STATE(804), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3094), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2376), + [sym_scoped_identifier] = STATE(2134), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2086), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(354), [sym_block_comment] = STATE(354), - [aux_sym_token_tree_pattern_repeat1] = STATE(340), - [aux_sym__non_special_token_repeat1] = STATE(421), - [sym_identifier] = ACTIONS(1240), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_RPAREN] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1250), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1254), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1240), - [anon_sym_i8] = ACTIONS(1240), - [anon_sym_u16] = ACTIONS(1240), - [anon_sym_i16] = ACTIONS(1240), - [anon_sym_u32] = ACTIONS(1240), - [anon_sym_i32] = ACTIONS(1240), - [anon_sym_u64] = ACTIONS(1240), - [anon_sym_i64] = ACTIONS(1240), - [anon_sym_u128] = ACTIONS(1240), - [anon_sym_i128] = ACTIONS(1240), - [anon_sym_isize] = ACTIONS(1240), - [anon_sym_usize] = ACTIONS(1240), - [anon_sym_f32] = ACTIONS(1240), - [anon_sym_f64] = ACTIONS(1240), - [anon_sym_bool] = ACTIONS(1240), - [anon_sym_str] = ACTIONS(1240), - [anon_sym_char] = ACTIONS(1240), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1240), - [anon_sym_as] = ACTIONS(1240), - [anon_sym_async] = ACTIONS(1240), - [anon_sym_await] = ACTIONS(1240), - [anon_sym_break] = ACTIONS(1240), - [anon_sym_const] = ACTIONS(1240), - [anon_sym_continue] = ACTIONS(1240), - [anon_sym_default] = ACTIONS(1240), - [anon_sym_enum] = ACTIONS(1240), - [anon_sym_fn] = ACTIONS(1240), - [anon_sym_for] = ACTIONS(1240), - [anon_sym_if] = ACTIONS(1240), - [anon_sym_impl] = ACTIONS(1240), - [anon_sym_let] = ACTIONS(1240), - [anon_sym_loop] = ACTIONS(1240), - [anon_sym_match] = ACTIONS(1240), - [anon_sym_mod] = ACTIONS(1240), - [anon_sym_pub] = ACTIONS(1240), - [anon_sym_return] = ACTIONS(1240), - [anon_sym_static] = ACTIONS(1240), - [anon_sym_struct] = ACTIONS(1240), - [anon_sym_trait] = ACTIONS(1240), - [anon_sym_type] = ACTIONS(1240), - [anon_sym_union] = ACTIONS(1240), - [anon_sym_unsafe] = ACTIONS(1240), - [anon_sym_use] = ACTIONS(1240), - [anon_sym_where] = ACTIONS(1240), - [anon_sym_while] = ACTIONS(1240), - [sym_mutable_specifier] = ACTIONS(1240), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1240), - [sym_super] = ACTIONS(1240), - [sym_crate] = ACTIONS(1240), - [sym_metavariable] = ACTIONS(1262), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1217), + [anon_sym_LPAREN] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1223), + [anon_sym_i8] = ACTIONS(1223), + [anon_sym_u16] = ACTIONS(1223), + [anon_sym_i16] = ACTIONS(1223), + [anon_sym_u32] = ACTIONS(1223), + [anon_sym_i32] = ACTIONS(1223), + [anon_sym_u64] = ACTIONS(1223), + [anon_sym_i64] = ACTIONS(1223), + [anon_sym_u128] = ACTIONS(1223), + [anon_sym_i128] = ACTIONS(1223), + [anon_sym_isize] = ACTIONS(1223), + [anon_sym_usize] = ACTIONS(1223), + [anon_sym_f32] = ACTIONS(1223), + [anon_sym_f64] = ACTIONS(1223), + [anon_sym_bool] = ACTIONS(1223), + [anon_sym_str] = ACTIONS(1223), + [anon_sym_char] = ACTIONS(1223), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1227), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1229), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1231), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1233), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1380), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1235), + [sym_super] = ACTIONS(1235), + [sym_crate] = ACTIONS(1235), + [sym_metavariable] = ACTIONS(1237), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [355] = { - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(2896), - [sym_variadic_parameter] = STATE(2896), - [sym_parameter] = STATE(2896), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2580), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(355), [sym_block_comment] = STATE(355), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1306), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [356] = { - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(2829), - [sym_variadic_parameter] = STATE(2829), - [sym_parameter] = STATE(2829), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2655), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(356), [sym_block_comment] = STATE(356), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_token_tree_repeat1] = STATE(331), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_RPAREN] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [357] = { - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(2858), - [sym_variadic_parameter] = STATE(2858), - [sym_parameter] = STATE(2858), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2649), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(357), [sym_block_comment] = STATE(357), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1310), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(377), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1384), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [358] = { - [sym_function_modifiers] = STATE(3307), - [sym_self_parameter] = STATE(3083), - [sym_variadic_parameter] = STATE(3083), - [sym_parameter] = STATE(3083), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2733), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(2815), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3200), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2068), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(358), [sym_block_comment] = STATE(358), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1040), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1064), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1068), - [anon_sym_DOT_DOT] = ACTIONS(1070), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1078), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1386), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [359] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(359), [sym_block_comment] = STATE(359), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(401), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), + [aux_sym_token_tree_repeat1] = STATE(326), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1322), + [anon_sym_RPAREN] = ACTIONS(1330), + [anon_sym_LBRACK] = ACTIONS(1322), [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [360] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(360), [sym_block_comment] = STATE(360), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1336), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [361] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(361), [sym_block_comment] = STATE(361), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), + [aux_sym_token_tree_repeat1] = STATE(363), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_RBRACK] = ACTIONS(1374), [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1338), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [362] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(362), [sym_block_comment] = STATE(362), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1338), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1388), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [363] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(363), [sym_block_comment] = STATE(363), - [aux_sym_token_tree_repeat1] = STATE(339), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1344), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym_token_tree_repeat1] = STATE(326), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1318), + [anon_sym_LBRACK] = ACTIONS(1322), + [anon_sym_RBRACK] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1324), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [364] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(364), [sym_block_comment] = STATE(364), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1338), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(372), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1372), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [365] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(365), [sym_block_comment] = STATE(365), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(400), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), + [aux_sym_token_tree_repeat1] = STATE(326), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1322), [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1354), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [anon_sym_RBRACE] = ACTIONS(1330), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [366] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(366), [sym_block_comment] = STATE(366), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(405), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1354), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [367] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(367), [sym_block_comment] = STATE(367), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(408), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [368] = { + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(368), [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_RBRACK] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_else] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), - [anon_sym_AMP_AMP] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1358), - [anon_sym_DASH_EQ] = ACTIONS(1358), - [anon_sym_STAR_EQ] = ACTIONS(1358), - [anon_sym_SLASH_EQ] = ACTIONS(1358), - [anon_sym_PERCENT_EQ] = ACTIONS(1358), - [anon_sym_AMP_EQ] = ACTIONS(1358), - [anon_sym_PIPE_EQ] = ACTIONS(1358), - [anon_sym_CARET_EQ] = ACTIONS(1358), - [anon_sym_LT_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_GT_EQ] = ACTIONS(1358), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1358), - [aux_sym_string_literal_token1] = ACTIONS(1358), - [sym_char_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1358), - [sym_raw_string_literal] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1358), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [369] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(369), [sym_block_comment] = STATE(369), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1360), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(384), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1384), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [370] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(370), [sym_block_comment] = STATE(370), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(362), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1360), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [371] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(371), [sym_block_comment] = STATE(371), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [372] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(372), [sym_block_comment] = STATE(372), - [aux_sym_token_tree_repeat1] = STATE(339), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [373] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3488), + [sym_lifetime] = STATE(810), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3099), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2395), + [sym_scoped_identifier] = STATE(2076), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2086), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(373), [sym_block_comment] = STATE(373), - [aux_sym_token_tree_repeat1] = STATE(339), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1364), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1074), + [anon_sym_LPAREN] = ACTIONS(1076), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1080), + [anon_sym_i8] = ACTIONS(1080), + [anon_sym_u16] = ACTIONS(1080), + [anon_sym_i16] = ACTIONS(1080), + [anon_sym_u32] = ACTIONS(1080), + [anon_sym_i32] = ACTIONS(1080), + [anon_sym_u64] = ACTIONS(1080), + [anon_sym_i64] = ACTIONS(1080), + [anon_sym_u128] = ACTIONS(1080), + [anon_sym_i128] = ACTIONS(1080), + [anon_sym_isize] = ACTIONS(1080), + [anon_sym_usize] = ACTIONS(1080), + [anon_sym_f32] = ACTIONS(1080), + [anon_sym_f64] = ACTIONS(1080), + [anon_sym_bool] = ACTIONS(1080), + [anon_sym_str] = ACTIONS(1080), + [anon_sym_char] = ACTIONS(1080), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1086), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1134), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1090), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1092), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1394), + [sym_super] = ACTIONS(1096), + [sym_crate] = ACTIONS(1096), + [sym_metavariable] = ACTIONS(1098), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [374] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(374), [sym_block_comment] = STATE(374), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(344), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1340), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [375] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(375), [sym_block_comment] = STATE(375), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1366), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(378), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1340), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [376] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(376), [sym_block_comment] = STATE(376), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(353), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1396), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [377] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(377), [sym_block_comment] = STATE(377), - [aux_sym_token_tree_repeat1] = STATE(339), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_RBRACK] = ACTIONS(1362), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [378] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(378), [sym_block_comment] = STATE(378), - [aux_sym_token_tree_repeat1] = STATE(339), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_RBRACK] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [379] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(379), [sym_block_comment] = STATE(379), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(374), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1368), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(360), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1396), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [380] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(804), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2086), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(380), [sym_block_comment] = STATE(380), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1368), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1400), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1058), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [381] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(381), [sym_block_comment] = STATE(381), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(376), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1368), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(386), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [382] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(382), [sym_block_comment] = STATE(382), - [aux_sym_token_tree_repeat1] = STATE(339), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1364), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(366), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1396), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [383] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3479), + [sym_lifetime] = STATE(810), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3279), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(2457), + [sym_scoped_identifier] = STATE(2199), + [sym_scoped_type_identifier] = STATE(2095), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2086), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(383), [sym_block_comment] = STATE(383), - [aux_sym_token_tree_repeat1] = STATE(339), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1362), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(994), + [anon_sym_LBRACK] = ACTIONS(998), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1004), + [anon_sym_i8] = ACTIONS(1004), + [anon_sym_u16] = ACTIONS(1004), + [anon_sym_i16] = ACTIONS(1004), + [anon_sym_u32] = ACTIONS(1004), + [anon_sym_i32] = ACTIONS(1004), + [anon_sym_u64] = ACTIONS(1004), + [anon_sym_i64] = ACTIONS(1004), + [anon_sym_u128] = ACTIONS(1004), + [anon_sym_i128] = ACTIONS(1004), + [anon_sym_isize] = ACTIONS(1004), + [anon_sym_usize] = ACTIONS(1004), + [anon_sym_f32] = ACTIONS(1004), + [anon_sym_f64] = ACTIONS(1004), + [anon_sym_bool] = ACTIONS(1004), + [anon_sym_str] = ACTIONS(1004), + [anon_sym_char] = ACTIONS(1004), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(1012), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_SQUOTE] = ACTIONS(1022), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1026), + [anon_sym_default] = ACTIONS(1028), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1036), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(1402), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1404), + [sym_super] = ACTIONS(1058), + [sym_crate] = ACTIONS(1058), + [sym_metavariable] = ACTIONS(1060), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [384] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(384), [sym_block_comment] = STATE(384), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1336), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [385] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(385), [sym_block_comment] = STATE(385), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [386] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(386), [sym_block_comment] = STATE(386), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(360), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(330), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [387] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(387), [sym_block_comment] = STATE(387), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(384), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1370), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(367), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1368), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [388] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_token_tree] = STATE(414), + [sym_token_repetition] = STATE(414), + [sym__literal] = STATE(414), + [sym_string_literal] = STATE(407), + [sym_boolean_literal] = STATE(407), [sym_line_comment] = STATE(388), [sym_block_comment] = STATE(388), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(385), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), + [aux_sym_token_tree_repeat1] = STATE(346), + [aux_sym__non_special_token_repeat1] = STATE(392), + [sym_identifier] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1195), [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_RPAREN] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1322), [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1326), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1316), + [anon_sym_i8] = ACTIONS(1316), + [anon_sym_u16] = ACTIONS(1316), + [anon_sym_i16] = ACTIONS(1316), + [anon_sym_u32] = ACTIONS(1316), + [anon_sym_i32] = ACTIONS(1316), + [anon_sym_u64] = ACTIONS(1316), + [anon_sym_i64] = ACTIONS(1316), + [anon_sym_u128] = ACTIONS(1316), + [anon_sym_i128] = ACTIONS(1316), + [anon_sym_isize] = ACTIONS(1316), + [anon_sym_usize] = ACTIONS(1316), + [anon_sym_f32] = ACTIONS(1316), + [anon_sym_f64] = ACTIONS(1316), + [anon_sym_bool] = ACTIONS(1316), + [anon_sym_str] = ACTIONS(1316), + [anon_sym_char] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1316), + [anon_sym_as] = ACTIONS(1316), + [anon_sym_async] = ACTIONS(1316), + [anon_sym_await] = ACTIONS(1316), + [anon_sym_break] = ACTIONS(1316), + [anon_sym_const] = ACTIONS(1316), + [anon_sym_continue] = ACTIONS(1316), + [anon_sym_default] = ACTIONS(1316), + [anon_sym_enum] = ACTIONS(1316), + [anon_sym_fn] = ACTIONS(1316), + [anon_sym_for] = ACTIONS(1316), + [anon_sym_if] = ACTIONS(1316), + [anon_sym_impl] = ACTIONS(1316), + [anon_sym_let] = ACTIONS(1316), + [anon_sym_loop] = ACTIONS(1316), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_mod] = ACTIONS(1316), + [anon_sym_pub] = ACTIONS(1316), + [anon_sym_return] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1316), + [anon_sym_struct] = ACTIONS(1316), + [anon_sym_trait] = ACTIONS(1316), + [anon_sym_type] = ACTIONS(1316), + [anon_sym_union] = ACTIONS(1316), + [anon_sym_unsafe] = ACTIONS(1316), + [anon_sym_use] = ACTIONS(1316), + [anon_sym_where] = ACTIONS(1316), + [anon_sym_while] = ACTIONS(1316), + [sym_mutable_specifier] = ACTIONS(1316), + [sym_integer_literal] = ACTIONS(1209), + [aux_sym_string_literal_token1] = ACTIONS(1211), + [sym_char_literal] = ACTIONS(1209), + [anon_sym_true] = ACTIONS(1213), + [anon_sym_false] = ACTIONS(1213), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1316), + [sym_super] = ACTIONS(1316), + [sym_crate] = ACTIONS(1316), + [sym_metavariable] = ACTIONS(1328), + [sym_raw_string_literal] = ACTIONS(1209), + [sym_float_literal] = ACTIONS(1209), }, [389] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(389), [sym_block_comment] = STATE(389), - [aux_sym_token_tree_repeat1] = STATE(383), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1372), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(355), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_RPAREN] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [390] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(390), [sym_block_comment] = STATE(390), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(403), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1406), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [391] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), + [sym_delim_token_tree] = STATE(428), + [sym__delim_tokens] = STATE(427), + [sym__non_delim_token] = STATE(428), + [sym__literal] = STATE(419), + [sym_string_literal] = STATE(422), + [sym_boolean_literal] = STATE(422), [sym_line_comment] = STATE(391), [sym_block_comment] = STATE(391), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(404), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1374), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(408), + [aux_sym_delim_token_tree_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1334), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1338), + [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_RBRACE] = ACTIONS(1406), + [anon_sym_COLON] = ACTIONS(1346), + [anon_sym_DOLLAR] = ACTIONS(1348), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1334), + [anon_sym_i8] = ACTIONS(1334), + [anon_sym_u16] = ACTIONS(1334), + [anon_sym_i16] = ACTIONS(1334), + [anon_sym_u32] = ACTIONS(1334), + [anon_sym_i32] = ACTIONS(1334), + [anon_sym_u64] = ACTIONS(1334), + [anon_sym_i64] = ACTIONS(1334), + [anon_sym_u128] = ACTIONS(1334), + [anon_sym_i128] = ACTIONS(1334), + [anon_sym_isize] = ACTIONS(1334), + [anon_sym_usize] = ACTIONS(1334), + [anon_sym_f32] = ACTIONS(1334), + [anon_sym_f64] = ACTIONS(1334), + [anon_sym_bool] = ACTIONS(1334), + [anon_sym_str] = ACTIONS(1334), + [anon_sym_char] = ACTIONS(1334), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1334), + [anon_sym_async] = ACTIONS(1334), + [anon_sym_await] = ACTIONS(1334), + [anon_sym_break] = ACTIONS(1334), + [anon_sym_const] = ACTIONS(1334), + [anon_sym_continue] = ACTIONS(1334), + [anon_sym_default] = ACTIONS(1334), + [anon_sym_enum] = ACTIONS(1334), + [anon_sym_fn] = ACTIONS(1334), + [anon_sym_for] = ACTIONS(1334), + [anon_sym_if] = ACTIONS(1334), + [anon_sym_impl] = ACTIONS(1334), + [anon_sym_let] = ACTIONS(1334), + [anon_sym_loop] = ACTIONS(1334), + [anon_sym_match] = ACTIONS(1334), + [anon_sym_mod] = ACTIONS(1334), + [anon_sym_pub] = ACTIONS(1334), + [anon_sym_return] = ACTIONS(1334), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_struct] = ACTIONS(1334), + [anon_sym_trait] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_union] = ACTIONS(1334), + [anon_sym_unsafe] = ACTIONS(1334), + [anon_sym_use] = ACTIONS(1334), + [anon_sym_where] = ACTIONS(1334), + [anon_sym_while] = ACTIONS(1334), + [sym_mutable_specifier] = ACTIONS(1334), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1352), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1354), + [anon_sym_false] = ACTIONS(1354), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1334), + [sym_super] = ACTIONS(1334), + [sym_crate] = ACTIONS(1334), + [sym_raw_string_literal] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [392] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), [sym_line_comment] = STATE(392), [sym_block_comment] = STATE(392), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(406), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [aux_sym__non_special_token_repeat1] = STATE(394), + [sym_identifier] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_RBRACK] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1408), + [anon_sym_i8] = ACTIONS(1408), + [anon_sym_u16] = ACTIONS(1408), + [anon_sym_i16] = ACTIONS(1408), + [anon_sym_u32] = ACTIONS(1408), + [anon_sym_i32] = ACTIONS(1408), + [anon_sym_u64] = ACTIONS(1408), + [anon_sym_i64] = ACTIONS(1408), + [anon_sym_u128] = ACTIONS(1408), + [anon_sym_i128] = ACTIONS(1408), + [anon_sym_isize] = ACTIONS(1408), + [anon_sym_usize] = ACTIONS(1408), + [anon_sym_f32] = ACTIONS(1408), + [anon_sym_f64] = ACTIONS(1408), + [anon_sym_bool] = ACTIONS(1408), + [anon_sym_str] = ACTIONS(1408), + [anon_sym_char] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_as] = ACTIONS(1408), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_await] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_impl] = ACTIONS(1408), + [anon_sym_let] = ACTIONS(1408), + [anon_sym_loop] = ACTIONS(1408), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_mod] = ACTIONS(1408), + [anon_sym_pub] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_trait] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_unsafe] = ACTIONS(1408), + [anon_sym_use] = ACTIONS(1408), + [anon_sym_where] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [sym_mutable_specifier] = ACTIONS(1408), + [sym_integer_literal] = ACTIONS(1410), + [aux_sym_string_literal_token1] = ACTIONS(1410), + [sym_char_literal] = ACTIONS(1410), + [anon_sym_true] = ACTIONS(1408), + [anon_sym_false] = ACTIONS(1408), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1408), + [sym_super] = ACTIONS(1408), + [sym_crate] = ACTIONS(1408), + [sym_metavariable] = ACTIONS(1410), + [sym_raw_string_literal] = ACTIONS(1410), + [sym_float_literal] = ACTIONS(1410), }, [393] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), [sym_line_comment] = STATE(393), [sym_block_comment] = STATE(393), - [aux_sym_token_tree_repeat1] = STATE(363), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(394), + [sym_identifier] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_COLON] = ACTIONS(1205), + [anon_sym_DOLLAR] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1195), + [anon_sym_STAR] = ACTIONS(1195), + [anon_sym_QMARK] = ACTIONS(1195), + [anon_sym_u8] = ACTIONS(1412), + [anon_sym_i8] = ACTIONS(1412), + [anon_sym_u16] = ACTIONS(1412), + [anon_sym_i16] = ACTIONS(1412), + [anon_sym_u32] = ACTIONS(1412), + [anon_sym_i32] = ACTIONS(1412), + [anon_sym_u64] = ACTIONS(1412), + [anon_sym_i64] = ACTIONS(1412), + [anon_sym_u128] = ACTIONS(1412), + [anon_sym_i128] = ACTIONS(1412), + [anon_sym_isize] = ACTIONS(1412), + [anon_sym_usize] = ACTIONS(1412), + [anon_sym_f32] = ACTIONS(1412), + [anon_sym_f64] = ACTIONS(1412), + [anon_sym_bool] = ACTIONS(1412), + [anon_sym_str] = ACTIONS(1412), + [anon_sym_char] = ACTIONS(1412), + [anon_sym_SLASH] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1205), + [anon_sym_BSLASH] = ACTIONS(1195), + [anon_sym_DASH] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1195), + [anon_sym_DASH_GT] = ACTIONS(1195), + [anon_sym_COMMA] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(1195), + [anon_sym_BANG] = ACTIONS(1195), + [anon_sym_DOT] = ACTIONS(1195), + [anon_sym_AT] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), + [anon_sym_POUND] = ACTIONS(1195), + [anon_sym_PERCENT] = ACTIONS(1195), + [anon_sym_CARET] = ACTIONS(1195), + [anon_sym_LT] = ACTIONS(1195), + [anon_sym_GT] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1195), + [anon_sym_TILDE] = ACTIONS(1195), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_as] = ACTIONS(1412), + [anon_sym_async] = ACTIONS(1412), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_fn] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_impl] = ACTIONS(1412), + [anon_sym_let] = ACTIONS(1412), + [anon_sym_loop] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1412), + [anon_sym_mod] = ACTIONS(1412), + [anon_sym_pub] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_trait] = ACTIONS(1412), + [anon_sym_type] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1412), + [anon_sym_where] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [sym_mutable_specifier] = ACTIONS(1412), + [sym_integer_literal] = ACTIONS(1414), + [aux_sym_string_literal_token1] = ACTIONS(1414), + [sym_char_literal] = ACTIONS(1414), + [anon_sym_true] = ACTIONS(1412), + [anon_sym_false] = ACTIONS(1412), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1414), + [sym_raw_string_literal] = ACTIONS(1414), + [sym_float_literal] = ACTIONS(1414), }, [394] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [aux_sym_token_tree_repeat1] = STATE(377), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_RBRACK] = ACTIONS(1372), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [aux_sym__non_special_token_repeat1] = STATE(394), + [sym_identifier] = ACTIONS(1416), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_RBRACK] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_COLON] = ACTIONS(1423), + [anon_sym_DOLLAR] = ACTIONS(1416), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_STAR] = ACTIONS(1418), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_u8] = ACTIONS(1416), + [anon_sym_i8] = ACTIONS(1416), + [anon_sym_u16] = ACTIONS(1416), + [anon_sym_i16] = ACTIONS(1416), + [anon_sym_u32] = ACTIONS(1416), + [anon_sym_i32] = ACTIONS(1416), + [anon_sym_u64] = ACTIONS(1416), + [anon_sym_i64] = ACTIONS(1416), + [anon_sym_u128] = ACTIONS(1416), + [anon_sym_i128] = ACTIONS(1416), + [anon_sym_isize] = ACTIONS(1416), + [anon_sym_usize] = ACTIONS(1416), + [anon_sym_f32] = ACTIONS(1416), + [anon_sym_f64] = ACTIONS(1416), + [anon_sym_bool] = ACTIONS(1416), + [anon_sym_str] = ACTIONS(1416), + [anon_sym_char] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1423), + [anon_sym__] = ACTIONS(1423), + [anon_sym_BSLASH] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1418), + [anon_sym_DASH_GT] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1418), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1418), + [anon_sym_AT] = ACTIONS(1418), + [anon_sym_AMP] = ACTIONS(1418), + [anon_sym_POUND] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1418), + [anon_sym_CARET] = ACTIONS(1418), + [anon_sym_LT] = ACTIONS(1418), + [anon_sym_GT] = ACTIONS(1418), + [anon_sym_PIPE] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1418), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_as] = ACTIONS(1416), + [anon_sym_async] = ACTIONS(1416), + [anon_sym_await] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_fn] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_impl] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_loop] = ACTIONS(1416), + [anon_sym_match] = ACTIONS(1416), + [anon_sym_mod] = ACTIONS(1416), + [anon_sym_pub] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_trait] = ACTIONS(1416), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_unsafe] = ACTIONS(1416), + [anon_sym_use] = ACTIONS(1416), + [anon_sym_where] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [sym_mutable_specifier] = ACTIONS(1416), + [sym_integer_literal] = ACTIONS(1421), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1416), + [anon_sym_false] = ACTIONS(1416), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1416), + [sym_super] = ACTIONS(1416), + [sym_crate] = ACTIONS(1416), + [sym_metavariable] = ACTIONS(1421), + [sym_raw_string_literal] = ACTIONS(1421), + [sym_float_literal] = ACTIONS(1421), }, [395] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), - [aux_sym_token_tree_repeat1] = STATE(372), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_RPAREN] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_RBRACK] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_COLON] = ACTIONS(1426), + [anon_sym_DOLLAR] = ACTIONS(1426), + [anon_sym_PLUS] = ACTIONS(1428), + [anon_sym_STAR] = ACTIONS(1428), + [anon_sym_QMARK] = ACTIONS(1428), + [anon_sym_u8] = ACTIONS(1426), + [anon_sym_i8] = ACTIONS(1426), + [anon_sym_u16] = ACTIONS(1426), + [anon_sym_i16] = ACTIONS(1426), + [anon_sym_u32] = ACTIONS(1426), + [anon_sym_i32] = ACTIONS(1426), + [anon_sym_u64] = ACTIONS(1426), + [anon_sym_i64] = ACTIONS(1426), + [anon_sym_u128] = ACTIONS(1426), + [anon_sym_i128] = ACTIONS(1426), + [anon_sym_isize] = ACTIONS(1426), + [anon_sym_usize] = ACTIONS(1426), + [anon_sym_f32] = ACTIONS(1426), + [anon_sym_f64] = ACTIONS(1426), + [anon_sym_bool] = ACTIONS(1426), + [anon_sym_str] = ACTIONS(1426), + [anon_sym_char] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym__] = ACTIONS(1426), + [anon_sym_BSLASH] = ACTIONS(1428), + [anon_sym_DASH] = ACTIONS(1426), + [anon_sym_EQ] = ACTIONS(1428), + [anon_sym_DASH_GT] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_COLON_COLON] = ACTIONS(1428), + [anon_sym_BANG] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1428), + [anon_sym_AT] = ACTIONS(1428), + [anon_sym_AMP] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_PERCENT] = ACTIONS(1428), + [anon_sym_CARET] = ACTIONS(1428), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1428), + [anon_sym_PIPE] = ACTIONS(1428), + [anon_sym_TILDE] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_as] = ACTIONS(1426), + [anon_sym_async] = ACTIONS(1426), + [anon_sym_await] = ACTIONS(1426), + [anon_sym_break] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_continue] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_enum] = ACTIONS(1426), + [anon_sym_fn] = ACTIONS(1426), + [anon_sym_for] = ACTIONS(1426), + [anon_sym_if] = ACTIONS(1426), + [anon_sym_impl] = ACTIONS(1426), + [anon_sym_let] = ACTIONS(1426), + [anon_sym_loop] = ACTIONS(1426), + [anon_sym_match] = ACTIONS(1426), + [anon_sym_mod] = ACTIONS(1426), + [anon_sym_pub] = ACTIONS(1426), + [anon_sym_return] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1426), + [anon_sym_struct] = ACTIONS(1426), + [anon_sym_trait] = ACTIONS(1426), + [anon_sym_type] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_unsafe] = ACTIONS(1426), + [anon_sym_use] = ACTIONS(1426), + [anon_sym_where] = ACTIONS(1426), + [anon_sym_while] = ACTIONS(1426), + [sym_mutable_specifier] = ACTIONS(1426), + [sym_integer_literal] = ACTIONS(1428), + [aux_sym_string_literal_token1] = ACTIONS(1428), + [sym_char_literal] = ACTIONS(1428), + [anon_sym_true] = ACTIONS(1426), + [anon_sym_false] = ACTIONS(1426), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1426), + [sym_super] = ACTIONS(1426), + [sym_crate] = ACTIONS(1426), + [sym_metavariable] = ACTIONS(1428), + [sym_raw_string_literal] = ACTIONS(1428), + [sym_float_literal] = ACTIONS(1428), }, [396] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [aux_sym_token_tree_repeat1] = STATE(382), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_RBRACE] = ACTIONS(1378), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_RPAREN] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_RBRACK] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_COLON] = ACTIONS(1430), + [anon_sym_DOLLAR] = ACTIONS(1430), + [anon_sym_PLUS] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1432), + [anon_sym_u8] = ACTIONS(1430), + [anon_sym_i8] = ACTIONS(1430), + [anon_sym_u16] = ACTIONS(1430), + [anon_sym_i16] = ACTIONS(1430), + [anon_sym_u32] = ACTIONS(1430), + [anon_sym_i32] = ACTIONS(1430), + [anon_sym_u64] = ACTIONS(1430), + [anon_sym_i64] = ACTIONS(1430), + [anon_sym_u128] = ACTIONS(1430), + [anon_sym_i128] = ACTIONS(1430), + [anon_sym_isize] = ACTIONS(1430), + [anon_sym_usize] = ACTIONS(1430), + [anon_sym_f32] = ACTIONS(1430), + [anon_sym_f64] = ACTIONS(1430), + [anon_sym_bool] = ACTIONS(1430), + [anon_sym_str] = ACTIONS(1430), + [anon_sym_char] = ACTIONS(1430), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym__] = ACTIONS(1430), + [anon_sym_BSLASH] = ACTIONS(1432), + [anon_sym_DASH] = ACTIONS(1430), + [anon_sym_EQ] = ACTIONS(1432), + [anon_sym_DASH_GT] = ACTIONS(1432), + [anon_sym_COMMA] = ACTIONS(1432), + [anon_sym_COLON_COLON] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_DOT] = ACTIONS(1432), + [anon_sym_AT] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_PERCENT] = ACTIONS(1432), + [anon_sym_CARET] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_GT] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_TILDE] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_as] = ACTIONS(1430), + [anon_sym_async] = ACTIONS(1430), + [anon_sym_await] = ACTIONS(1430), + [anon_sym_break] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_continue] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_enum] = ACTIONS(1430), + [anon_sym_fn] = ACTIONS(1430), + [anon_sym_for] = ACTIONS(1430), + [anon_sym_if] = ACTIONS(1430), + [anon_sym_impl] = ACTIONS(1430), + [anon_sym_let] = ACTIONS(1430), + [anon_sym_loop] = ACTIONS(1430), + [anon_sym_match] = ACTIONS(1430), + [anon_sym_mod] = ACTIONS(1430), + [anon_sym_pub] = ACTIONS(1430), + [anon_sym_return] = ACTIONS(1430), + [anon_sym_static] = ACTIONS(1430), + [anon_sym_struct] = ACTIONS(1430), + [anon_sym_trait] = ACTIONS(1430), + [anon_sym_type] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_unsafe] = ACTIONS(1430), + [anon_sym_use] = ACTIONS(1430), + [anon_sym_where] = ACTIONS(1430), + [anon_sym_while] = ACTIONS(1430), + [sym_mutable_specifier] = ACTIONS(1430), + [sym_integer_literal] = ACTIONS(1432), + [aux_sym_string_literal_token1] = ACTIONS(1432), + [sym_char_literal] = ACTIONS(1432), + [anon_sym_true] = ACTIONS(1430), + [anon_sym_false] = ACTIONS(1430), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1430), + [sym_super] = ACTIONS(1430), + [sym_crate] = ACTIONS(1430), + [sym_metavariable] = ACTIONS(1432), + [sym_raw_string_literal] = ACTIONS(1432), + [sym_float_literal] = ACTIONS(1432), }, [397] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), [sym_line_comment] = STATE(397), [sym_block_comment] = STATE(397), - [aux_sym_token_tree_repeat1] = STATE(378), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_RBRACK] = ACTIONS(1378), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1436), + [anon_sym_LPAREN] = ACTIONS(1436), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1436), + [anon_sym_RBRACK] = ACTIONS(1436), + [anon_sym_LBRACE] = ACTIONS(1436), + [anon_sym_RBRACE] = ACTIONS(1436), + [anon_sym_COLON] = ACTIONS(1434), + [anon_sym_DOLLAR] = ACTIONS(1434), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_STAR] = ACTIONS(1436), + [anon_sym_QMARK] = ACTIONS(1436), + [anon_sym_u8] = ACTIONS(1434), + [anon_sym_i8] = ACTIONS(1434), + [anon_sym_u16] = ACTIONS(1434), + [anon_sym_i16] = ACTIONS(1434), + [anon_sym_u32] = ACTIONS(1434), + [anon_sym_i32] = ACTIONS(1434), + [anon_sym_u64] = ACTIONS(1434), + [anon_sym_i64] = ACTIONS(1434), + [anon_sym_u128] = ACTIONS(1434), + [anon_sym_i128] = ACTIONS(1434), + [anon_sym_isize] = ACTIONS(1434), + [anon_sym_usize] = ACTIONS(1434), + [anon_sym_f32] = ACTIONS(1434), + [anon_sym_f64] = ACTIONS(1434), + [anon_sym_bool] = ACTIONS(1434), + [anon_sym_str] = ACTIONS(1434), + [anon_sym_char] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1434), + [anon_sym__] = ACTIONS(1434), + [anon_sym_BSLASH] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1434), + [anon_sym_EQ] = ACTIONS(1436), + [anon_sym_DASH_GT] = ACTIONS(1436), + [anon_sym_COMMA] = ACTIONS(1436), + [anon_sym_COLON_COLON] = ACTIONS(1436), + [anon_sym_BANG] = ACTIONS(1436), + [anon_sym_DOT] = ACTIONS(1436), + [anon_sym_AT] = ACTIONS(1436), + [anon_sym_AMP] = ACTIONS(1436), + [anon_sym_POUND] = ACTIONS(1436), + [anon_sym_PERCENT] = ACTIONS(1436), + [anon_sym_CARET] = ACTIONS(1436), + [anon_sym_LT] = ACTIONS(1436), + [anon_sym_GT] = ACTIONS(1436), + [anon_sym_PIPE] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1436), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_as] = ACTIONS(1434), + [anon_sym_async] = ACTIONS(1434), + [anon_sym_await] = ACTIONS(1434), + [anon_sym_break] = ACTIONS(1434), + [anon_sym_const] = ACTIONS(1434), + [anon_sym_continue] = ACTIONS(1434), + [anon_sym_default] = ACTIONS(1434), + [anon_sym_enum] = ACTIONS(1434), + [anon_sym_fn] = ACTIONS(1434), + [anon_sym_for] = ACTIONS(1434), + [anon_sym_if] = ACTIONS(1434), + [anon_sym_impl] = ACTIONS(1434), + [anon_sym_let] = ACTIONS(1434), + [anon_sym_loop] = ACTIONS(1434), + [anon_sym_match] = ACTIONS(1434), + [anon_sym_mod] = ACTIONS(1434), + [anon_sym_pub] = ACTIONS(1434), + [anon_sym_return] = ACTIONS(1434), + [anon_sym_static] = ACTIONS(1434), + [anon_sym_struct] = ACTIONS(1434), + [anon_sym_trait] = ACTIONS(1434), + [anon_sym_type] = ACTIONS(1434), + [anon_sym_union] = ACTIONS(1434), + [anon_sym_unsafe] = ACTIONS(1434), + [anon_sym_use] = ACTIONS(1434), + [anon_sym_where] = ACTIONS(1434), + [anon_sym_while] = ACTIONS(1434), + [sym_mutable_specifier] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1436), + [aux_sym_string_literal_token1] = ACTIONS(1436), + [sym_char_literal] = ACTIONS(1436), + [anon_sym_true] = ACTIONS(1434), + [anon_sym_false] = ACTIONS(1434), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1434), + [sym_super] = ACTIONS(1434), + [sym_crate] = ACTIONS(1434), + [sym_metavariable] = ACTIONS(1436), + [sym_raw_string_literal] = ACTIONS(1436), + [sym_float_literal] = ACTIONS(1436), }, [398] = { - [sym_token_tree] = STATE(424), - [sym_token_repetition] = STATE(424), - [sym__literal] = STATE(424), - [sym_string_literal] = STATE(429), - [sym_boolean_literal] = STATE(429), [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [aux_sym_token_tree_repeat1] = STATE(373), - [aux_sym__non_special_token_repeat1] = STATE(422), - [sym_identifier] = ACTIONS(1340), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1342), - [anon_sym_RPAREN] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1346), - [anon_sym_LBRACE] = ACTIONS(1348), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1350), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1340), - [anon_sym_i8] = ACTIONS(1340), - [anon_sym_u16] = ACTIONS(1340), - [anon_sym_i16] = ACTIONS(1340), - [anon_sym_u32] = ACTIONS(1340), - [anon_sym_i32] = ACTIONS(1340), - [anon_sym_u64] = ACTIONS(1340), - [anon_sym_i64] = ACTIONS(1340), - [anon_sym_u128] = ACTIONS(1340), - [anon_sym_i128] = ACTIONS(1340), - [anon_sym_isize] = ACTIONS(1340), - [anon_sym_usize] = ACTIONS(1340), - [anon_sym_f32] = ACTIONS(1340), - [anon_sym_f64] = ACTIONS(1340), - [anon_sym_bool] = ACTIONS(1340), - [anon_sym_str] = ACTIONS(1340), - [anon_sym_char] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1340), - [anon_sym_as] = ACTIONS(1340), - [anon_sym_async] = ACTIONS(1340), - [anon_sym_await] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1340), - [anon_sym_const] = ACTIONS(1340), - [anon_sym_continue] = ACTIONS(1340), - [anon_sym_default] = ACTIONS(1340), - [anon_sym_enum] = ACTIONS(1340), - [anon_sym_fn] = ACTIONS(1340), - [anon_sym_for] = ACTIONS(1340), - [anon_sym_if] = ACTIONS(1340), - [anon_sym_impl] = ACTIONS(1340), - [anon_sym_let] = ACTIONS(1340), - [anon_sym_loop] = ACTIONS(1340), - [anon_sym_match] = ACTIONS(1340), - [anon_sym_mod] = ACTIONS(1340), - [anon_sym_pub] = ACTIONS(1340), - [anon_sym_return] = ACTIONS(1340), - [anon_sym_static] = ACTIONS(1340), - [anon_sym_struct] = ACTIONS(1340), - [anon_sym_trait] = ACTIONS(1340), - [anon_sym_type] = ACTIONS(1340), - [anon_sym_union] = ACTIONS(1340), - [anon_sym_unsafe] = ACTIONS(1340), - [anon_sym_use] = ACTIONS(1340), - [anon_sym_where] = ACTIONS(1340), - [anon_sym_while] = ACTIONS(1340), - [sym_mutable_specifier] = ACTIONS(1340), - [sym_integer_literal] = ACTIONS(1256), - [aux_sym_string_literal_token1] = ACTIONS(1258), - [sym_char_literal] = ACTIONS(1256), - [anon_sym_true] = ACTIONS(1260), - [anon_sym_false] = ACTIONS(1260), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1340), - [sym_super] = ACTIONS(1340), - [sym_crate] = ACTIONS(1340), - [sym_metavariable] = ACTIONS(1352), - [sym_raw_string_literal] = ACTIONS(1256), - [sym_float_literal] = ACTIONS(1256), + [sym_identifier] = ACTIONS(1438), + [anon_sym_SEMI] = ACTIONS(1440), + [anon_sym_LPAREN] = ACTIONS(1440), + [anon_sym_RPAREN] = ACTIONS(1440), + [anon_sym_LBRACK] = ACTIONS(1440), + [anon_sym_RBRACK] = ACTIONS(1440), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_RBRACE] = ACTIONS(1440), + [anon_sym_COLON] = ACTIONS(1438), + [anon_sym_DOLLAR] = ACTIONS(1438), + [anon_sym_PLUS] = ACTIONS(1440), + [anon_sym_STAR] = ACTIONS(1440), + [anon_sym_QMARK] = ACTIONS(1440), + [anon_sym_u8] = ACTIONS(1438), + [anon_sym_i8] = ACTIONS(1438), + [anon_sym_u16] = ACTIONS(1438), + [anon_sym_i16] = ACTIONS(1438), + [anon_sym_u32] = ACTIONS(1438), + [anon_sym_i32] = ACTIONS(1438), + [anon_sym_u64] = ACTIONS(1438), + [anon_sym_i64] = ACTIONS(1438), + [anon_sym_u128] = ACTIONS(1438), + [anon_sym_i128] = ACTIONS(1438), + [anon_sym_isize] = ACTIONS(1438), + [anon_sym_usize] = ACTIONS(1438), + [anon_sym_f32] = ACTIONS(1438), + [anon_sym_f64] = ACTIONS(1438), + [anon_sym_bool] = ACTIONS(1438), + [anon_sym_str] = ACTIONS(1438), + [anon_sym_char] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym__] = ACTIONS(1438), + [anon_sym_BSLASH] = ACTIONS(1440), + [anon_sym_DASH] = ACTIONS(1438), + [anon_sym_EQ] = ACTIONS(1440), + [anon_sym_DASH_GT] = ACTIONS(1440), + [anon_sym_COMMA] = ACTIONS(1440), + [anon_sym_COLON_COLON] = ACTIONS(1440), + [anon_sym_BANG] = ACTIONS(1440), + [anon_sym_DOT] = ACTIONS(1440), + [anon_sym_AT] = ACTIONS(1440), + [anon_sym_AMP] = ACTIONS(1440), + [anon_sym_POUND] = ACTIONS(1440), + [anon_sym_PERCENT] = ACTIONS(1440), + [anon_sym_CARET] = ACTIONS(1440), + [anon_sym_LT] = ACTIONS(1440), + [anon_sym_GT] = ACTIONS(1440), + [anon_sym_PIPE] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1440), + [anon_sym_SQUOTE] = ACTIONS(1438), + [anon_sym_as] = ACTIONS(1438), + [anon_sym_async] = ACTIONS(1438), + [anon_sym_await] = ACTIONS(1438), + [anon_sym_break] = ACTIONS(1438), + [anon_sym_const] = ACTIONS(1438), + [anon_sym_continue] = ACTIONS(1438), + [anon_sym_default] = ACTIONS(1438), + [anon_sym_enum] = ACTIONS(1438), + [anon_sym_fn] = ACTIONS(1438), + [anon_sym_for] = ACTIONS(1438), + [anon_sym_if] = ACTIONS(1438), + [anon_sym_impl] = ACTIONS(1438), + [anon_sym_let] = ACTIONS(1438), + [anon_sym_loop] = ACTIONS(1438), + [anon_sym_match] = ACTIONS(1438), + [anon_sym_mod] = ACTIONS(1438), + [anon_sym_pub] = ACTIONS(1438), + [anon_sym_return] = ACTIONS(1438), + [anon_sym_static] = ACTIONS(1438), + [anon_sym_struct] = ACTIONS(1438), + [anon_sym_trait] = ACTIONS(1438), + [anon_sym_type] = ACTIONS(1438), + [anon_sym_union] = ACTIONS(1438), + [anon_sym_unsafe] = ACTIONS(1438), + [anon_sym_use] = ACTIONS(1438), + [anon_sym_where] = ACTIONS(1438), + [anon_sym_while] = ACTIONS(1438), + [sym_mutable_specifier] = ACTIONS(1438), + [sym_integer_literal] = ACTIONS(1440), + [aux_sym_string_literal_token1] = ACTIONS(1440), + [sym_char_literal] = ACTIONS(1440), + [anon_sym_true] = ACTIONS(1438), + [anon_sym_false] = ACTIONS(1438), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1438), + [sym_super] = ACTIONS(1438), + [sym_crate] = ACTIONS(1438), + [sym_metavariable] = ACTIONS(1440), + [sym_raw_string_literal] = ACTIONS(1440), + [sym_float_literal] = ACTIONS(1440), }, [399] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), [sym_line_comment] = STATE(399), [sym_block_comment] = STATE(399), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1380), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_RBRACK] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_COLON] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1442), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1442), + [anon_sym_i8] = ACTIONS(1442), + [anon_sym_u16] = ACTIONS(1442), + [anon_sym_i16] = ACTIONS(1442), + [anon_sym_u32] = ACTIONS(1442), + [anon_sym_i32] = ACTIONS(1442), + [anon_sym_u64] = ACTIONS(1442), + [anon_sym_i64] = ACTIONS(1442), + [anon_sym_u128] = ACTIONS(1442), + [anon_sym_i128] = ACTIONS(1442), + [anon_sym_isize] = ACTIONS(1442), + [anon_sym_usize] = ACTIONS(1442), + [anon_sym_f32] = ACTIONS(1442), + [anon_sym_f64] = ACTIONS(1442), + [anon_sym_bool] = ACTIONS(1442), + [anon_sym_str] = ACTIONS(1442), + [anon_sym_char] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_as] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_await] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_impl] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_loop] = ACTIONS(1442), + [anon_sym_match] = ACTIONS(1442), + [anon_sym_mod] = ACTIONS(1442), + [anon_sym_pub] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_trait] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_unsafe] = ACTIONS(1442), + [anon_sym_use] = ACTIONS(1442), + [anon_sym_where] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [sym_mutable_specifier] = ACTIONS(1442), + [sym_integer_literal] = ACTIONS(1444), + [aux_sym_string_literal_token1] = ACTIONS(1444), + [sym_char_literal] = ACTIONS(1444), + [anon_sym_true] = ACTIONS(1442), + [anon_sym_false] = ACTIONS(1442), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_crate] = ACTIONS(1442), + [sym_metavariable] = ACTIONS(1444), + [sym_raw_string_literal] = ACTIONS(1444), + [sym_float_literal] = ACTIONS(1444), }, [400] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1382), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), - }, - [401] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), - [sym_line_comment] = STATE(401), - [sym_block_comment] = STATE(401), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1380), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), - }, - [402] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), - [sym_line_comment] = STATE(402), - [sym_block_comment] = STATE(402), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1380), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), - }, - [403] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), - [sym_line_comment] = STATE(403), - [sym_block_comment] = STATE(403), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), - }, - [404] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), - [sym_line_comment] = STATE(404), - [sym_block_comment] = STATE(404), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1384), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), - }, - [405] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), - [sym_line_comment] = STATE(405), - [sym_block_comment] = STATE(405), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_RBRACK] = ACTIONS(1382), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), - }, - [406] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), - [sym_line_comment] = STATE(406), - [sym_block_comment] = STATE(406), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1384), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), - }, - [407] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), - [sym_line_comment] = STATE(407), - [sym_block_comment] = STATE(407), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(399), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1322), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), - }, - [408] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), - [sym_line_comment] = STATE(408), - [sym_block_comment] = STATE(408), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(343), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1382), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), - }, - [409] = { - [sym_delim_token_tree] = STATE(450), - [sym__delim_tokens] = STATE(449), - [sym__non_delim_token] = STATE(450), - [sym__literal] = STATE(454), - [sym_string_literal] = STATE(451), - [sym_boolean_literal] = STATE(451), - [sym_line_comment] = STATE(409), - [sym_block_comment] = STATE(409), - [aux_sym__non_special_token_repeat1] = STATE(441), - [aux_sym_delim_token_tree_repeat1] = STATE(402), - [sym_identifier] = ACTIONS(1314), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1318), - [anon_sym_RPAREN] = ACTIONS(1322), - [anon_sym_LBRACK] = ACTIONS(1320), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_u8] = ACTIONS(1314), - [anon_sym_i8] = ACTIONS(1314), - [anon_sym_u16] = ACTIONS(1314), - [anon_sym_i16] = ACTIONS(1314), - [anon_sym_u32] = ACTIONS(1314), - [anon_sym_i32] = ACTIONS(1314), - [anon_sym_u64] = ACTIONS(1314), - [anon_sym_i64] = ACTIONS(1314), - [anon_sym_u128] = ACTIONS(1314), - [anon_sym_i128] = ACTIONS(1314), - [anon_sym_isize] = ACTIONS(1314), - [anon_sym_usize] = ACTIONS(1314), - [anon_sym_f32] = ACTIONS(1314), - [anon_sym_f64] = ACTIONS(1314), - [anon_sym_bool] = ACTIONS(1314), - [anon_sym_str] = ACTIONS(1314), - [anon_sym_char] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), - [anon_sym_SQUOTE] = ACTIONS(1314), - [anon_sym_as] = ACTIONS(1314), - [anon_sym_async] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1314), - [anon_sym_break] = ACTIONS(1314), - [anon_sym_const] = ACTIONS(1314), - [anon_sym_continue] = ACTIONS(1314), - [anon_sym_default] = ACTIONS(1314), - [anon_sym_enum] = ACTIONS(1314), - [anon_sym_fn] = ACTIONS(1314), - [anon_sym_for] = ACTIONS(1314), - [anon_sym_if] = ACTIONS(1314), - [anon_sym_impl] = ACTIONS(1314), - [anon_sym_let] = ACTIONS(1314), - [anon_sym_loop] = ACTIONS(1314), - [anon_sym_match] = ACTIONS(1314), - [anon_sym_mod] = ACTIONS(1314), - [anon_sym_pub] = ACTIONS(1314), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_static] = ACTIONS(1314), - [anon_sym_struct] = ACTIONS(1314), - [anon_sym_trait] = ACTIONS(1314), - [anon_sym_type] = ACTIONS(1314), - [anon_sym_union] = ACTIONS(1314), - [anon_sym_unsafe] = ACTIONS(1314), - [anon_sym_use] = ACTIONS(1314), - [anon_sym_where] = ACTIONS(1314), - [anon_sym_while] = ACTIONS(1314), - [sym_mutable_specifier] = ACTIONS(1314), - [sym_integer_literal] = ACTIONS(1330), - [aux_sym_string_literal_token1] = ACTIONS(1332), - [sym_char_literal] = ACTIONS(1330), - [anon_sym_true] = ACTIONS(1334), - [anon_sym_false] = ACTIONS(1334), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1314), - [sym_super] = ACTIONS(1314), - [sym_crate] = ACTIONS(1314), - [sym_raw_string_literal] = ACTIONS(1330), - [sym_float_literal] = ACTIONS(1330), - }, - [410] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2831), - [sym_bracketed_type] = STATE(3446), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3447), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2411), - [sym_scoped_identifier] = STATE(2102), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2632), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(410), - [sym_block_comment] = STATE(410), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_RBRACK] = ACTIONS(1390), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1406), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), - }, - [411] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(3444), - [sym_lifetime] = STATE(846), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3445), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2381), - [sym_scoped_identifier] = STATE(2069), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2047), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(411), - [sym_block_comment] = STATE(411), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1408), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1410), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), - }, - [412] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1981), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2089), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(412), - [sym_block_comment] = STATE(412), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1414), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), - }, - [413] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1981), - [sym_bracketed_type] = STATE(3444), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3445), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2381), - [sym_scoped_identifier] = STATE(2069), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2089), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(413), - [sym_block_comment] = STATE(413), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1416), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), - }, - [414] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1981), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2089), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(414), - [sym_block_comment] = STATE(414), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1080), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), - }, - [415] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(849), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2047), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(415), - [sym_block_comment] = STATE(415), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1418), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1080), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), - }, - [416] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(3444), - [sym_lifetime] = STATE(849), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3445), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2381), - [sym_scoped_identifier] = STATE(2069), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2047), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(416), - [sym_block_comment] = STATE(416), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1106), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), - }, - [417] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(3435), - [sym_lifetime] = STATE(846), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3436), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2406), - [sym_scoped_identifier] = STATE(2181), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2047), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(417), - [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1028), - [anon_sym_i8] = ACTIONS(1028), - [anon_sym_u16] = ACTIONS(1028), - [anon_sym_i16] = ACTIONS(1028), - [anon_sym_u32] = ACTIONS(1028), - [anon_sym_i32] = ACTIONS(1028), - [anon_sym_u64] = ACTIONS(1028), - [anon_sym_i64] = ACTIONS(1028), - [anon_sym_u128] = ACTIONS(1028), - [anon_sym_i128] = ACTIONS(1028), - [anon_sym_isize] = ACTIONS(1028), - [anon_sym_usize] = ACTIONS(1028), - [anon_sym_f32] = ACTIONS(1028), - [anon_sym_f64] = ACTIONS(1028), - [anon_sym_bool] = ACTIONS(1028), - [anon_sym_str] = ACTIONS(1028), - [anon_sym_char] = ACTIONS(1028), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1036), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1058), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1424), - [sym_super] = ACTIONS(1080), - [sym_crate] = ACTIONS(1080), - [sym_metavariable] = ACTIONS(1082), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), - }, - [418] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1981), - [sym_bracketed_type] = STATE(3444), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3445), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2381), - [sym_scoped_identifier] = STATE(2069), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2089), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(418), - [sym_block_comment] = STATE(418), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1084), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1090), - [anon_sym_i8] = ACTIONS(1090), - [anon_sym_u16] = ACTIONS(1090), - [anon_sym_i16] = ACTIONS(1090), - [anon_sym_u32] = ACTIONS(1090), - [anon_sym_i32] = ACTIONS(1090), - [anon_sym_u64] = ACTIONS(1090), - [anon_sym_i64] = ACTIONS(1090), - [anon_sym_u128] = ACTIONS(1090), - [anon_sym_i128] = ACTIONS(1090), - [anon_sym_isize] = ACTIONS(1090), - [anon_sym_usize] = ACTIONS(1090), - [anon_sym_f32] = ACTIONS(1090), - [anon_sym_f64] = ACTIONS(1090), - [anon_sym_bool] = ACTIONS(1090), - [anon_sym_str] = ACTIONS(1090), - [anon_sym_char] = ACTIONS(1090), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1096), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1189), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1100), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1102), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1106), - [sym_super] = ACTIONS(1106), - [sym_crate] = ACTIONS(1106), - [sym_metavariable] = ACTIONS(1108), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), - }, - [419] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1981), - [sym_bracketed_type] = STATE(3446), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3447), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2411), - [sym_scoped_identifier] = STATE(2102), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2089), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(419), - [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1406), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), - }, - [420] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(3446), - [sym_lifetime] = STATE(849), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3447), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(2411), - [sym_scoped_identifier] = STATE(2102), - [sym_scoped_type_identifier] = STATE(2092), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2047), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(420), - [sym_block_comment] = STATE(420), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1386), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1024), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1392), - [anon_sym_i8] = ACTIONS(1392), - [anon_sym_u16] = ACTIONS(1392), - [anon_sym_i16] = ACTIONS(1392), - [anon_sym_u32] = ACTIONS(1392), - [anon_sym_i32] = ACTIONS(1392), - [anon_sym_u64] = ACTIONS(1392), - [anon_sym_i64] = ACTIONS(1392), - [anon_sym_u128] = ACTIONS(1392), - [anon_sym_i128] = ACTIONS(1392), - [anon_sym_isize] = ACTIONS(1392), - [anon_sym_usize] = ACTIONS(1392), - [anon_sym_f32] = ACTIONS(1392), - [anon_sym_f64] = ACTIONS(1392), - [anon_sym_bool] = ACTIONS(1392), - [anon_sym_str] = ACTIONS(1392), - [anon_sym_char] = ACTIONS(1392), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1044), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1048), - [anon_sym_default] = ACTIONS(1400), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_ref] = ACTIONS(1062), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(1426), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1404), - [sym_super] = ACTIONS(1404), - [sym_crate] = ACTIONS(1404), - [sym_metavariable] = ACTIONS(1406), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), - }, - [421] = { - [sym_line_comment] = STATE(421), - [sym_block_comment] = STATE(421), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_RBRACK] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1428), - [anon_sym_i8] = ACTIONS(1428), - [anon_sym_u16] = ACTIONS(1428), - [anon_sym_i16] = ACTIONS(1428), - [anon_sym_u32] = ACTIONS(1428), - [anon_sym_i32] = ACTIONS(1428), - [anon_sym_u64] = ACTIONS(1428), - [anon_sym_i64] = ACTIONS(1428), - [anon_sym_u128] = ACTIONS(1428), - [anon_sym_i128] = ACTIONS(1428), - [anon_sym_isize] = ACTIONS(1428), - [anon_sym_usize] = ACTIONS(1428), - [anon_sym_f32] = ACTIONS(1428), - [anon_sym_f64] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_str] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_as] = ACTIONS(1428), - [anon_sym_async] = ACTIONS(1428), - [anon_sym_await] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_impl] = ACTIONS(1428), - [anon_sym_let] = ACTIONS(1428), - [anon_sym_loop] = ACTIONS(1428), - [anon_sym_match] = ACTIONS(1428), - [anon_sym_mod] = ACTIONS(1428), - [anon_sym_pub] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_trait] = ACTIONS(1428), - [anon_sym_type] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_unsafe] = ACTIONS(1428), - [anon_sym_use] = ACTIONS(1428), - [anon_sym_where] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [sym_mutable_specifier] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1430), - [aux_sym_string_literal_token1] = ACTIONS(1430), - [sym_char_literal] = ACTIONS(1430), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1428), - [sym_super] = ACTIONS(1428), - [sym_crate] = ACTIONS(1428), - [sym_metavariable] = ACTIONS(1430), - [sym_raw_string_literal] = ACTIONS(1430), - [sym_float_literal] = ACTIONS(1430), - }, - [422] = { - [sym_line_comment] = STATE(422), - [sym_block_comment] = STATE(422), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1242), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_RBRACK] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_COLON] = ACTIONS(1252), - [anon_sym_DOLLAR] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1242), - [anon_sym_u8] = ACTIONS(1432), - [anon_sym_i8] = ACTIONS(1432), - [anon_sym_u16] = ACTIONS(1432), - [anon_sym_i16] = ACTIONS(1432), - [anon_sym_u32] = ACTIONS(1432), - [anon_sym_i32] = ACTIONS(1432), - [anon_sym_u64] = ACTIONS(1432), - [anon_sym_i64] = ACTIONS(1432), - [anon_sym_u128] = ACTIONS(1432), - [anon_sym_i128] = ACTIONS(1432), - [anon_sym_isize] = ACTIONS(1432), - [anon_sym_usize] = ACTIONS(1432), - [anon_sym_f32] = ACTIONS(1432), - [anon_sym_f64] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_str] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_SLASH] = ACTIONS(1252), - [anon_sym__] = ACTIONS(1252), - [anon_sym_BSLASH] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1252), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_DASH_GT] = ACTIONS(1242), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_COLON_COLON] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_AT] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_POUND] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_TILDE] = ACTIONS(1242), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_as] = ACTIONS(1432), - [anon_sym_async] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_impl] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(1432), - [anon_sym_loop] = ACTIONS(1432), - [anon_sym_match] = ACTIONS(1432), - [anon_sym_mod] = ACTIONS(1432), - [anon_sym_pub] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_trait] = ACTIONS(1432), - [anon_sym_type] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_unsafe] = ACTIONS(1432), - [anon_sym_use] = ACTIONS(1432), - [anon_sym_where] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [sym_mutable_specifier] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1434), - [aux_sym_string_literal_token1] = ACTIONS(1434), - [sym_char_literal] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1432), - [sym_super] = ACTIONS(1432), - [sym_crate] = ACTIONS(1432), - [sym_metavariable] = ACTIONS(1434), - [sym_raw_string_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1434), - }, - [423] = { - [sym_line_comment] = STATE(423), - [sym_block_comment] = STATE(423), - [aux_sym__non_special_token_repeat1] = STATE(423), - [sym_identifier] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_RBRACK] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_COLON] = ACTIONS(1443), - [anon_sym_DOLLAR] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1438), - [anon_sym_u8] = ACTIONS(1436), - [anon_sym_i8] = ACTIONS(1436), - [anon_sym_u16] = ACTIONS(1436), - [anon_sym_i16] = ACTIONS(1436), - [anon_sym_u32] = ACTIONS(1436), - [anon_sym_i32] = ACTIONS(1436), - [anon_sym_u64] = ACTIONS(1436), - [anon_sym_i64] = ACTIONS(1436), - [anon_sym_u128] = ACTIONS(1436), - [anon_sym_i128] = ACTIONS(1436), - [anon_sym_isize] = ACTIONS(1436), - [anon_sym_usize] = ACTIONS(1436), - [anon_sym_f32] = ACTIONS(1436), - [anon_sym_f64] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_str] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1443), - [anon_sym__] = ACTIONS(1443), - [anon_sym_BSLASH] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1443), - [anon_sym_EQ] = ACTIONS(1438), - [anon_sym_DASH_GT] = ACTIONS(1438), - [anon_sym_COMMA] = ACTIONS(1438), - [anon_sym_COLON_COLON] = ACTIONS(1438), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1438), - [anon_sym_PERCENT] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_as] = ACTIONS(1436), - [anon_sym_async] = ACTIONS(1436), - [anon_sym_await] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_impl] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_pub] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_trait] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_unsafe] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_where] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [sym_mutable_specifier] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1441), - [aux_sym_string_literal_token1] = ACTIONS(1441), - [sym_char_literal] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1436), - [sym_super] = ACTIONS(1436), - [sym_crate] = ACTIONS(1436), - [sym_metavariable] = ACTIONS(1441), - [sym_raw_string_literal] = ACTIONS(1441), - [sym_float_literal] = ACTIONS(1441), - }, - [424] = { - [sym_line_comment] = STATE(424), - [sym_block_comment] = STATE(424), - [sym_identifier] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_RBRACK] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_COLON] = ACTIONS(1432), - [anon_sym_DOLLAR] = ACTIONS(1432), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_STAR] = ACTIONS(1434), - [anon_sym_QMARK] = ACTIONS(1434), - [anon_sym_u8] = ACTIONS(1432), - [anon_sym_i8] = ACTIONS(1432), - [anon_sym_u16] = ACTIONS(1432), - [anon_sym_i16] = ACTIONS(1432), - [anon_sym_u32] = ACTIONS(1432), - [anon_sym_i32] = ACTIONS(1432), - [anon_sym_u64] = ACTIONS(1432), - [anon_sym_i64] = ACTIONS(1432), - [anon_sym_u128] = ACTIONS(1432), - [anon_sym_i128] = ACTIONS(1432), - [anon_sym_isize] = ACTIONS(1432), - [anon_sym_usize] = ACTIONS(1432), - [anon_sym_f32] = ACTIONS(1432), - [anon_sym_f64] = ACTIONS(1432), - [anon_sym_bool] = ACTIONS(1432), - [anon_sym_str] = ACTIONS(1432), - [anon_sym_char] = ACTIONS(1432), - [anon_sym_SLASH] = ACTIONS(1432), - [anon_sym__] = ACTIONS(1432), - [anon_sym_BSLASH] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1432), - [anon_sym_EQ] = ACTIONS(1434), - [anon_sym_DASH_GT] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1434), - [anon_sym_COLON_COLON] = ACTIONS(1434), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_AT] = ACTIONS(1434), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_PERCENT] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1434), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_as] = ACTIONS(1432), - [anon_sym_async] = ACTIONS(1432), - [anon_sym_await] = ACTIONS(1432), - [anon_sym_break] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_continue] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_enum] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1432), - [anon_sym_for] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1432), - [anon_sym_impl] = ACTIONS(1432), - [anon_sym_let] = ACTIONS(1432), - [anon_sym_loop] = ACTIONS(1432), - [anon_sym_match] = ACTIONS(1432), - [anon_sym_mod] = ACTIONS(1432), - [anon_sym_pub] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1432), - [anon_sym_static] = ACTIONS(1432), - [anon_sym_struct] = ACTIONS(1432), - [anon_sym_trait] = ACTIONS(1432), - [anon_sym_type] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_unsafe] = ACTIONS(1432), - [anon_sym_use] = ACTIONS(1432), - [anon_sym_where] = ACTIONS(1432), - [anon_sym_while] = ACTIONS(1432), - [sym_mutable_specifier] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1434), - [aux_sym_string_literal_token1] = ACTIONS(1434), - [sym_char_literal] = ACTIONS(1434), - [anon_sym_true] = ACTIONS(1432), - [anon_sym_false] = ACTIONS(1432), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1432), - [sym_super] = ACTIONS(1432), - [sym_crate] = ACTIONS(1432), - [sym_metavariable] = ACTIONS(1434), - [sym_raw_string_literal] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1434), - }, - [425] = { - [sym_line_comment] = STATE(425), - [sym_block_comment] = STATE(425), [sym_identifier] = ACTIONS(1446), [anon_sym_SEMI] = ACTIONS(1448), [anon_sym_LPAREN] = ACTIONS(1448), @@ -66366,9 +63526,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1448), [sym_float_literal] = ACTIONS(1448), }, - [426] = { - [sym_line_comment] = STATE(426), - [sym_block_comment] = STATE(426), + [401] = { + [sym_line_comment] = STATE(401), + [sym_block_comment] = STATE(401), [sym_identifier] = ACTIONS(1450), [anon_sym_SEMI] = ACTIONS(1452), [anon_sym_LPAREN] = ACTIONS(1452), @@ -66461,9 +63621,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1452), [sym_float_literal] = ACTIONS(1452), }, - [427] = { - [sym_line_comment] = STATE(427), - [sym_block_comment] = STATE(427), + [402] = { + [sym_line_comment] = STATE(402), + [sym_block_comment] = STATE(402), [sym_identifier] = ACTIONS(1454), [anon_sym_SEMI] = ACTIONS(1456), [anon_sym_LPAREN] = ACTIONS(1456), @@ -66556,104 +63716,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1456), [sym_float_literal] = ACTIONS(1456), }, - [428] = { - [sym_line_comment] = STATE(428), - [sym_block_comment] = STATE(428), - [sym_identifier] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_EQ_GT] = ACTIONS(1358), - [anon_sym_COLON] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1356), - [anon_sym_i8] = ACTIONS(1356), - [anon_sym_u16] = ACTIONS(1356), - [anon_sym_i16] = ACTIONS(1356), - [anon_sym_u32] = ACTIONS(1356), - [anon_sym_i32] = ACTIONS(1356), - [anon_sym_u64] = ACTIONS(1356), - [anon_sym_i64] = ACTIONS(1356), - [anon_sym_u128] = ACTIONS(1356), - [anon_sym_i128] = ACTIONS(1356), - [anon_sym_isize] = ACTIONS(1356), - [anon_sym_usize] = ACTIONS(1356), - [anon_sym_f32] = ACTIONS(1356), - [anon_sym_f64] = ACTIONS(1356), - [anon_sym_bool] = ACTIONS(1356), - [anon_sym_str] = ACTIONS(1356), - [anon_sym_char] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_BANG] = ACTIONS(1356), - [anon_sym_DOT] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_SQUOTE] = ACTIONS(1356), - [anon_sym_as] = ACTIONS(1356), - [anon_sym_async] = ACTIONS(1356), - [anon_sym_break] = ACTIONS(1356), - [anon_sym_const] = ACTIONS(1356), - [anon_sym_continue] = ACTIONS(1356), - [anon_sym_default] = ACTIONS(1356), - [anon_sym_for] = ACTIONS(1356), - [anon_sym_if] = ACTIONS(1356), - [anon_sym_loop] = ACTIONS(1356), - [anon_sym_match] = ACTIONS(1356), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_static] = ACTIONS(1356), - [anon_sym_union] = ACTIONS(1356), - [anon_sym_unsafe] = ACTIONS(1356), - [anon_sym_while] = ACTIONS(1356), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), - [anon_sym_DOT_DOT] = ACTIONS(1356), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), - [anon_sym_AMP_AMP] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1358), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1358), - [anon_sym_DASH_EQ] = ACTIONS(1358), - [anon_sym_STAR_EQ] = ACTIONS(1358), - [anon_sym_SLASH_EQ] = ACTIONS(1358), - [anon_sym_PERCENT_EQ] = ACTIONS(1358), - [anon_sym_AMP_EQ] = ACTIONS(1358), - [anon_sym_PIPE_EQ] = ACTIONS(1358), - [anon_sym_CARET_EQ] = ACTIONS(1358), - [anon_sym_LT_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_GT_EQ] = ACTIONS(1358), - [anon_sym_yield] = ACTIONS(1356), - [anon_sym_move] = ACTIONS(1356), - [anon_sym_try] = ACTIONS(1356), - [sym_integer_literal] = ACTIONS(1358), - [aux_sym_string_literal_token1] = ACTIONS(1358), - [sym_char_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1356), - [anon_sym_false] = ACTIONS(1356), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1356), - [sym_super] = ACTIONS(1356), - [sym_crate] = ACTIONS(1356), - [sym_metavariable] = ACTIONS(1358), - [sym_raw_string_literal] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1358), - }, - [429] = { - [sym_line_comment] = STATE(429), - [sym_block_comment] = STATE(429), + [403] = { + [sym_line_comment] = STATE(403), + [sym_block_comment] = STATE(403), [sym_identifier] = ACTIONS(1458), [anon_sym_SEMI] = ACTIONS(1460), [anon_sym_LPAREN] = ACTIONS(1460), @@ -66746,708 +63811,899 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1460), [sym_float_literal] = ACTIONS(1460), }, - [430] = { - [sym_line_comment] = STATE(430), - [sym_block_comment] = STATE(430), - [aux_sym__non_special_token_repeat1] = STATE(430), - [sym_identifier] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1441), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1441), - [anon_sym_RBRACK] = ACTIONS(1441), - [anon_sym_LBRACE] = ACTIONS(1441), - [anon_sym_RBRACE] = ACTIONS(1441), - [anon_sym_COLON] = ACTIONS(1465), - [anon_sym_DOLLAR] = ACTIONS(1441), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_STAR] = ACTIONS(1462), - [anon_sym_QMARK] = ACTIONS(1462), - [anon_sym_u8] = ACTIONS(1436), - [anon_sym_i8] = ACTIONS(1436), - [anon_sym_u16] = ACTIONS(1436), - [anon_sym_i16] = ACTIONS(1436), - [anon_sym_u32] = ACTIONS(1436), - [anon_sym_i32] = ACTIONS(1436), - [anon_sym_u64] = ACTIONS(1436), - [anon_sym_i64] = ACTIONS(1436), - [anon_sym_u128] = ACTIONS(1436), - [anon_sym_i128] = ACTIONS(1436), - [anon_sym_isize] = ACTIONS(1436), - [anon_sym_usize] = ACTIONS(1436), - [anon_sym_f32] = ACTIONS(1436), - [anon_sym_f64] = ACTIONS(1436), - [anon_sym_bool] = ACTIONS(1436), - [anon_sym_str] = ACTIONS(1436), - [anon_sym_char] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1465), - [anon_sym__] = ACTIONS(1465), - [anon_sym_BSLASH] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1465), - [anon_sym_EQ] = ACTIONS(1462), - [anon_sym_DASH_GT] = ACTIONS(1462), - [anon_sym_COMMA] = ACTIONS(1462), - [anon_sym_COLON_COLON] = ACTIONS(1462), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_DOT] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(1462), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1462), - [anon_sym_PERCENT] = ACTIONS(1462), - [anon_sym_CARET] = ACTIONS(1462), - [anon_sym_LT] = ACTIONS(1462), - [anon_sym_GT] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1462), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_as] = ACTIONS(1436), - [anon_sym_async] = ACTIONS(1436), - [anon_sym_await] = ACTIONS(1436), - [anon_sym_break] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_continue] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_enum] = ACTIONS(1436), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_for] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1436), - [anon_sym_impl] = ACTIONS(1436), - [anon_sym_let] = ACTIONS(1436), - [anon_sym_loop] = ACTIONS(1436), - [anon_sym_match] = ACTIONS(1436), - [anon_sym_mod] = ACTIONS(1436), - [anon_sym_pub] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1436), - [anon_sym_static] = ACTIONS(1436), - [anon_sym_struct] = ACTIONS(1436), - [anon_sym_trait] = ACTIONS(1436), - [anon_sym_type] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_unsafe] = ACTIONS(1436), - [anon_sym_use] = ACTIONS(1436), - [anon_sym_where] = ACTIONS(1436), - [anon_sym_while] = ACTIONS(1436), - [sym_mutable_specifier] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1441), - [aux_sym_string_literal_token1] = ACTIONS(1441), - [sym_char_literal] = ACTIONS(1441), - [anon_sym_true] = ACTIONS(1436), - [anon_sym_false] = ACTIONS(1436), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1436), - [sym_super] = ACTIONS(1436), - [sym_crate] = ACTIONS(1436), - [sym_raw_string_literal] = ACTIONS(1441), - [sym_float_literal] = ACTIONS(1441), + [404] = { + [sym_line_comment] = STATE(404), + [sym_block_comment] = STATE(404), + [sym_identifier] = ACTIONS(1462), + [anon_sym_SEMI] = ACTIONS(1464), + [anon_sym_LPAREN] = ACTIONS(1464), + [anon_sym_RPAREN] = ACTIONS(1464), + [anon_sym_LBRACK] = ACTIONS(1464), + [anon_sym_RBRACK] = ACTIONS(1464), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_RBRACE] = ACTIONS(1464), + [anon_sym_COLON] = ACTIONS(1462), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1464), + [anon_sym_QMARK] = ACTIONS(1464), + [anon_sym_u8] = ACTIONS(1462), + [anon_sym_i8] = ACTIONS(1462), + [anon_sym_u16] = ACTIONS(1462), + [anon_sym_i16] = ACTIONS(1462), + [anon_sym_u32] = ACTIONS(1462), + [anon_sym_i32] = ACTIONS(1462), + [anon_sym_u64] = ACTIONS(1462), + [anon_sym_i64] = ACTIONS(1462), + [anon_sym_u128] = ACTIONS(1462), + [anon_sym_i128] = ACTIONS(1462), + [anon_sym_isize] = ACTIONS(1462), + [anon_sym_usize] = ACTIONS(1462), + [anon_sym_f32] = ACTIONS(1462), + [anon_sym_f64] = ACTIONS(1462), + [anon_sym_bool] = ACTIONS(1462), + [anon_sym_str] = ACTIONS(1462), + [anon_sym_char] = ACTIONS(1462), + [anon_sym_SLASH] = ACTIONS(1462), + [anon_sym__] = ACTIONS(1462), + [anon_sym_BSLASH] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1462), + [anon_sym_EQ] = ACTIONS(1464), + [anon_sym_DASH_GT] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1464), + [anon_sym_COLON_COLON] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1464), + [anon_sym_DOT] = ACTIONS(1464), + [anon_sym_AT] = ACTIONS(1464), + [anon_sym_AMP] = ACTIONS(1464), + [anon_sym_POUND] = ACTIONS(1464), + [anon_sym_PERCENT] = ACTIONS(1464), + [anon_sym_CARET] = ACTIONS(1464), + [anon_sym_LT] = ACTIONS(1464), + [anon_sym_GT] = ACTIONS(1464), + [anon_sym_PIPE] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1464), + [anon_sym_SQUOTE] = ACTIONS(1462), + [anon_sym_as] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1462), + [anon_sym_await] = ACTIONS(1462), + [anon_sym_break] = ACTIONS(1462), + [anon_sym_const] = ACTIONS(1462), + [anon_sym_continue] = ACTIONS(1462), + [anon_sym_default] = ACTIONS(1462), + [anon_sym_enum] = ACTIONS(1462), + [anon_sym_fn] = ACTIONS(1462), + [anon_sym_for] = ACTIONS(1462), + [anon_sym_if] = ACTIONS(1462), + [anon_sym_impl] = ACTIONS(1462), + [anon_sym_let] = ACTIONS(1462), + [anon_sym_loop] = ACTIONS(1462), + [anon_sym_match] = ACTIONS(1462), + [anon_sym_mod] = ACTIONS(1462), + [anon_sym_pub] = ACTIONS(1462), + [anon_sym_return] = ACTIONS(1462), + [anon_sym_static] = ACTIONS(1462), + [anon_sym_struct] = ACTIONS(1462), + [anon_sym_trait] = ACTIONS(1462), + [anon_sym_type] = ACTIONS(1462), + [anon_sym_union] = ACTIONS(1462), + [anon_sym_unsafe] = ACTIONS(1462), + [anon_sym_use] = ACTIONS(1462), + [anon_sym_where] = ACTIONS(1462), + [anon_sym_while] = ACTIONS(1462), + [sym_mutable_specifier] = ACTIONS(1462), + [sym_integer_literal] = ACTIONS(1464), + [aux_sym_string_literal_token1] = ACTIONS(1464), + [sym_char_literal] = ACTIONS(1464), + [anon_sym_true] = ACTIONS(1462), + [anon_sym_false] = ACTIONS(1462), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1462), + [sym_super] = ACTIONS(1462), + [sym_crate] = ACTIONS(1462), + [sym_metavariable] = ACTIONS(1464), + [sym_raw_string_literal] = ACTIONS(1464), + [sym_float_literal] = ACTIONS(1464), }, - [431] = { - [sym_line_comment] = STATE(431), - [sym_block_comment] = STATE(431), - [sym_identifier] = ACTIONS(1468), - [anon_sym_SEMI] = ACTIONS(1470), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACK] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_COLON] = ACTIONS(1468), - [anon_sym_DOLLAR] = ACTIONS(1468), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_QMARK] = ACTIONS(1470), - [anon_sym_u8] = ACTIONS(1468), - [anon_sym_i8] = ACTIONS(1468), - [anon_sym_u16] = ACTIONS(1468), - [anon_sym_i16] = ACTIONS(1468), - [anon_sym_u32] = ACTIONS(1468), - [anon_sym_i32] = ACTIONS(1468), - [anon_sym_u64] = ACTIONS(1468), - [anon_sym_i64] = ACTIONS(1468), - [anon_sym_u128] = ACTIONS(1468), - [anon_sym_i128] = ACTIONS(1468), - [anon_sym_isize] = ACTIONS(1468), - [anon_sym_usize] = ACTIONS(1468), - [anon_sym_f32] = ACTIONS(1468), - [anon_sym_f64] = ACTIONS(1468), - [anon_sym_bool] = ACTIONS(1468), - [anon_sym_str] = ACTIONS(1468), - [anon_sym_char] = ACTIONS(1468), - [anon_sym_SLASH] = ACTIONS(1468), - [anon_sym__] = ACTIONS(1468), - [anon_sym_BSLASH] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1468), - [anon_sym_EQ] = ACTIONS(1470), - [anon_sym_DASH_GT] = ACTIONS(1470), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_COLON_COLON] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1470), - [anon_sym_DOT] = ACTIONS(1470), - [anon_sym_AT] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1470), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_PERCENT] = ACTIONS(1470), - [anon_sym_CARET] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1470), - [anon_sym_GT] = ACTIONS(1470), - [anon_sym_PIPE] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_SQUOTE] = ACTIONS(1468), - [anon_sym_as] = ACTIONS(1468), - [anon_sym_async] = ACTIONS(1468), - [anon_sym_await] = ACTIONS(1468), - [anon_sym_break] = ACTIONS(1468), - [anon_sym_const] = ACTIONS(1468), - [anon_sym_continue] = ACTIONS(1468), - [anon_sym_default] = ACTIONS(1468), - [anon_sym_enum] = ACTIONS(1468), - [anon_sym_fn] = ACTIONS(1468), - [anon_sym_for] = ACTIONS(1468), - [anon_sym_if] = ACTIONS(1468), - [anon_sym_impl] = ACTIONS(1468), - [anon_sym_let] = ACTIONS(1468), - [anon_sym_loop] = ACTIONS(1468), - [anon_sym_match] = ACTIONS(1468), - [anon_sym_mod] = ACTIONS(1468), - [anon_sym_pub] = ACTIONS(1468), - [anon_sym_return] = ACTIONS(1468), - [anon_sym_static] = ACTIONS(1468), - [anon_sym_struct] = ACTIONS(1468), - [anon_sym_trait] = ACTIONS(1468), - [anon_sym_type] = ACTIONS(1468), - [anon_sym_union] = ACTIONS(1468), - [anon_sym_unsafe] = ACTIONS(1468), - [anon_sym_use] = ACTIONS(1468), - [anon_sym_where] = ACTIONS(1468), - [anon_sym_while] = ACTIONS(1468), - [sym_mutable_specifier] = ACTIONS(1468), - [sym_integer_literal] = ACTIONS(1470), - [aux_sym_string_literal_token1] = ACTIONS(1470), - [sym_char_literal] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1468), - [anon_sym_false] = ACTIONS(1468), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1468), - [sym_super] = ACTIONS(1468), - [sym_crate] = ACTIONS(1468), - [sym_metavariable] = ACTIONS(1470), - [sym_raw_string_literal] = ACTIONS(1470), - [sym_float_literal] = ACTIONS(1470), + [405] = { + [sym_line_comment] = STATE(405), + [sym_block_comment] = STATE(405), + [sym_identifier] = ACTIONS(1466), + [anon_sym_SEMI] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(1468), + [anon_sym_RPAREN] = ACTIONS(1468), + [anon_sym_LBRACK] = ACTIONS(1468), + [anon_sym_RBRACK] = ACTIONS(1468), + [anon_sym_LBRACE] = ACTIONS(1468), + [anon_sym_RBRACE] = ACTIONS(1468), + [anon_sym_COLON] = ACTIONS(1466), + [anon_sym_DOLLAR] = ACTIONS(1466), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_STAR] = ACTIONS(1468), + [anon_sym_QMARK] = ACTIONS(1468), + [anon_sym_u8] = ACTIONS(1466), + [anon_sym_i8] = ACTIONS(1466), + [anon_sym_u16] = ACTIONS(1466), + [anon_sym_i16] = ACTIONS(1466), + [anon_sym_u32] = ACTIONS(1466), + [anon_sym_i32] = ACTIONS(1466), + [anon_sym_u64] = ACTIONS(1466), + [anon_sym_i64] = ACTIONS(1466), + [anon_sym_u128] = ACTIONS(1466), + [anon_sym_i128] = ACTIONS(1466), + [anon_sym_isize] = ACTIONS(1466), + [anon_sym_usize] = ACTIONS(1466), + [anon_sym_f32] = ACTIONS(1466), + [anon_sym_f64] = ACTIONS(1466), + [anon_sym_bool] = ACTIONS(1466), + [anon_sym_str] = ACTIONS(1466), + [anon_sym_char] = ACTIONS(1466), + [anon_sym_SLASH] = ACTIONS(1466), + [anon_sym__] = ACTIONS(1466), + [anon_sym_BSLASH] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1466), + [anon_sym_EQ] = ACTIONS(1468), + [anon_sym_DASH_GT] = ACTIONS(1468), + [anon_sym_COMMA] = ACTIONS(1468), + [anon_sym_COLON_COLON] = ACTIONS(1468), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_DOT] = ACTIONS(1468), + [anon_sym_AT] = ACTIONS(1468), + [anon_sym_AMP] = ACTIONS(1468), + [anon_sym_POUND] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1468), + [anon_sym_CARET] = ACTIONS(1468), + [anon_sym_LT] = ACTIONS(1468), + [anon_sym_GT] = ACTIONS(1468), + [anon_sym_PIPE] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1468), + [anon_sym_SQUOTE] = ACTIONS(1466), + [anon_sym_as] = ACTIONS(1466), + [anon_sym_async] = ACTIONS(1466), + [anon_sym_await] = ACTIONS(1466), + [anon_sym_break] = ACTIONS(1466), + [anon_sym_const] = ACTIONS(1466), + [anon_sym_continue] = ACTIONS(1466), + [anon_sym_default] = ACTIONS(1466), + [anon_sym_enum] = ACTIONS(1466), + [anon_sym_fn] = ACTIONS(1466), + [anon_sym_for] = ACTIONS(1466), + [anon_sym_if] = ACTIONS(1466), + [anon_sym_impl] = ACTIONS(1466), + [anon_sym_let] = ACTIONS(1466), + [anon_sym_loop] = ACTIONS(1466), + [anon_sym_match] = ACTIONS(1466), + [anon_sym_mod] = ACTIONS(1466), + [anon_sym_pub] = ACTIONS(1466), + [anon_sym_return] = ACTIONS(1466), + [anon_sym_static] = ACTIONS(1466), + [anon_sym_struct] = ACTIONS(1466), + [anon_sym_trait] = ACTIONS(1466), + [anon_sym_type] = ACTIONS(1466), + [anon_sym_union] = ACTIONS(1466), + [anon_sym_unsafe] = ACTIONS(1466), + [anon_sym_use] = ACTIONS(1466), + [anon_sym_where] = ACTIONS(1466), + [anon_sym_while] = ACTIONS(1466), + [sym_mutable_specifier] = ACTIONS(1466), + [sym_integer_literal] = ACTIONS(1468), + [aux_sym_string_literal_token1] = ACTIONS(1468), + [sym_char_literal] = ACTIONS(1468), + [anon_sym_true] = ACTIONS(1466), + [anon_sym_false] = ACTIONS(1466), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1466), + [sym_super] = ACTIONS(1466), + [sym_crate] = ACTIONS(1466), + [sym_metavariable] = ACTIONS(1468), + [sym_raw_string_literal] = ACTIONS(1468), + [sym_float_literal] = ACTIONS(1468), }, - [432] = { - [sym_line_comment] = STATE(432), - [sym_block_comment] = STATE(432), - [sym_identifier] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_RBRACK] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_COLON] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1472), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_QMARK] = ACTIONS(1474), - [anon_sym_u8] = ACTIONS(1472), - [anon_sym_i8] = ACTIONS(1472), - [anon_sym_u16] = ACTIONS(1472), - [anon_sym_i16] = ACTIONS(1472), - [anon_sym_u32] = ACTIONS(1472), - [anon_sym_i32] = ACTIONS(1472), - [anon_sym_u64] = ACTIONS(1472), - [anon_sym_i64] = ACTIONS(1472), - [anon_sym_u128] = ACTIONS(1472), - [anon_sym_i128] = ACTIONS(1472), - [anon_sym_isize] = ACTIONS(1472), - [anon_sym_usize] = ACTIONS(1472), - [anon_sym_f32] = ACTIONS(1472), - [anon_sym_f64] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_str] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_SLASH] = ACTIONS(1472), - [anon_sym__] = ACTIONS(1472), - [anon_sym_BSLASH] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_DASH_GT] = ACTIONS(1474), - [anon_sym_COMMA] = ACTIONS(1474), - [anon_sym_COLON_COLON] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT] = ACTIONS(1474), - [anon_sym_AT] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_PERCENT] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1474), - [anon_sym_GT] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1472), - [anon_sym_as] = ACTIONS(1472), - [anon_sym_async] = ACTIONS(1472), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_impl] = ACTIONS(1472), - [anon_sym_let] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_mod] = ACTIONS(1472), - [anon_sym_pub] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_trait] = ACTIONS(1472), - [anon_sym_type] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1472), - [anon_sym_where] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [sym_mutable_specifier] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1474), - [aux_sym_string_literal_token1] = ACTIONS(1474), - [sym_char_literal] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_crate] = ACTIONS(1472), - [sym_metavariable] = ACTIONS(1474), - [sym_raw_string_literal] = ACTIONS(1474), - [sym_float_literal] = ACTIONS(1474), + [406] = { + [sym_line_comment] = STATE(406), + [sym_block_comment] = STATE(406), + [sym_identifier] = ACTIONS(1470), + [anon_sym_SEMI] = ACTIONS(1472), + [anon_sym_LPAREN] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1472), + [anon_sym_RBRACK] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1472), + [anon_sym_RBRACE] = ACTIONS(1472), + [anon_sym_COLON] = ACTIONS(1470), + [anon_sym_DOLLAR] = ACTIONS(1470), + [anon_sym_PLUS] = ACTIONS(1472), + [anon_sym_STAR] = ACTIONS(1472), + [anon_sym_QMARK] = ACTIONS(1472), + [anon_sym_u8] = ACTIONS(1470), + [anon_sym_i8] = ACTIONS(1470), + [anon_sym_u16] = ACTIONS(1470), + [anon_sym_i16] = ACTIONS(1470), + [anon_sym_u32] = ACTIONS(1470), + [anon_sym_i32] = ACTIONS(1470), + [anon_sym_u64] = ACTIONS(1470), + [anon_sym_i64] = ACTIONS(1470), + [anon_sym_u128] = ACTIONS(1470), + [anon_sym_i128] = ACTIONS(1470), + [anon_sym_isize] = ACTIONS(1470), + [anon_sym_usize] = ACTIONS(1470), + [anon_sym_f32] = ACTIONS(1470), + [anon_sym_f64] = ACTIONS(1470), + [anon_sym_bool] = ACTIONS(1470), + [anon_sym_str] = ACTIONS(1470), + [anon_sym_char] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1470), + [anon_sym__] = ACTIONS(1470), + [anon_sym_BSLASH] = ACTIONS(1472), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_EQ] = ACTIONS(1472), + [anon_sym_DASH_GT] = ACTIONS(1472), + [anon_sym_COMMA] = ACTIONS(1472), + [anon_sym_COLON_COLON] = ACTIONS(1472), + [anon_sym_BANG] = ACTIONS(1472), + [anon_sym_DOT] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(1472), + [anon_sym_AMP] = ACTIONS(1472), + [anon_sym_POUND] = ACTIONS(1472), + [anon_sym_PERCENT] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1472), + [anon_sym_LT] = ACTIONS(1472), + [anon_sym_GT] = ACTIONS(1472), + [anon_sym_PIPE] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1472), + [anon_sym_SQUOTE] = ACTIONS(1470), + [anon_sym_as] = ACTIONS(1470), + [anon_sym_async] = ACTIONS(1470), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_break] = ACTIONS(1470), + [anon_sym_const] = ACTIONS(1470), + [anon_sym_continue] = ACTIONS(1470), + [anon_sym_default] = ACTIONS(1470), + [anon_sym_enum] = ACTIONS(1470), + [anon_sym_fn] = ACTIONS(1470), + [anon_sym_for] = ACTIONS(1470), + [anon_sym_if] = ACTIONS(1470), + [anon_sym_impl] = ACTIONS(1470), + [anon_sym_let] = ACTIONS(1470), + [anon_sym_loop] = ACTIONS(1470), + [anon_sym_match] = ACTIONS(1470), + [anon_sym_mod] = ACTIONS(1470), + [anon_sym_pub] = ACTIONS(1470), + [anon_sym_return] = ACTIONS(1470), + [anon_sym_static] = ACTIONS(1470), + [anon_sym_struct] = ACTIONS(1470), + [anon_sym_trait] = ACTIONS(1470), + [anon_sym_type] = ACTIONS(1470), + [anon_sym_union] = ACTIONS(1470), + [anon_sym_unsafe] = ACTIONS(1470), + [anon_sym_use] = ACTIONS(1470), + [anon_sym_where] = ACTIONS(1470), + [anon_sym_while] = ACTIONS(1470), + [sym_mutable_specifier] = ACTIONS(1470), + [sym_integer_literal] = ACTIONS(1472), + [aux_sym_string_literal_token1] = ACTIONS(1472), + [sym_char_literal] = ACTIONS(1472), + [anon_sym_true] = ACTIONS(1470), + [anon_sym_false] = ACTIONS(1470), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1470), + [sym_super] = ACTIONS(1470), + [sym_crate] = ACTIONS(1470), + [sym_metavariable] = ACTIONS(1472), + [sym_raw_string_literal] = ACTIONS(1472), + [sym_float_literal] = ACTIONS(1472), }, - [433] = { - [sym_line_comment] = STATE(433), - [sym_block_comment] = STATE(433), - [sym_identifier] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1478), - [anon_sym_RBRACK] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_COLON] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1476), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_QMARK] = ACTIONS(1478), - [anon_sym_u8] = ACTIONS(1476), - [anon_sym_i8] = ACTIONS(1476), - [anon_sym_u16] = ACTIONS(1476), - [anon_sym_i16] = ACTIONS(1476), - [anon_sym_u32] = ACTIONS(1476), - [anon_sym_i32] = ACTIONS(1476), - [anon_sym_u64] = ACTIONS(1476), - [anon_sym_i64] = ACTIONS(1476), - [anon_sym_u128] = ACTIONS(1476), - [anon_sym_i128] = ACTIONS(1476), - [anon_sym_isize] = ACTIONS(1476), - [anon_sym_usize] = ACTIONS(1476), - [anon_sym_f32] = ACTIONS(1476), - [anon_sym_f64] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_str] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1476), - [anon_sym__] = ACTIONS(1476), - [anon_sym_BSLASH] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_DASH_GT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1478), - [anon_sym_COLON_COLON] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1478), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_as] = ACTIONS(1476), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_await] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_impl] = ACTIONS(1476), - [anon_sym_let] = ACTIONS(1476), - [anon_sym_loop] = ACTIONS(1476), - [anon_sym_match] = ACTIONS(1476), - [anon_sym_mod] = ACTIONS(1476), - [anon_sym_pub] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_trait] = ACTIONS(1476), - [anon_sym_type] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1476), - [anon_sym_use] = ACTIONS(1476), - [anon_sym_where] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [sym_mutable_specifier] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1478), - [aux_sym_string_literal_token1] = ACTIONS(1478), - [sym_char_literal] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1476), - [sym_super] = ACTIONS(1476), - [sym_crate] = ACTIONS(1476), - [sym_metavariable] = ACTIONS(1478), - [sym_raw_string_literal] = ACTIONS(1478), - [sym_float_literal] = ACTIONS(1478), + [407] = { + [sym_line_comment] = STATE(407), + [sym_block_comment] = STATE(407), + [sym_identifier] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_COLON] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1474), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_u8] = ACTIONS(1474), + [anon_sym_i8] = ACTIONS(1474), + [anon_sym_u16] = ACTIONS(1474), + [anon_sym_i16] = ACTIONS(1474), + [anon_sym_u32] = ACTIONS(1474), + [anon_sym_i32] = ACTIONS(1474), + [anon_sym_u64] = ACTIONS(1474), + [anon_sym_i64] = ACTIONS(1474), + [anon_sym_u128] = ACTIONS(1474), + [anon_sym_i128] = ACTIONS(1474), + [anon_sym_isize] = ACTIONS(1474), + [anon_sym_usize] = ACTIONS(1474), + [anon_sym_f32] = ACTIONS(1474), + [anon_sym_f64] = ACTIONS(1474), + [anon_sym_bool] = ACTIONS(1474), + [anon_sym_str] = ACTIONS(1474), + [anon_sym_char] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym__] = ACTIONS(1474), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_DASH_GT] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_as] = ACTIONS(1474), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_fn] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_impl] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_pub] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_trait] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_unsafe] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_where] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [sym_mutable_specifier] = ACTIONS(1474), + [sym_integer_literal] = ACTIONS(1476), + [aux_sym_string_literal_token1] = ACTIONS(1476), + [sym_char_literal] = ACTIONS(1476), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1474), + [sym_super] = ACTIONS(1474), + [sym_crate] = ACTIONS(1474), + [sym_metavariable] = ACTIONS(1476), + [sym_raw_string_literal] = ACTIONS(1476), + [sym_float_literal] = ACTIONS(1476), }, - [434] = { - [sym_line_comment] = STATE(434), - [sym_block_comment] = STATE(434), - [sym_identifier] = ACTIONS(1480), - [anon_sym_SEMI] = ACTIONS(1482), - [anon_sym_LPAREN] = ACTIONS(1482), - [anon_sym_RPAREN] = ACTIONS(1482), - [anon_sym_LBRACK] = ACTIONS(1482), - [anon_sym_RBRACK] = ACTIONS(1482), - [anon_sym_LBRACE] = ACTIONS(1482), - [anon_sym_RBRACE] = ACTIONS(1482), - [anon_sym_COLON] = ACTIONS(1480), + [408] = { + [sym_line_comment] = STATE(408), + [sym_block_comment] = STATE(408), + [aux_sym__non_special_token_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_COLON] = ACTIONS(1346), [anon_sym_DOLLAR] = ACTIONS(1480), - [anon_sym_PLUS] = ACTIONS(1482), - [anon_sym_STAR] = ACTIONS(1482), - [anon_sym_QMARK] = ACTIONS(1482), - [anon_sym_u8] = ACTIONS(1480), - [anon_sym_i8] = ACTIONS(1480), - [anon_sym_u16] = ACTIONS(1480), - [anon_sym_i16] = ACTIONS(1480), - [anon_sym_u32] = ACTIONS(1480), - [anon_sym_i32] = ACTIONS(1480), - [anon_sym_u64] = ACTIONS(1480), - [anon_sym_i64] = ACTIONS(1480), - [anon_sym_u128] = ACTIONS(1480), - [anon_sym_i128] = ACTIONS(1480), - [anon_sym_isize] = ACTIONS(1480), - [anon_sym_usize] = ACTIONS(1480), - [anon_sym_f32] = ACTIONS(1480), - [anon_sym_f64] = ACTIONS(1480), - [anon_sym_bool] = ACTIONS(1480), - [anon_sym_str] = ACTIONS(1480), - [anon_sym_char] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1480), - [anon_sym__] = ACTIONS(1480), - [anon_sym_BSLASH] = ACTIONS(1482), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1482), - [anon_sym_DASH_GT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1482), - [anon_sym_DOT] = ACTIONS(1482), - [anon_sym_AT] = ACTIONS(1482), - [anon_sym_AMP] = ACTIONS(1482), - [anon_sym_POUND] = ACTIONS(1482), - [anon_sym_PERCENT] = ACTIONS(1482), - [anon_sym_CARET] = ACTIONS(1482), - [anon_sym_LT] = ACTIONS(1482), - [anon_sym_GT] = ACTIONS(1482), - [anon_sym_PIPE] = ACTIONS(1482), - [anon_sym_TILDE] = ACTIONS(1482), - [anon_sym_SQUOTE] = ACTIONS(1480), - [anon_sym_as] = ACTIONS(1480), - [anon_sym_async] = ACTIONS(1480), - [anon_sym_await] = ACTIONS(1480), - [anon_sym_break] = ACTIONS(1480), - [anon_sym_const] = ACTIONS(1480), - [anon_sym_continue] = ACTIONS(1480), - [anon_sym_default] = ACTIONS(1480), - [anon_sym_enum] = ACTIONS(1480), - [anon_sym_fn] = ACTIONS(1480), - [anon_sym_for] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1480), - [anon_sym_impl] = ACTIONS(1480), - [anon_sym_let] = ACTIONS(1480), - [anon_sym_loop] = ACTIONS(1480), - [anon_sym_match] = ACTIONS(1480), - [anon_sym_mod] = ACTIONS(1480), - [anon_sym_pub] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1480), - [anon_sym_static] = ACTIONS(1480), - [anon_sym_struct] = ACTIONS(1480), - [anon_sym_trait] = ACTIONS(1480), - [anon_sym_type] = ACTIONS(1480), - [anon_sym_union] = ACTIONS(1480), - [anon_sym_unsafe] = ACTIONS(1480), - [anon_sym_use] = ACTIONS(1480), - [anon_sym_where] = ACTIONS(1480), - [anon_sym_while] = ACTIONS(1480), - [sym_mutable_specifier] = ACTIONS(1480), - [sym_integer_literal] = ACTIONS(1482), - [aux_sym_string_literal_token1] = ACTIONS(1482), - [sym_char_literal] = ACTIONS(1482), - [anon_sym_true] = ACTIONS(1480), - [anon_sym_false] = ACTIONS(1480), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1480), - [sym_super] = ACTIONS(1480), - [sym_crate] = ACTIONS(1480), - [sym_metavariable] = ACTIONS(1482), - [sym_raw_string_literal] = ACTIONS(1482), - [sym_float_literal] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_u8] = ACTIONS(1478), + [anon_sym_i8] = ACTIONS(1478), + [anon_sym_u16] = ACTIONS(1478), + [anon_sym_i16] = ACTIONS(1478), + [anon_sym_u32] = ACTIONS(1478), + [anon_sym_i32] = ACTIONS(1478), + [anon_sym_u64] = ACTIONS(1478), + [anon_sym_i64] = ACTIONS(1478), + [anon_sym_u128] = ACTIONS(1478), + [anon_sym_i128] = ACTIONS(1478), + [anon_sym_isize] = ACTIONS(1478), + [anon_sym_usize] = ACTIONS(1478), + [anon_sym_f32] = ACTIONS(1478), + [anon_sym_f64] = ACTIONS(1478), + [anon_sym_bool] = ACTIONS(1478), + [anon_sym_str] = ACTIONS(1478), + [anon_sym_char] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1346), + [anon_sym__] = ACTIONS(1346), + [anon_sym_BSLASH] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_DASH_GT] = ACTIONS(1336), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1336), + [anon_sym_BANG] = ACTIONS(1336), + [anon_sym_DOT] = ACTIONS(1336), + [anon_sym_AT] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_POUND] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_TILDE] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_as] = ACTIONS(1478), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_await] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_fn] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_impl] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_pub] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_trait] = ACTIONS(1478), + [anon_sym_type] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_where] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [sym_mutable_specifier] = ACTIONS(1478), + [sym_integer_literal] = ACTIONS(1480), + [aux_sym_string_literal_token1] = ACTIONS(1480), + [sym_char_literal] = ACTIONS(1480), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1478), + [sym_super] = ACTIONS(1478), + [sym_crate] = ACTIONS(1478), + [sym_raw_string_literal] = ACTIONS(1480), + [sym_float_literal] = ACTIONS(1480), }, - [435] = { - [sym_line_comment] = STATE(435), - [sym_block_comment] = STATE(435), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_RBRACK] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_COLON] = ACTIONS(1484), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_u8] = ACTIONS(1428), - [anon_sym_i8] = ACTIONS(1428), - [anon_sym_u16] = ACTIONS(1428), - [anon_sym_i16] = ACTIONS(1428), - [anon_sym_u32] = ACTIONS(1428), - [anon_sym_i32] = ACTIONS(1428), - [anon_sym_u64] = ACTIONS(1428), - [anon_sym_i64] = ACTIONS(1428), - [anon_sym_u128] = ACTIONS(1428), - [anon_sym_i128] = ACTIONS(1428), - [anon_sym_isize] = ACTIONS(1428), - [anon_sym_usize] = ACTIONS(1428), - [anon_sym_f32] = ACTIONS(1428), - [anon_sym_f64] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_str] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1428), - [anon_sym__] = ACTIONS(1428), - [anon_sym_BSLASH] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_DASH_GT] = ACTIONS(1430), - [anon_sym_COMMA] = ACTIONS(1430), - [anon_sym_COLON_COLON] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_AT] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_as] = ACTIONS(1428), - [anon_sym_async] = ACTIONS(1428), - [anon_sym_await] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_impl] = ACTIONS(1428), - [anon_sym_let] = ACTIONS(1428), - [anon_sym_loop] = ACTIONS(1428), - [anon_sym_match] = ACTIONS(1428), - [anon_sym_mod] = ACTIONS(1428), - [anon_sym_pub] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_trait] = ACTIONS(1428), - [anon_sym_type] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_unsafe] = ACTIONS(1428), - [anon_sym_use] = ACTIONS(1428), - [anon_sym_where] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [sym_mutable_specifier] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1430), - [aux_sym_string_literal_token1] = ACTIONS(1430), - [sym_char_literal] = ACTIONS(1430), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1428), - [sym_super] = ACTIONS(1428), - [sym_crate] = ACTIONS(1428), - [sym_metavariable] = ACTIONS(1430), - [sym_raw_string_literal] = ACTIONS(1430), - [sym_float_literal] = ACTIONS(1430), + [409] = { + [sym_line_comment] = STATE(409), + [sym_block_comment] = STATE(409), + [sym_identifier] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_COLON] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1482), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_u8] = ACTIONS(1482), + [anon_sym_i8] = ACTIONS(1482), + [anon_sym_u16] = ACTIONS(1482), + [anon_sym_i16] = ACTIONS(1482), + [anon_sym_u32] = ACTIONS(1482), + [anon_sym_i32] = ACTIONS(1482), + [anon_sym_u64] = ACTIONS(1482), + [anon_sym_i64] = ACTIONS(1482), + [anon_sym_u128] = ACTIONS(1482), + [anon_sym_i128] = ACTIONS(1482), + [anon_sym_isize] = ACTIONS(1482), + [anon_sym_usize] = ACTIONS(1482), + [anon_sym_f32] = ACTIONS(1482), + [anon_sym_f64] = ACTIONS(1482), + [anon_sym_bool] = ACTIONS(1482), + [anon_sym_str] = ACTIONS(1482), + [anon_sym_char] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1482), + [anon_sym__] = ACTIONS(1482), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_DASH_GT] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COLON_COLON] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(1482), + [anon_sym_async] = ACTIONS(1482), + [anon_sym_await] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_fn] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_impl] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1482), + [anon_sym_loop] = ACTIONS(1482), + [anon_sym_match] = ACTIONS(1482), + [anon_sym_mod] = ACTIONS(1482), + [anon_sym_pub] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_trait] = ACTIONS(1482), + [anon_sym_type] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_use] = ACTIONS(1482), + [anon_sym_where] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [sym_mutable_specifier] = ACTIONS(1482), + [sym_integer_literal] = ACTIONS(1484), + [aux_sym_string_literal_token1] = ACTIONS(1484), + [sym_char_literal] = ACTIONS(1484), + [anon_sym_true] = ACTIONS(1482), + [anon_sym_false] = ACTIONS(1482), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1482), + [sym_super] = ACTIONS(1482), + [sym_crate] = ACTIONS(1482), + [sym_metavariable] = ACTIONS(1484), + [sym_raw_string_literal] = ACTIONS(1484), + [sym_float_literal] = ACTIONS(1484), }, - [436] = { - [sym_line_comment] = STATE(436), - [sym_block_comment] = STATE(436), - [sym_identifier] = ACTIONS(1486), - [anon_sym_SEMI] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1488), - [anon_sym_RPAREN] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1488), - [anon_sym_RBRACK] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1488), + [410] = { + [sym_line_comment] = STATE(410), + [sym_block_comment] = STATE(410), + [sym_identifier] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), + [anon_sym_COLON] = ACTIONS(1412), + [anon_sym_DOLLAR] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_QMARK] = ACTIONS(1414), + [anon_sym_u8] = ACTIONS(1412), + [anon_sym_i8] = ACTIONS(1412), + [anon_sym_u16] = ACTIONS(1412), + [anon_sym_i16] = ACTIONS(1412), + [anon_sym_u32] = ACTIONS(1412), + [anon_sym_i32] = ACTIONS(1412), + [anon_sym_u64] = ACTIONS(1412), + [anon_sym_i64] = ACTIONS(1412), + [anon_sym_u128] = ACTIONS(1412), + [anon_sym_i128] = ACTIONS(1412), + [anon_sym_isize] = ACTIONS(1412), + [anon_sym_usize] = ACTIONS(1412), + [anon_sym_f32] = ACTIONS(1412), + [anon_sym_f64] = ACTIONS(1412), + [anon_sym_bool] = ACTIONS(1412), + [anon_sym_str] = ACTIONS(1412), + [anon_sym_char] = ACTIONS(1412), + [anon_sym_SLASH] = ACTIONS(1412), + [anon_sym__] = ACTIONS(1412), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_DASH_GT] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_COLON_COLON] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_as] = ACTIONS(1412), + [anon_sym_async] = ACTIONS(1412), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_fn] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_impl] = ACTIONS(1412), + [anon_sym_let] = ACTIONS(1412), + [anon_sym_loop] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1412), + [anon_sym_mod] = ACTIONS(1412), + [anon_sym_pub] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_trait] = ACTIONS(1412), + [anon_sym_type] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1412), + [anon_sym_where] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [sym_mutable_specifier] = ACTIONS(1412), + [sym_integer_literal] = ACTIONS(1414), + [aux_sym_string_literal_token1] = ACTIONS(1414), + [sym_char_literal] = ACTIONS(1414), + [anon_sym_true] = ACTIONS(1412), + [anon_sym_false] = ACTIONS(1412), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1414), + [sym_raw_string_literal] = ACTIONS(1414), + [sym_float_literal] = ACTIONS(1414), + }, + [411] = { + [sym_line_comment] = STATE(411), + [sym_block_comment] = STATE(411), + [sym_identifier] = ACTIONS(1412), + [anon_sym_SEMI] = ACTIONS(1414), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_RPAREN] = ACTIONS(1414), + [anon_sym_LBRACK] = ACTIONS(1414), + [anon_sym_RBRACK] = ACTIONS(1414), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1414), [anon_sym_COLON] = ACTIONS(1486), - [anon_sym_DOLLAR] = ACTIONS(1486), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_STAR] = ACTIONS(1488), - [anon_sym_QMARK] = ACTIONS(1488), - [anon_sym_u8] = ACTIONS(1486), - [anon_sym_i8] = ACTIONS(1486), - [anon_sym_u16] = ACTIONS(1486), - [anon_sym_i16] = ACTIONS(1486), - [anon_sym_u32] = ACTIONS(1486), - [anon_sym_i32] = ACTIONS(1486), - [anon_sym_u64] = ACTIONS(1486), - [anon_sym_i64] = ACTIONS(1486), - [anon_sym_u128] = ACTIONS(1486), - [anon_sym_i128] = ACTIONS(1486), - [anon_sym_isize] = ACTIONS(1486), - [anon_sym_usize] = ACTIONS(1486), - [anon_sym_f32] = ACTIONS(1486), - [anon_sym_f64] = ACTIONS(1486), - [anon_sym_bool] = ACTIONS(1486), - [anon_sym_str] = ACTIONS(1486), - [anon_sym_char] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1486), - [anon_sym__] = ACTIONS(1486), - [anon_sym_BSLASH] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1486), - [anon_sym_EQ] = ACTIONS(1488), - [anon_sym_DASH_GT] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1488), - [anon_sym_COLON_COLON] = ACTIONS(1488), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_DOT] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(1488), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(1488), - [anon_sym_PERCENT] = ACTIONS(1488), - [anon_sym_CARET] = ACTIONS(1488), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_GT] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_TILDE] = ACTIONS(1488), - [anon_sym_SQUOTE] = ACTIONS(1486), - [anon_sym_as] = ACTIONS(1486), - [anon_sym_async] = ACTIONS(1486), - [anon_sym_await] = ACTIONS(1486), - [anon_sym_break] = ACTIONS(1486), - [anon_sym_const] = ACTIONS(1486), - [anon_sym_continue] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1486), - [anon_sym_enum] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1486), - [anon_sym_for] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1486), - [anon_sym_impl] = ACTIONS(1486), - [anon_sym_let] = ACTIONS(1486), - [anon_sym_loop] = ACTIONS(1486), - [anon_sym_match] = ACTIONS(1486), - [anon_sym_mod] = ACTIONS(1486), - [anon_sym_pub] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1486), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_struct] = ACTIONS(1486), - [anon_sym_trait] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1486), - [anon_sym_unsafe] = ACTIONS(1486), - [anon_sym_use] = ACTIONS(1486), - [anon_sym_where] = ACTIONS(1486), - [anon_sym_while] = ACTIONS(1486), - [sym_mutable_specifier] = ACTIONS(1486), - [sym_integer_literal] = ACTIONS(1488), - [aux_sym_string_literal_token1] = ACTIONS(1488), - [sym_char_literal] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1486), - [anon_sym_false] = ACTIONS(1486), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1486), - [sym_super] = ACTIONS(1486), - [sym_crate] = ACTIONS(1486), - [sym_metavariable] = ACTIONS(1488), - [sym_raw_string_literal] = ACTIONS(1488), - [sym_float_literal] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1414), + [anon_sym_STAR] = ACTIONS(1414), + [anon_sym_QMARK] = ACTIONS(1414), + [anon_sym_u8] = ACTIONS(1412), + [anon_sym_i8] = ACTIONS(1412), + [anon_sym_u16] = ACTIONS(1412), + [anon_sym_i16] = ACTIONS(1412), + [anon_sym_u32] = ACTIONS(1412), + [anon_sym_i32] = ACTIONS(1412), + [anon_sym_u64] = ACTIONS(1412), + [anon_sym_i64] = ACTIONS(1412), + [anon_sym_u128] = ACTIONS(1412), + [anon_sym_i128] = ACTIONS(1412), + [anon_sym_isize] = ACTIONS(1412), + [anon_sym_usize] = ACTIONS(1412), + [anon_sym_f32] = ACTIONS(1412), + [anon_sym_f64] = ACTIONS(1412), + [anon_sym_bool] = ACTIONS(1412), + [anon_sym_str] = ACTIONS(1412), + [anon_sym_char] = ACTIONS(1412), + [anon_sym_SLASH] = ACTIONS(1412), + [anon_sym__] = ACTIONS(1412), + [anon_sym_BSLASH] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1412), + [anon_sym_EQ] = ACTIONS(1414), + [anon_sym_DASH_GT] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1414), + [anon_sym_COLON_COLON] = ACTIONS(1414), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_DOT] = ACTIONS(1414), + [anon_sym_AT] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_POUND] = ACTIONS(1414), + [anon_sym_PERCENT] = ACTIONS(1414), + [anon_sym_CARET] = ACTIONS(1414), + [anon_sym_LT] = ACTIONS(1414), + [anon_sym_GT] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), + [anon_sym_TILDE] = ACTIONS(1414), + [anon_sym_SQUOTE] = ACTIONS(1412), + [anon_sym_as] = ACTIONS(1412), + [anon_sym_async] = ACTIONS(1412), + [anon_sym_await] = ACTIONS(1412), + [anon_sym_break] = ACTIONS(1412), + [anon_sym_const] = ACTIONS(1412), + [anon_sym_continue] = ACTIONS(1412), + [anon_sym_default] = ACTIONS(1412), + [anon_sym_enum] = ACTIONS(1412), + [anon_sym_fn] = ACTIONS(1412), + [anon_sym_for] = ACTIONS(1412), + [anon_sym_if] = ACTIONS(1412), + [anon_sym_impl] = ACTIONS(1412), + [anon_sym_let] = ACTIONS(1412), + [anon_sym_loop] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1412), + [anon_sym_mod] = ACTIONS(1412), + [anon_sym_pub] = ACTIONS(1412), + [anon_sym_return] = ACTIONS(1412), + [anon_sym_static] = ACTIONS(1412), + [anon_sym_struct] = ACTIONS(1412), + [anon_sym_trait] = ACTIONS(1412), + [anon_sym_type] = ACTIONS(1412), + [anon_sym_union] = ACTIONS(1412), + [anon_sym_unsafe] = ACTIONS(1412), + [anon_sym_use] = ACTIONS(1412), + [anon_sym_where] = ACTIONS(1412), + [anon_sym_while] = ACTIONS(1412), + [sym_mutable_specifier] = ACTIONS(1412), + [sym_integer_literal] = ACTIONS(1414), + [aux_sym_string_literal_token1] = ACTIONS(1414), + [sym_char_literal] = ACTIONS(1414), + [anon_sym_true] = ACTIONS(1412), + [anon_sym_false] = ACTIONS(1412), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1412), + [sym_super] = ACTIONS(1412), + [sym_crate] = ACTIONS(1412), + [sym_metavariable] = ACTIONS(1414), + [sym_raw_string_literal] = ACTIONS(1414), + [sym_float_literal] = ACTIONS(1414), }, - [437] = { - [sym_line_comment] = STATE(437), - [sym_block_comment] = STATE(437), - [sym_identifier] = ACTIONS(1490), + [412] = { + [sym_line_comment] = STATE(412), + [sym_block_comment] = STATE(412), + [sym_identifier] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1490), + [anon_sym_RPAREN] = ACTIONS(1490), + [anon_sym_LBRACK] = ACTIONS(1490), + [anon_sym_RBRACK] = ACTIONS(1490), + [anon_sym_LBRACE] = ACTIONS(1490), + [anon_sym_RBRACE] = ACTIONS(1490), + [anon_sym_COLON] = ACTIONS(1488), + [anon_sym_DOLLAR] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1490), + [anon_sym_STAR] = ACTIONS(1490), + [anon_sym_QMARK] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1488), + [anon_sym_i8] = ACTIONS(1488), + [anon_sym_u16] = ACTIONS(1488), + [anon_sym_i16] = ACTIONS(1488), + [anon_sym_u32] = ACTIONS(1488), + [anon_sym_i32] = ACTIONS(1488), + [anon_sym_u64] = ACTIONS(1488), + [anon_sym_i64] = ACTIONS(1488), + [anon_sym_u128] = ACTIONS(1488), + [anon_sym_i128] = ACTIONS(1488), + [anon_sym_isize] = ACTIONS(1488), + [anon_sym_usize] = ACTIONS(1488), + [anon_sym_f32] = ACTIONS(1488), + [anon_sym_f64] = ACTIONS(1488), + [anon_sym_bool] = ACTIONS(1488), + [anon_sym_str] = ACTIONS(1488), + [anon_sym_char] = ACTIONS(1488), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym__] = ACTIONS(1488), + [anon_sym_BSLASH] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1488), + [anon_sym_EQ] = ACTIONS(1490), + [anon_sym_DASH_GT] = ACTIONS(1490), + [anon_sym_COMMA] = ACTIONS(1490), + [anon_sym_COLON_COLON] = ACTIONS(1490), + [anon_sym_BANG] = ACTIONS(1490), + [anon_sym_DOT] = ACTIONS(1490), + [anon_sym_AT] = ACTIONS(1490), + [anon_sym_AMP] = ACTIONS(1490), + [anon_sym_POUND] = ACTIONS(1490), + [anon_sym_PERCENT] = ACTIONS(1490), + [anon_sym_CARET] = ACTIONS(1490), + [anon_sym_LT] = ACTIONS(1490), + [anon_sym_GT] = ACTIONS(1490), + [anon_sym_PIPE] = ACTIONS(1490), + [anon_sym_TILDE] = ACTIONS(1490), + [anon_sym_SQUOTE] = ACTIONS(1488), + [anon_sym_as] = ACTIONS(1488), + [anon_sym_async] = ACTIONS(1488), + [anon_sym_await] = ACTIONS(1488), + [anon_sym_break] = ACTIONS(1488), + [anon_sym_const] = ACTIONS(1488), + [anon_sym_continue] = ACTIONS(1488), + [anon_sym_default] = ACTIONS(1488), + [anon_sym_enum] = ACTIONS(1488), + [anon_sym_fn] = ACTIONS(1488), + [anon_sym_for] = ACTIONS(1488), + [anon_sym_if] = ACTIONS(1488), + [anon_sym_impl] = ACTIONS(1488), + [anon_sym_let] = ACTIONS(1488), + [anon_sym_loop] = ACTIONS(1488), + [anon_sym_match] = ACTIONS(1488), + [anon_sym_mod] = ACTIONS(1488), + [anon_sym_pub] = ACTIONS(1488), + [anon_sym_return] = ACTIONS(1488), + [anon_sym_static] = ACTIONS(1488), + [anon_sym_struct] = ACTIONS(1488), + [anon_sym_trait] = ACTIONS(1488), + [anon_sym_type] = ACTIONS(1488), + [anon_sym_union] = ACTIONS(1488), + [anon_sym_unsafe] = ACTIONS(1488), + [anon_sym_use] = ACTIONS(1488), + [anon_sym_where] = ACTIONS(1488), + [anon_sym_while] = ACTIONS(1488), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1490), + [aux_sym_string_literal_token1] = ACTIONS(1490), + [sym_char_literal] = ACTIONS(1490), + [anon_sym_true] = ACTIONS(1488), + [anon_sym_false] = ACTIONS(1488), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1488), + [sym_super] = ACTIONS(1488), + [sym_crate] = ACTIONS(1488), + [sym_metavariable] = ACTIONS(1490), + [sym_raw_string_literal] = ACTIONS(1490), + [sym_float_literal] = ACTIONS(1490), + }, + [413] = { + [sym_line_comment] = STATE(413), + [sym_block_comment] = STATE(413), + [aux_sym__non_special_token_repeat1] = STATE(413), + [sym_identifier] = ACTIONS(1416), [anon_sym_SEMI] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1492), - [anon_sym_RBRACK] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1492), - [anon_sym_COLON] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1490), + [anon_sym_LPAREN] = ACTIONS(1421), + [anon_sym_RPAREN] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(1421), + [anon_sym_RBRACK] = ACTIONS(1421), + [anon_sym_LBRACE] = ACTIONS(1421), + [anon_sym_RBRACE] = ACTIONS(1421), + [anon_sym_COLON] = ACTIONS(1495), + [anon_sym_DOLLAR] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1492), [anon_sym_STAR] = ACTIONS(1492), [anon_sym_QMARK] = ACTIONS(1492), - [anon_sym_u8] = ACTIONS(1490), - [anon_sym_i8] = ACTIONS(1490), - [anon_sym_u16] = ACTIONS(1490), - [anon_sym_i16] = ACTIONS(1490), - [anon_sym_u32] = ACTIONS(1490), - [anon_sym_i32] = ACTIONS(1490), - [anon_sym_u64] = ACTIONS(1490), - [anon_sym_i64] = ACTIONS(1490), - [anon_sym_u128] = ACTIONS(1490), - [anon_sym_i128] = ACTIONS(1490), - [anon_sym_isize] = ACTIONS(1490), - [anon_sym_usize] = ACTIONS(1490), - [anon_sym_f32] = ACTIONS(1490), - [anon_sym_f64] = ACTIONS(1490), - [anon_sym_bool] = ACTIONS(1490), - [anon_sym_str] = ACTIONS(1490), - [anon_sym_char] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1490), - [anon_sym__] = ACTIONS(1490), + [anon_sym_u8] = ACTIONS(1416), + [anon_sym_i8] = ACTIONS(1416), + [anon_sym_u16] = ACTIONS(1416), + [anon_sym_i16] = ACTIONS(1416), + [anon_sym_u32] = ACTIONS(1416), + [anon_sym_i32] = ACTIONS(1416), + [anon_sym_u64] = ACTIONS(1416), + [anon_sym_i64] = ACTIONS(1416), + [anon_sym_u128] = ACTIONS(1416), + [anon_sym_i128] = ACTIONS(1416), + [anon_sym_isize] = ACTIONS(1416), + [anon_sym_usize] = ACTIONS(1416), + [anon_sym_f32] = ACTIONS(1416), + [anon_sym_f64] = ACTIONS(1416), + [anon_sym_bool] = ACTIONS(1416), + [anon_sym_str] = ACTIONS(1416), + [anon_sym_char] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1495), + [anon_sym__] = ACTIONS(1495), [anon_sym_BSLASH] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1490), + [anon_sym_DASH] = ACTIONS(1495), [anon_sym_EQ] = ACTIONS(1492), [anon_sym_DASH_GT] = ACTIONS(1492), [anon_sym_COMMA] = ACTIONS(1492), @@ -67463,147 +64719,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1492), [anon_sym_PIPE] = ACTIONS(1492), [anon_sym_TILDE] = ACTIONS(1492), - [anon_sym_SQUOTE] = ACTIONS(1490), - [anon_sym_as] = ACTIONS(1490), - [anon_sym_async] = ACTIONS(1490), - [anon_sym_await] = ACTIONS(1490), - [anon_sym_break] = ACTIONS(1490), - [anon_sym_const] = ACTIONS(1490), - [anon_sym_continue] = ACTIONS(1490), - [anon_sym_default] = ACTIONS(1490), - [anon_sym_enum] = ACTIONS(1490), - [anon_sym_fn] = ACTIONS(1490), - [anon_sym_for] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1490), - [anon_sym_impl] = ACTIONS(1490), - [anon_sym_let] = ACTIONS(1490), - [anon_sym_loop] = ACTIONS(1490), - [anon_sym_match] = ACTIONS(1490), - [anon_sym_mod] = ACTIONS(1490), - [anon_sym_pub] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1490), - [anon_sym_static] = ACTIONS(1490), - [anon_sym_struct] = ACTIONS(1490), - [anon_sym_trait] = ACTIONS(1490), - [anon_sym_type] = ACTIONS(1490), - [anon_sym_union] = ACTIONS(1490), - [anon_sym_unsafe] = ACTIONS(1490), - [anon_sym_use] = ACTIONS(1490), - [anon_sym_where] = ACTIONS(1490), - [anon_sym_while] = ACTIONS(1490), - [sym_mutable_specifier] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1492), - [aux_sym_string_literal_token1] = ACTIONS(1492), - [sym_char_literal] = ACTIONS(1492), - [anon_sym_true] = ACTIONS(1490), - [anon_sym_false] = ACTIONS(1490), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1490), - [sym_super] = ACTIONS(1490), - [sym_crate] = ACTIONS(1490), - [sym_metavariable] = ACTIONS(1492), - [sym_raw_string_literal] = ACTIONS(1492), - [sym_float_literal] = ACTIONS(1492), + [anon_sym_SQUOTE] = ACTIONS(1416), + [anon_sym_as] = ACTIONS(1416), + [anon_sym_async] = ACTIONS(1416), + [anon_sym_await] = ACTIONS(1416), + [anon_sym_break] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1416), + [anon_sym_continue] = ACTIONS(1416), + [anon_sym_default] = ACTIONS(1416), + [anon_sym_enum] = ACTIONS(1416), + [anon_sym_fn] = ACTIONS(1416), + [anon_sym_for] = ACTIONS(1416), + [anon_sym_if] = ACTIONS(1416), + [anon_sym_impl] = ACTIONS(1416), + [anon_sym_let] = ACTIONS(1416), + [anon_sym_loop] = ACTIONS(1416), + [anon_sym_match] = ACTIONS(1416), + [anon_sym_mod] = ACTIONS(1416), + [anon_sym_pub] = ACTIONS(1416), + [anon_sym_return] = ACTIONS(1416), + [anon_sym_static] = ACTIONS(1416), + [anon_sym_struct] = ACTIONS(1416), + [anon_sym_trait] = ACTIONS(1416), + [anon_sym_type] = ACTIONS(1416), + [anon_sym_union] = ACTIONS(1416), + [anon_sym_unsafe] = ACTIONS(1416), + [anon_sym_use] = ACTIONS(1416), + [anon_sym_where] = ACTIONS(1416), + [anon_sym_while] = ACTIONS(1416), + [sym_mutable_specifier] = ACTIONS(1416), + [sym_integer_literal] = ACTIONS(1421), + [aux_sym_string_literal_token1] = ACTIONS(1421), + [sym_char_literal] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(1416), + [anon_sym_false] = ACTIONS(1416), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1416), + [sym_super] = ACTIONS(1416), + [sym_crate] = ACTIONS(1416), + [sym_raw_string_literal] = ACTIONS(1421), + [sym_float_literal] = ACTIONS(1421), }, - [438] = { - [sym_line_comment] = STATE(438), - [sym_block_comment] = STATE(438), - [sym_identifier] = ACTIONS(1494), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1496), - [anon_sym_RPAREN] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1496), - [anon_sym_RBRACK] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1496), - [anon_sym_COLON] = ACTIONS(1494), - [anon_sym_DOLLAR] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_STAR] = ACTIONS(1496), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_u8] = ACTIONS(1494), - [anon_sym_i8] = ACTIONS(1494), - [anon_sym_u16] = ACTIONS(1494), - [anon_sym_i16] = ACTIONS(1494), - [anon_sym_u32] = ACTIONS(1494), - [anon_sym_i32] = ACTIONS(1494), - [anon_sym_u64] = ACTIONS(1494), - [anon_sym_i64] = ACTIONS(1494), - [anon_sym_u128] = ACTIONS(1494), - [anon_sym_i128] = ACTIONS(1494), - [anon_sym_isize] = ACTIONS(1494), - [anon_sym_usize] = ACTIONS(1494), - [anon_sym_f32] = ACTIONS(1494), - [anon_sym_f64] = ACTIONS(1494), - [anon_sym_bool] = ACTIONS(1494), - [anon_sym_str] = ACTIONS(1494), - [anon_sym_char] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(1494), - [anon_sym__] = ACTIONS(1494), - [anon_sym_BSLASH] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1494), - [anon_sym_EQ] = ACTIONS(1496), - [anon_sym_DASH_GT] = ACTIONS(1496), - [anon_sym_COMMA] = ACTIONS(1496), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_DOT] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1496), - [anon_sym_PERCENT] = ACTIONS(1496), - [anon_sym_CARET] = ACTIONS(1496), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1496), - [anon_sym_SQUOTE] = ACTIONS(1494), - [anon_sym_as] = ACTIONS(1494), - [anon_sym_async] = ACTIONS(1494), - [anon_sym_await] = ACTIONS(1494), - [anon_sym_break] = ACTIONS(1494), - [anon_sym_const] = ACTIONS(1494), - [anon_sym_continue] = ACTIONS(1494), - [anon_sym_default] = ACTIONS(1494), - [anon_sym_enum] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1494), - [anon_sym_for] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1494), - [anon_sym_impl] = ACTIONS(1494), - [anon_sym_let] = ACTIONS(1494), - [anon_sym_loop] = ACTIONS(1494), - [anon_sym_match] = ACTIONS(1494), - [anon_sym_mod] = ACTIONS(1494), - [anon_sym_pub] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1494), - [anon_sym_static] = ACTIONS(1494), - [anon_sym_struct] = ACTIONS(1494), - [anon_sym_trait] = ACTIONS(1494), - [anon_sym_type] = ACTIONS(1494), - [anon_sym_union] = ACTIONS(1494), - [anon_sym_unsafe] = ACTIONS(1494), - [anon_sym_use] = ACTIONS(1494), - [anon_sym_where] = ACTIONS(1494), - [anon_sym_while] = ACTIONS(1494), - [sym_mutable_specifier] = ACTIONS(1494), - [sym_integer_literal] = ACTIONS(1496), - [aux_sym_string_literal_token1] = ACTIONS(1496), - [sym_char_literal] = ACTIONS(1496), - [anon_sym_true] = ACTIONS(1494), - [anon_sym_false] = ACTIONS(1494), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1494), - [sym_super] = ACTIONS(1494), - [sym_crate] = ACTIONS(1494), - [sym_metavariable] = ACTIONS(1496), - [sym_raw_string_literal] = ACTIONS(1496), - [sym_float_literal] = ACTIONS(1496), + [414] = { + [sym_line_comment] = STATE(414), + [sym_block_comment] = STATE(414), + [sym_identifier] = ACTIONS(1408), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_LBRACK] = ACTIONS(1410), + [anon_sym_RBRACK] = ACTIONS(1410), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_RBRACE] = ACTIONS(1410), + [anon_sym_COLON] = ACTIONS(1408), + [anon_sym_DOLLAR] = ACTIONS(1408), + [anon_sym_PLUS] = ACTIONS(1410), + [anon_sym_STAR] = ACTIONS(1410), + [anon_sym_QMARK] = ACTIONS(1410), + [anon_sym_u8] = ACTIONS(1408), + [anon_sym_i8] = ACTIONS(1408), + [anon_sym_u16] = ACTIONS(1408), + [anon_sym_i16] = ACTIONS(1408), + [anon_sym_u32] = ACTIONS(1408), + [anon_sym_i32] = ACTIONS(1408), + [anon_sym_u64] = ACTIONS(1408), + [anon_sym_i64] = ACTIONS(1408), + [anon_sym_u128] = ACTIONS(1408), + [anon_sym_i128] = ACTIONS(1408), + [anon_sym_isize] = ACTIONS(1408), + [anon_sym_usize] = ACTIONS(1408), + [anon_sym_f32] = ACTIONS(1408), + [anon_sym_f64] = ACTIONS(1408), + [anon_sym_bool] = ACTIONS(1408), + [anon_sym_str] = ACTIONS(1408), + [anon_sym_char] = ACTIONS(1408), + [anon_sym_SLASH] = ACTIONS(1408), + [anon_sym__] = ACTIONS(1408), + [anon_sym_BSLASH] = ACTIONS(1410), + [anon_sym_DASH] = ACTIONS(1408), + [anon_sym_EQ] = ACTIONS(1410), + [anon_sym_DASH_GT] = ACTIONS(1410), + [anon_sym_COMMA] = ACTIONS(1410), + [anon_sym_COLON_COLON] = ACTIONS(1410), + [anon_sym_BANG] = ACTIONS(1410), + [anon_sym_DOT] = ACTIONS(1410), + [anon_sym_AT] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), + [anon_sym_POUND] = ACTIONS(1410), + [anon_sym_PERCENT] = ACTIONS(1410), + [anon_sym_CARET] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1410), + [anon_sym_GT] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1410), + [anon_sym_SQUOTE] = ACTIONS(1408), + [anon_sym_as] = ACTIONS(1408), + [anon_sym_async] = ACTIONS(1408), + [anon_sym_await] = ACTIONS(1408), + [anon_sym_break] = ACTIONS(1408), + [anon_sym_const] = ACTIONS(1408), + [anon_sym_continue] = ACTIONS(1408), + [anon_sym_default] = ACTIONS(1408), + [anon_sym_enum] = ACTIONS(1408), + [anon_sym_fn] = ACTIONS(1408), + [anon_sym_for] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1408), + [anon_sym_impl] = ACTIONS(1408), + [anon_sym_let] = ACTIONS(1408), + [anon_sym_loop] = ACTIONS(1408), + [anon_sym_match] = ACTIONS(1408), + [anon_sym_mod] = ACTIONS(1408), + [anon_sym_pub] = ACTIONS(1408), + [anon_sym_return] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_struct] = ACTIONS(1408), + [anon_sym_trait] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_union] = ACTIONS(1408), + [anon_sym_unsafe] = ACTIONS(1408), + [anon_sym_use] = ACTIONS(1408), + [anon_sym_where] = ACTIONS(1408), + [anon_sym_while] = ACTIONS(1408), + [sym_mutable_specifier] = ACTIONS(1408), + [sym_integer_literal] = ACTIONS(1410), + [aux_sym_string_literal_token1] = ACTIONS(1410), + [sym_char_literal] = ACTIONS(1410), + [anon_sym_true] = ACTIONS(1408), + [anon_sym_false] = ACTIONS(1408), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1408), + [sym_super] = ACTIONS(1408), + [sym_crate] = ACTIONS(1408), + [sym_metavariable] = ACTIONS(1410), + [sym_raw_string_literal] = ACTIONS(1410), + [sym_float_literal] = ACTIONS(1410), }, - [439] = { - [sym_line_comment] = STATE(439), - [sym_block_comment] = STATE(439), + [415] = { + [sym_line_comment] = STATE(415), + [sym_block_comment] = STATE(415), + [sym_identifier] = ACTIONS(1358), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_LBRACK] = ACTIONS(1360), + [anon_sym_LBRACE] = ACTIONS(1360), + [anon_sym_EQ_GT] = ACTIONS(1360), + [anon_sym_COLON] = ACTIONS(1358), + [anon_sym_PLUS] = ACTIONS(1358), + [anon_sym_STAR] = ACTIONS(1358), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_u8] = ACTIONS(1358), + [anon_sym_i8] = ACTIONS(1358), + [anon_sym_u16] = ACTIONS(1358), + [anon_sym_i16] = ACTIONS(1358), + [anon_sym_u32] = ACTIONS(1358), + [anon_sym_i32] = ACTIONS(1358), + [anon_sym_u64] = ACTIONS(1358), + [anon_sym_i64] = ACTIONS(1358), + [anon_sym_u128] = ACTIONS(1358), + [anon_sym_i128] = ACTIONS(1358), + [anon_sym_isize] = ACTIONS(1358), + [anon_sym_usize] = ACTIONS(1358), + [anon_sym_f32] = ACTIONS(1358), + [anon_sym_f64] = ACTIONS(1358), + [anon_sym_bool] = ACTIONS(1358), + [anon_sym_str] = ACTIONS(1358), + [anon_sym_char] = ACTIONS(1358), + [anon_sym_SLASH] = ACTIONS(1358), + [anon_sym_DASH] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_COLON_COLON] = ACTIONS(1360), + [anon_sym_BANG] = ACTIONS(1358), + [anon_sym_DOT] = ACTIONS(1358), + [anon_sym_AMP] = ACTIONS(1358), + [anon_sym_PERCENT] = ACTIONS(1358), + [anon_sym_CARET] = ACTIONS(1358), + [anon_sym_LT] = ACTIONS(1358), + [anon_sym_GT] = ACTIONS(1358), + [anon_sym_PIPE] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), + [anon_sym_as] = ACTIONS(1358), + [anon_sym_async] = ACTIONS(1358), + [anon_sym_break] = ACTIONS(1358), + [anon_sym_const] = ACTIONS(1358), + [anon_sym_continue] = ACTIONS(1358), + [anon_sym_default] = ACTIONS(1358), + [anon_sym_for] = ACTIONS(1358), + [anon_sym_if] = ACTIONS(1358), + [anon_sym_loop] = ACTIONS(1358), + [anon_sym_match] = ACTIONS(1358), + [anon_sym_return] = ACTIONS(1358), + [anon_sym_static] = ACTIONS(1358), + [anon_sym_union] = ACTIONS(1358), + [anon_sym_unsafe] = ACTIONS(1358), + [anon_sym_while] = ACTIONS(1358), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1360), + [anon_sym_DOT_DOT] = ACTIONS(1358), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1360), + [anon_sym_AMP_AMP] = ACTIONS(1360), + [anon_sym_PIPE_PIPE] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_EQ] = ACTIONS(1360), + [anon_sym_LT_LT] = ACTIONS(1358), + [anon_sym_GT_GT] = ACTIONS(1358), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), + [anon_sym_STAR_EQ] = ACTIONS(1360), + [anon_sym_SLASH_EQ] = ACTIONS(1360), + [anon_sym_PERCENT_EQ] = ACTIONS(1360), + [anon_sym_AMP_EQ] = ACTIONS(1360), + [anon_sym_PIPE_EQ] = ACTIONS(1360), + [anon_sym_CARET_EQ] = ACTIONS(1360), + [anon_sym_LT_LT_EQ] = ACTIONS(1360), + [anon_sym_GT_GT_EQ] = ACTIONS(1360), + [anon_sym_yield] = ACTIONS(1358), + [anon_sym_move] = ACTIONS(1358), + [anon_sym_try] = ACTIONS(1358), + [sym_integer_literal] = ACTIONS(1360), + [aux_sym_string_literal_token1] = ACTIONS(1360), + [sym_char_literal] = ACTIONS(1360), + [anon_sym_true] = ACTIONS(1358), + [anon_sym_false] = ACTIONS(1358), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1358), + [sym_super] = ACTIONS(1358), + [sym_crate] = ACTIONS(1358), + [sym_metavariable] = ACTIONS(1360), + [sym_raw_string_literal] = ACTIONS(1360), + [sym_float_literal] = ACTIONS(1360), + }, + [416] = { + [sym_line_comment] = STATE(416), + [sym_block_comment] = STATE(416), [sym_identifier] = ACTIONS(1498), [anon_sym_SEMI] = ACTIONS(1500), [anon_sym_LPAREN] = ACTIONS(1500), @@ -67696,9 +65046,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1500), [sym_float_literal] = ACTIONS(1500), }, - [440] = { - [sym_line_comment] = STATE(440), - [sym_block_comment] = STATE(440), + [417] = { + [sym_line_comment] = STATE(417), + [sym_block_comment] = STATE(417), [sym_identifier] = ACTIONS(1502), [anon_sym_SEMI] = ACTIONS(1504), [anon_sym_LPAREN] = ACTIONS(1504), @@ -67791,23 +65141,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1504), [sym_float_literal] = ACTIONS(1504), }, - [441] = { - [sym_line_comment] = STATE(441), - [sym_block_comment] = STATE(441), - [aux_sym__non_special_token_repeat1] = STATE(430), + [418] = { + [sym_line_comment] = STATE(418), + [sym_block_comment] = STATE(418), [sym_identifier] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_SEMI] = ACTIONS(1508), [anon_sym_LPAREN] = ACTIONS(1508), [anon_sym_RPAREN] = ACTIONS(1508), [anon_sym_LBRACK] = ACTIONS(1508), [anon_sym_RBRACK] = ACTIONS(1508), [anon_sym_LBRACE] = ACTIONS(1508), [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_COLON] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), + [anon_sym_COLON] = ACTIONS(1506), + [anon_sym_DOLLAR] = ACTIONS(1506), + [anon_sym_PLUS] = ACTIONS(1508), + [anon_sym_STAR] = ACTIONS(1508), + [anon_sym_QMARK] = ACTIONS(1508), [anon_sym_u8] = ACTIONS(1506), [anon_sym_i8] = ACTIONS(1506), [anon_sym_u16] = ACTIONS(1506), @@ -67825,25 +65174,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1506), [anon_sym_str] = ACTIONS(1506), [anon_sym_char] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym__] = ACTIONS(1326), - [anon_sym_BSLASH] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_DASH_GT] = ACTIONS(1316), - [anon_sym_COMMA] = ACTIONS(1316), - [anon_sym_COLON_COLON] = ACTIONS(1316), - [anon_sym_BANG] = ACTIONS(1316), - [anon_sym_DOT] = ACTIONS(1316), - [anon_sym_AT] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_POUND] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_TILDE] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1506), + [anon_sym__] = ACTIONS(1506), + [anon_sym_BSLASH] = ACTIONS(1508), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1508), + [anon_sym_DASH_GT] = ACTIONS(1508), + [anon_sym_COMMA] = ACTIONS(1508), + [anon_sym_COLON_COLON] = ACTIONS(1508), + [anon_sym_BANG] = ACTIONS(1508), + [anon_sym_DOT] = ACTIONS(1508), + [anon_sym_AT] = ACTIONS(1508), + [anon_sym_AMP] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1508), + [anon_sym_PERCENT] = ACTIONS(1508), + [anon_sym_CARET] = ACTIONS(1508), + [anon_sym_LT] = ACTIONS(1508), + [anon_sym_GT] = ACTIONS(1508), + [anon_sym_PIPE] = ACTIONS(1508), + [anon_sym_TILDE] = ACTIONS(1508), [anon_sym_SQUOTE] = ACTIONS(1506), [anon_sym_as] = ACTIONS(1506), [anon_sym_async] = ACTIONS(1506), @@ -67880,15 +65229,768 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1506), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1506), - [sym_super] = ACTIONS(1506), - [sym_crate] = ACTIONS(1506), - [sym_raw_string_literal] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), + [sym_self] = ACTIONS(1506), + [sym_super] = ACTIONS(1506), + [sym_crate] = ACTIONS(1506), + [sym_metavariable] = ACTIONS(1508), + [sym_raw_string_literal] = ACTIONS(1508), + [sym_float_literal] = ACTIONS(1508), + }, + [419] = { + [sym_line_comment] = STATE(419), + [sym_block_comment] = STATE(419), + [sym_identifier] = ACTIONS(1478), + [anon_sym_SEMI] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1480), + [anon_sym_RPAREN] = ACTIONS(1480), + [anon_sym_LBRACK] = ACTIONS(1480), + [anon_sym_RBRACK] = ACTIONS(1480), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_COLON] = ACTIONS(1478), + [anon_sym_DOLLAR] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1480), + [anon_sym_QMARK] = ACTIONS(1480), + [anon_sym_u8] = ACTIONS(1478), + [anon_sym_i8] = ACTIONS(1478), + [anon_sym_u16] = ACTIONS(1478), + [anon_sym_i16] = ACTIONS(1478), + [anon_sym_u32] = ACTIONS(1478), + [anon_sym_i32] = ACTIONS(1478), + [anon_sym_u64] = ACTIONS(1478), + [anon_sym_i64] = ACTIONS(1478), + [anon_sym_u128] = ACTIONS(1478), + [anon_sym_i128] = ACTIONS(1478), + [anon_sym_isize] = ACTIONS(1478), + [anon_sym_usize] = ACTIONS(1478), + [anon_sym_f32] = ACTIONS(1478), + [anon_sym_f64] = ACTIONS(1478), + [anon_sym_bool] = ACTIONS(1478), + [anon_sym_str] = ACTIONS(1478), + [anon_sym_char] = ACTIONS(1478), + [anon_sym_SLASH] = ACTIONS(1478), + [anon_sym__] = ACTIONS(1478), + [anon_sym_BSLASH] = ACTIONS(1480), + [anon_sym_DASH] = ACTIONS(1478), + [anon_sym_EQ] = ACTIONS(1480), + [anon_sym_DASH_GT] = ACTIONS(1480), + [anon_sym_COMMA] = ACTIONS(1480), + [anon_sym_COLON_COLON] = ACTIONS(1480), + [anon_sym_BANG] = ACTIONS(1480), + [anon_sym_DOT] = ACTIONS(1480), + [anon_sym_AT] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1480), + [anon_sym_POUND] = ACTIONS(1480), + [anon_sym_PERCENT] = ACTIONS(1480), + [anon_sym_CARET] = ACTIONS(1480), + [anon_sym_LT] = ACTIONS(1480), + [anon_sym_GT] = ACTIONS(1480), + [anon_sym_PIPE] = ACTIONS(1480), + [anon_sym_TILDE] = ACTIONS(1480), + [anon_sym_SQUOTE] = ACTIONS(1478), + [anon_sym_as] = ACTIONS(1478), + [anon_sym_async] = ACTIONS(1478), + [anon_sym_await] = ACTIONS(1478), + [anon_sym_break] = ACTIONS(1478), + [anon_sym_const] = ACTIONS(1478), + [anon_sym_continue] = ACTIONS(1478), + [anon_sym_default] = ACTIONS(1478), + [anon_sym_enum] = ACTIONS(1478), + [anon_sym_fn] = ACTIONS(1478), + [anon_sym_for] = ACTIONS(1478), + [anon_sym_if] = ACTIONS(1478), + [anon_sym_impl] = ACTIONS(1478), + [anon_sym_let] = ACTIONS(1478), + [anon_sym_loop] = ACTIONS(1478), + [anon_sym_match] = ACTIONS(1478), + [anon_sym_mod] = ACTIONS(1478), + [anon_sym_pub] = ACTIONS(1478), + [anon_sym_return] = ACTIONS(1478), + [anon_sym_static] = ACTIONS(1478), + [anon_sym_struct] = ACTIONS(1478), + [anon_sym_trait] = ACTIONS(1478), + [anon_sym_type] = ACTIONS(1478), + [anon_sym_union] = ACTIONS(1478), + [anon_sym_unsafe] = ACTIONS(1478), + [anon_sym_use] = ACTIONS(1478), + [anon_sym_where] = ACTIONS(1478), + [anon_sym_while] = ACTIONS(1478), + [sym_mutable_specifier] = ACTIONS(1478), + [sym_integer_literal] = ACTIONS(1480), + [aux_sym_string_literal_token1] = ACTIONS(1480), + [sym_char_literal] = ACTIONS(1480), + [anon_sym_true] = ACTIONS(1478), + [anon_sym_false] = ACTIONS(1478), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1478), + [sym_super] = ACTIONS(1478), + [sym_crate] = ACTIONS(1478), + [sym_raw_string_literal] = ACTIONS(1480), + [sym_float_literal] = ACTIONS(1480), + }, + [420] = { + [sym_line_comment] = STATE(420), + [sym_block_comment] = STATE(420), + [sym_identifier] = ACTIONS(1442), + [anon_sym_SEMI] = ACTIONS(1444), + [anon_sym_LPAREN] = ACTIONS(1444), + [anon_sym_RPAREN] = ACTIONS(1444), + [anon_sym_LBRACK] = ACTIONS(1444), + [anon_sym_RBRACK] = ACTIONS(1444), + [anon_sym_LBRACE] = ACTIONS(1444), + [anon_sym_RBRACE] = ACTIONS(1444), + [anon_sym_COLON] = ACTIONS(1442), + [anon_sym_DOLLAR] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1444), + [anon_sym_QMARK] = ACTIONS(1444), + [anon_sym_u8] = ACTIONS(1442), + [anon_sym_i8] = ACTIONS(1442), + [anon_sym_u16] = ACTIONS(1442), + [anon_sym_i16] = ACTIONS(1442), + [anon_sym_u32] = ACTIONS(1442), + [anon_sym_i32] = ACTIONS(1442), + [anon_sym_u64] = ACTIONS(1442), + [anon_sym_i64] = ACTIONS(1442), + [anon_sym_u128] = ACTIONS(1442), + [anon_sym_i128] = ACTIONS(1442), + [anon_sym_isize] = ACTIONS(1442), + [anon_sym_usize] = ACTIONS(1442), + [anon_sym_f32] = ACTIONS(1442), + [anon_sym_f64] = ACTIONS(1442), + [anon_sym_bool] = ACTIONS(1442), + [anon_sym_str] = ACTIONS(1442), + [anon_sym_char] = ACTIONS(1442), + [anon_sym_SLASH] = ACTIONS(1442), + [anon_sym__] = ACTIONS(1442), + [anon_sym_BSLASH] = ACTIONS(1444), + [anon_sym_DASH] = ACTIONS(1442), + [anon_sym_EQ] = ACTIONS(1444), + [anon_sym_DASH_GT] = ACTIONS(1444), + [anon_sym_COMMA] = ACTIONS(1444), + [anon_sym_COLON_COLON] = ACTIONS(1444), + [anon_sym_BANG] = ACTIONS(1444), + [anon_sym_DOT] = ACTIONS(1444), + [anon_sym_AT] = ACTIONS(1444), + [anon_sym_AMP] = ACTIONS(1444), + [anon_sym_POUND] = ACTIONS(1444), + [anon_sym_PERCENT] = ACTIONS(1444), + [anon_sym_CARET] = ACTIONS(1444), + [anon_sym_LT] = ACTIONS(1444), + [anon_sym_GT] = ACTIONS(1444), + [anon_sym_PIPE] = ACTIONS(1444), + [anon_sym_TILDE] = ACTIONS(1444), + [anon_sym_SQUOTE] = ACTIONS(1442), + [anon_sym_as] = ACTIONS(1442), + [anon_sym_async] = ACTIONS(1442), + [anon_sym_await] = ACTIONS(1442), + [anon_sym_break] = ACTIONS(1442), + [anon_sym_const] = ACTIONS(1442), + [anon_sym_continue] = ACTIONS(1442), + [anon_sym_default] = ACTIONS(1442), + [anon_sym_enum] = ACTIONS(1442), + [anon_sym_fn] = ACTIONS(1442), + [anon_sym_for] = ACTIONS(1442), + [anon_sym_if] = ACTIONS(1442), + [anon_sym_impl] = ACTIONS(1442), + [anon_sym_let] = ACTIONS(1442), + [anon_sym_loop] = ACTIONS(1442), + [anon_sym_match] = ACTIONS(1442), + [anon_sym_mod] = ACTIONS(1442), + [anon_sym_pub] = ACTIONS(1442), + [anon_sym_return] = ACTIONS(1442), + [anon_sym_static] = ACTIONS(1442), + [anon_sym_struct] = ACTIONS(1442), + [anon_sym_trait] = ACTIONS(1442), + [anon_sym_type] = ACTIONS(1442), + [anon_sym_union] = ACTIONS(1442), + [anon_sym_unsafe] = ACTIONS(1442), + [anon_sym_use] = ACTIONS(1442), + [anon_sym_where] = ACTIONS(1442), + [anon_sym_while] = ACTIONS(1442), + [sym_mutable_specifier] = ACTIONS(1442), + [sym_integer_literal] = ACTIONS(1444), + [aux_sym_string_literal_token1] = ACTIONS(1444), + [sym_char_literal] = ACTIONS(1444), + [anon_sym_true] = ACTIONS(1442), + [anon_sym_false] = ACTIONS(1442), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1442), + [sym_super] = ACTIONS(1442), + [sym_crate] = ACTIONS(1442), + [sym_raw_string_literal] = ACTIONS(1444), + [sym_float_literal] = ACTIONS(1444), + }, + [421] = { + [sym_line_comment] = STATE(421), + [sym_block_comment] = STATE(421), + [sym_identifier] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_RPAREN] = ACTIONS(988), + [anon_sym_LBRACK] = ACTIONS(988), + [anon_sym_RBRACK] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(988), + [anon_sym_COLON] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(988), + [anon_sym_QMARK] = ACTIONS(988), + [anon_sym_u8] = ACTIONS(990), + [anon_sym_i8] = ACTIONS(990), + [anon_sym_u16] = ACTIONS(990), + [anon_sym_i16] = ACTIONS(990), + [anon_sym_u32] = ACTIONS(990), + [anon_sym_i32] = ACTIONS(990), + [anon_sym_u64] = ACTIONS(990), + [anon_sym_i64] = ACTIONS(990), + [anon_sym_u128] = ACTIONS(990), + [anon_sym_i128] = ACTIONS(990), + [anon_sym_isize] = ACTIONS(990), + [anon_sym_usize] = ACTIONS(990), + [anon_sym_f32] = ACTIONS(990), + [anon_sym_f64] = ACTIONS(990), + [anon_sym_bool] = ACTIONS(990), + [anon_sym_str] = ACTIONS(990), + [anon_sym_char] = ACTIONS(990), + [anon_sym_SLASH] = ACTIONS(990), + [anon_sym__] = ACTIONS(990), + [anon_sym_BSLASH] = ACTIONS(988), + [anon_sym_DASH] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_DASH_GT] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(988), + [anon_sym_COLON_COLON] = ACTIONS(988), + [anon_sym_BANG] = ACTIONS(988), + [anon_sym_DOT] = ACTIONS(988), + [anon_sym_AT] = ACTIONS(988), + [anon_sym_AMP] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(988), + [anon_sym_PERCENT] = ACTIONS(988), + [anon_sym_CARET] = ACTIONS(988), + [anon_sym_LT] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(988), + [anon_sym_PIPE] = ACTIONS(988), + [anon_sym_TILDE] = ACTIONS(988), + [anon_sym_SQUOTE] = ACTIONS(990), + [anon_sym_as] = ACTIONS(990), + [anon_sym_async] = ACTIONS(990), + [anon_sym_await] = ACTIONS(990), + [anon_sym_break] = ACTIONS(990), + [anon_sym_const] = ACTIONS(990), + [anon_sym_continue] = ACTIONS(990), + [anon_sym_default] = ACTIONS(990), + [anon_sym_enum] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(990), + [anon_sym_for] = ACTIONS(990), + [anon_sym_if] = ACTIONS(990), + [anon_sym_impl] = ACTIONS(990), + [anon_sym_let] = ACTIONS(990), + [anon_sym_loop] = ACTIONS(990), + [anon_sym_match] = ACTIONS(990), + [anon_sym_mod] = ACTIONS(990), + [anon_sym_pub] = ACTIONS(990), + [anon_sym_return] = ACTIONS(990), + [anon_sym_static] = ACTIONS(990), + [anon_sym_struct] = ACTIONS(990), + [anon_sym_trait] = ACTIONS(990), + [anon_sym_type] = ACTIONS(990), + [anon_sym_union] = ACTIONS(990), + [anon_sym_unsafe] = ACTIONS(990), + [anon_sym_use] = ACTIONS(990), + [anon_sym_where] = ACTIONS(990), + [anon_sym_while] = ACTIONS(990), + [sym_mutable_specifier] = ACTIONS(990), + [sym_integer_literal] = ACTIONS(988), + [aux_sym_string_literal_token1] = ACTIONS(988), + [sym_char_literal] = ACTIONS(988), + [anon_sym_true] = ACTIONS(990), + [anon_sym_false] = ACTIONS(990), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(990), + [sym_super] = ACTIONS(990), + [sym_crate] = ACTIONS(990), + [sym_raw_string_literal] = ACTIONS(988), + [sym_float_literal] = ACTIONS(988), + }, + [422] = { + [sym_line_comment] = STATE(422), + [sym_block_comment] = STATE(422), + [sym_identifier] = ACTIONS(1474), + [anon_sym_SEMI] = ACTIONS(1476), + [anon_sym_LPAREN] = ACTIONS(1476), + [anon_sym_RPAREN] = ACTIONS(1476), + [anon_sym_LBRACK] = ACTIONS(1476), + [anon_sym_RBRACK] = ACTIONS(1476), + [anon_sym_LBRACE] = ACTIONS(1476), + [anon_sym_RBRACE] = ACTIONS(1476), + [anon_sym_COLON] = ACTIONS(1474), + [anon_sym_DOLLAR] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1476), + [anon_sym_STAR] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1476), + [anon_sym_u8] = ACTIONS(1474), + [anon_sym_i8] = ACTIONS(1474), + [anon_sym_u16] = ACTIONS(1474), + [anon_sym_i16] = ACTIONS(1474), + [anon_sym_u32] = ACTIONS(1474), + [anon_sym_i32] = ACTIONS(1474), + [anon_sym_u64] = ACTIONS(1474), + [anon_sym_i64] = ACTIONS(1474), + [anon_sym_u128] = ACTIONS(1474), + [anon_sym_i128] = ACTIONS(1474), + [anon_sym_isize] = ACTIONS(1474), + [anon_sym_usize] = ACTIONS(1474), + [anon_sym_f32] = ACTIONS(1474), + [anon_sym_f64] = ACTIONS(1474), + [anon_sym_bool] = ACTIONS(1474), + [anon_sym_str] = ACTIONS(1474), + [anon_sym_char] = ACTIONS(1474), + [anon_sym_SLASH] = ACTIONS(1474), + [anon_sym__] = ACTIONS(1474), + [anon_sym_BSLASH] = ACTIONS(1476), + [anon_sym_DASH] = ACTIONS(1474), + [anon_sym_EQ] = ACTIONS(1476), + [anon_sym_DASH_GT] = ACTIONS(1476), + [anon_sym_COMMA] = ACTIONS(1476), + [anon_sym_COLON_COLON] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1476), + [anon_sym_DOT] = ACTIONS(1476), + [anon_sym_AT] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_POUND] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1476), + [anon_sym_CARET] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1476), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_SQUOTE] = ACTIONS(1474), + [anon_sym_as] = ACTIONS(1474), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_await] = ACTIONS(1474), + [anon_sym_break] = ACTIONS(1474), + [anon_sym_const] = ACTIONS(1474), + [anon_sym_continue] = ACTIONS(1474), + [anon_sym_default] = ACTIONS(1474), + [anon_sym_enum] = ACTIONS(1474), + [anon_sym_fn] = ACTIONS(1474), + [anon_sym_for] = ACTIONS(1474), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_impl] = ACTIONS(1474), + [anon_sym_let] = ACTIONS(1474), + [anon_sym_loop] = ACTIONS(1474), + [anon_sym_match] = ACTIONS(1474), + [anon_sym_mod] = ACTIONS(1474), + [anon_sym_pub] = ACTIONS(1474), + [anon_sym_return] = ACTIONS(1474), + [anon_sym_static] = ACTIONS(1474), + [anon_sym_struct] = ACTIONS(1474), + [anon_sym_trait] = ACTIONS(1474), + [anon_sym_type] = ACTIONS(1474), + [anon_sym_union] = ACTIONS(1474), + [anon_sym_unsafe] = ACTIONS(1474), + [anon_sym_use] = ACTIONS(1474), + [anon_sym_where] = ACTIONS(1474), + [anon_sym_while] = ACTIONS(1474), + [sym_mutable_specifier] = ACTIONS(1474), + [sym_integer_literal] = ACTIONS(1476), + [aux_sym_string_literal_token1] = ACTIONS(1476), + [sym_char_literal] = ACTIONS(1476), + [anon_sym_true] = ACTIONS(1474), + [anon_sym_false] = ACTIONS(1474), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1474), + [sym_super] = ACTIONS(1474), + [sym_crate] = ACTIONS(1474), + [sym_raw_string_literal] = ACTIONS(1476), + [sym_float_literal] = ACTIONS(1476), + }, + [423] = { + [sym_line_comment] = STATE(423), + [sym_block_comment] = STATE(423), + [sym_identifier] = ACTIONS(1454), + [anon_sym_SEMI] = ACTIONS(1456), + [anon_sym_LPAREN] = ACTIONS(1456), + [anon_sym_RPAREN] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1456), + [anon_sym_RBRACK] = ACTIONS(1456), + [anon_sym_LBRACE] = ACTIONS(1456), + [anon_sym_RBRACE] = ACTIONS(1456), + [anon_sym_COLON] = ACTIONS(1454), + [anon_sym_DOLLAR] = ACTIONS(1456), + [anon_sym_PLUS] = ACTIONS(1456), + [anon_sym_STAR] = ACTIONS(1456), + [anon_sym_QMARK] = ACTIONS(1456), + [anon_sym_u8] = ACTIONS(1454), + [anon_sym_i8] = ACTIONS(1454), + [anon_sym_u16] = ACTIONS(1454), + [anon_sym_i16] = ACTIONS(1454), + [anon_sym_u32] = ACTIONS(1454), + [anon_sym_i32] = ACTIONS(1454), + [anon_sym_u64] = ACTIONS(1454), + [anon_sym_i64] = ACTIONS(1454), + [anon_sym_u128] = ACTIONS(1454), + [anon_sym_i128] = ACTIONS(1454), + [anon_sym_isize] = ACTIONS(1454), + [anon_sym_usize] = ACTIONS(1454), + [anon_sym_f32] = ACTIONS(1454), + [anon_sym_f64] = ACTIONS(1454), + [anon_sym_bool] = ACTIONS(1454), + [anon_sym_str] = ACTIONS(1454), + [anon_sym_char] = ACTIONS(1454), + [anon_sym_SLASH] = ACTIONS(1454), + [anon_sym__] = ACTIONS(1454), + [anon_sym_BSLASH] = ACTIONS(1456), + [anon_sym_DASH] = ACTIONS(1454), + [anon_sym_EQ] = ACTIONS(1456), + [anon_sym_DASH_GT] = ACTIONS(1456), + [anon_sym_COMMA] = ACTIONS(1456), + [anon_sym_COLON_COLON] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1456), + [anon_sym_DOT] = ACTIONS(1456), + [anon_sym_AT] = ACTIONS(1456), + [anon_sym_AMP] = ACTIONS(1456), + [anon_sym_POUND] = ACTIONS(1456), + [anon_sym_PERCENT] = ACTIONS(1456), + [anon_sym_CARET] = ACTIONS(1456), + [anon_sym_LT] = ACTIONS(1456), + [anon_sym_GT] = ACTIONS(1456), + [anon_sym_PIPE] = ACTIONS(1456), + [anon_sym_TILDE] = ACTIONS(1456), + [anon_sym_SQUOTE] = ACTIONS(1454), + [anon_sym_as] = ACTIONS(1454), + [anon_sym_async] = ACTIONS(1454), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_break] = ACTIONS(1454), + [anon_sym_const] = ACTIONS(1454), + [anon_sym_continue] = ACTIONS(1454), + [anon_sym_default] = ACTIONS(1454), + [anon_sym_enum] = ACTIONS(1454), + [anon_sym_fn] = ACTIONS(1454), + [anon_sym_for] = ACTIONS(1454), + [anon_sym_if] = ACTIONS(1454), + [anon_sym_impl] = ACTIONS(1454), + [anon_sym_let] = ACTIONS(1454), + [anon_sym_loop] = ACTIONS(1454), + [anon_sym_match] = ACTIONS(1454), + [anon_sym_mod] = ACTIONS(1454), + [anon_sym_pub] = ACTIONS(1454), + [anon_sym_return] = ACTIONS(1454), + [anon_sym_static] = ACTIONS(1454), + [anon_sym_struct] = ACTIONS(1454), + [anon_sym_trait] = ACTIONS(1454), + [anon_sym_type] = ACTIONS(1454), + [anon_sym_union] = ACTIONS(1454), + [anon_sym_unsafe] = ACTIONS(1454), + [anon_sym_use] = ACTIONS(1454), + [anon_sym_where] = ACTIONS(1454), + [anon_sym_while] = ACTIONS(1454), + [sym_mutable_specifier] = ACTIONS(1454), + [sym_integer_literal] = ACTIONS(1456), + [aux_sym_string_literal_token1] = ACTIONS(1456), + [sym_char_literal] = ACTIONS(1456), + [anon_sym_true] = ACTIONS(1454), + [anon_sym_false] = ACTIONS(1454), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1454), + [sym_super] = ACTIONS(1454), + [sym_crate] = ACTIONS(1454), + [sym_raw_string_literal] = ACTIONS(1456), + [sym_float_literal] = ACTIONS(1456), + }, + [424] = { + [sym_line_comment] = STATE(424), + [sym_block_comment] = STATE(424), + [sym_identifier] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_RPAREN] = ACTIONS(984), + [anon_sym_LBRACK] = ACTIONS(984), + [anon_sym_RBRACK] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_COLON] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_QMARK] = ACTIONS(984), + [anon_sym_u8] = ACTIONS(986), + [anon_sym_i8] = ACTIONS(986), + [anon_sym_u16] = ACTIONS(986), + [anon_sym_i16] = ACTIONS(986), + [anon_sym_u32] = ACTIONS(986), + [anon_sym_i32] = ACTIONS(986), + [anon_sym_u64] = ACTIONS(986), + [anon_sym_i64] = ACTIONS(986), + [anon_sym_u128] = ACTIONS(986), + [anon_sym_i128] = ACTIONS(986), + [anon_sym_isize] = ACTIONS(986), + [anon_sym_usize] = ACTIONS(986), + [anon_sym_f32] = ACTIONS(986), + [anon_sym_f64] = ACTIONS(986), + [anon_sym_bool] = ACTIONS(986), + [anon_sym_str] = ACTIONS(986), + [anon_sym_char] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(986), + [anon_sym__] = ACTIONS(986), + [anon_sym_BSLASH] = ACTIONS(984), + [anon_sym_DASH] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_DASH_GT] = ACTIONS(984), + [anon_sym_COMMA] = ACTIONS(984), + [anon_sym_COLON_COLON] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_AT] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(984), + [anon_sym_PERCENT] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_TILDE] = ACTIONS(984), + [anon_sym_SQUOTE] = ACTIONS(986), + [anon_sym_as] = ACTIONS(986), + [anon_sym_async] = ACTIONS(986), + [anon_sym_await] = ACTIONS(986), + [anon_sym_break] = ACTIONS(986), + [anon_sym_const] = ACTIONS(986), + [anon_sym_continue] = ACTIONS(986), + [anon_sym_default] = ACTIONS(986), + [anon_sym_enum] = ACTIONS(986), + [anon_sym_fn] = ACTIONS(986), + [anon_sym_for] = ACTIONS(986), + [anon_sym_if] = ACTIONS(986), + [anon_sym_impl] = ACTIONS(986), + [anon_sym_let] = ACTIONS(986), + [anon_sym_loop] = ACTIONS(986), + [anon_sym_match] = ACTIONS(986), + [anon_sym_mod] = ACTIONS(986), + [anon_sym_pub] = ACTIONS(986), + [anon_sym_return] = ACTIONS(986), + [anon_sym_static] = ACTIONS(986), + [anon_sym_struct] = ACTIONS(986), + [anon_sym_trait] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_union] = ACTIONS(986), + [anon_sym_unsafe] = ACTIONS(986), + [anon_sym_use] = ACTIONS(986), + [anon_sym_where] = ACTIONS(986), + [anon_sym_while] = ACTIONS(986), + [sym_mutable_specifier] = ACTIONS(986), + [sym_integer_literal] = ACTIONS(984), + [aux_sym_string_literal_token1] = ACTIONS(984), + [sym_char_literal] = ACTIONS(984), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(986), + [sym_super] = ACTIONS(986), + [sym_crate] = ACTIONS(986), + [sym_raw_string_literal] = ACTIONS(984), + [sym_float_literal] = ACTIONS(984), + }, + [425] = { + [sym_line_comment] = STATE(425), + [sym_block_comment] = STATE(425), + [sym_identifier] = ACTIONS(1498), + [anon_sym_SEMI] = ACTIONS(1500), + [anon_sym_LPAREN] = ACTIONS(1500), + [anon_sym_RPAREN] = ACTIONS(1500), + [anon_sym_LBRACK] = ACTIONS(1500), + [anon_sym_RBRACK] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1500), + [anon_sym_RBRACE] = ACTIONS(1500), + [anon_sym_COLON] = ACTIONS(1498), + [anon_sym_DOLLAR] = ACTIONS(1500), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_STAR] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(1500), + [anon_sym_u8] = ACTIONS(1498), + [anon_sym_i8] = ACTIONS(1498), + [anon_sym_u16] = ACTIONS(1498), + [anon_sym_i16] = ACTIONS(1498), + [anon_sym_u32] = ACTIONS(1498), + [anon_sym_i32] = ACTIONS(1498), + [anon_sym_u64] = ACTIONS(1498), + [anon_sym_i64] = ACTIONS(1498), + [anon_sym_u128] = ACTIONS(1498), + [anon_sym_i128] = ACTIONS(1498), + [anon_sym_isize] = ACTIONS(1498), + [anon_sym_usize] = ACTIONS(1498), + [anon_sym_f32] = ACTIONS(1498), + [anon_sym_f64] = ACTIONS(1498), + [anon_sym_bool] = ACTIONS(1498), + [anon_sym_str] = ACTIONS(1498), + [anon_sym_char] = ACTIONS(1498), + [anon_sym_SLASH] = ACTIONS(1498), + [anon_sym__] = ACTIONS(1498), + [anon_sym_BSLASH] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1498), + [anon_sym_EQ] = ACTIONS(1500), + [anon_sym_DASH_GT] = ACTIONS(1500), + [anon_sym_COMMA] = ACTIONS(1500), + [anon_sym_COLON_COLON] = ACTIONS(1500), + [anon_sym_BANG] = ACTIONS(1500), + [anon_sym_DOT] = ACTIONS(1500), + [anon_sym_AT] = ACTIONS(1500), + [anon_sym_AMP] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1500), + [anon_sym_PERCENT] = ACTIONS(1500), + [anon_sym_CARET] = ACTIONS(1500), + [anon_sym_LT] = ACTIONS(1500), + [anon_sym_GT] = ACTIONS(1500), + [anon_sym_PIPE] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1500), + [anon_sym_SQUOTE] = ACTIONS(1498), + [anon_sym_as] = ACTIONS(1498), + [anon_sym_async] = ACTIONS(1498), + [anon_sym_await] = ACTIONS(1498), + [anon_sym_break] = ACTIONS(1498), + [anon_sym_const] = ACTIONS(1498), + [anon_sym_continue] = ACTIONS(1498), + [anon_sym_default] = ACTIONS(1498), + [anon_sym_enum] = ACTIONS(1498), + [anon_sym_fn] = ACTIONS(1498), + [anon_sym_for] = ACTIONS(1498), + [anon_sym_if] = ACTIONS(1498), + [anon_sym_impl] = ACTIONS(1498), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_loop] = ACTIONS(1498), + [anon_sym_match] = ACTIONS(1498), + [anon_sym_mod] = ACTIONS(1498), + [anon_sym_pub] = ACTIONS(1498), + [anon_sym_return] = ACTIONS(1498), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_struct] = ACTIONS(1498), + [anon_sym_trait] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_union] = ACTIONS(1498), + [anon_sym_unsafe] = ACTIONS(1498), + [anon_sym_use] = ACTIONS(1498), + [anon_sym_where] = ACTIONS(1498), + [anon_sym_while] = ACTIONS(1498), + [sym_mutable_specifier] = ACTIONS(1498), + [sym_integer_literal] = ACTIONS(1500), + [aux_sym_string_literal_token1] = ACTIONS(1500), + [sym_char_literal] = ACTIONS(1500), + [anon_sym_true] = ACTIONS(1498), + [anon_sym_false] = ACTIONS(1498), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1498), + [sym_super] = ACTIONS(1498), + [sym_crate] = ACTIONS(1498), + [sym_raw_string_literal] = ACTIONS(1500), + [sym_float_literal] = ACTIONS(1500), }, - [442] = { - [sym_line_comment] = STATE(442), - [sym_block_comment] = STATE(442), + [426] = { + [sym_line_comment] = STATE(426), + [sym_block_comment] = STATE(426), + [sym_identifier] = ACTIONS(1482), + [anon_sym_SEMI] = ACTIONS(1484), + [anon_sym_LPAREN] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1484), + [anon_sym_RBRACK] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_RBRACE] = ACTIONS(1484), + [anon_sym_COLON] = ACTIONS(1482), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_PLUS] = ACTIONS(1484), + [anon_sym_STAR] = ACTIONS(1484), + [anon_sym_QMARK] = ACTIONS(1484), + [anon_sym_u8] = ACTIONS(1482), + [anon_sym_i8] = ACTIONS(1482), + [anon_sym_u16] = ACTIONS(1482), + [anon_sym_i16] = ACTIONS(1482), + [anon_sym_u32] = ACTIONS(1482), + [anon_sym_i32] = ACTIONS(1482), + [anon_sym_u64] = ACTIONS(1482), + [anon_sym_i64] = ACTIONS(1482), + [anon_sym_u128] = ACTIONS(1482), + [anon_sym_i128] = ACTIONS(1482), + [anon_sym_isize] = ACTIONS(1482), + [anon_sym_usize] = ACTIONS(1482), + [anon_sym_f32] = ACTIONS(1482), + [anon_sym_f64] = ACTIONS(1482), + [anon_sym_bool] = ACTIONS(1482), + [anon_sym_str] = ACTIONS(1482), + [anon_sym_char] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1482), + [anon_sym__] = ACTIONS(1482), + [anon_sym_BSLASH] = ACTIONS(1484), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_EQ] = ACTIONS(1484), + [anon_sym_DASH_GT] = ACTIONS(1484), + [anon_sym_COMMA] = ACTIONS(1484), + [anon_sym_COLON_COLON] = ACTIONS(1484), + [anon_sym_BANG] = ACTIONS(1484), + [anon_sym_DOT] = ACTIONS(1484), + [anon_sym_AT] = ACTIONS(1484), + [anon_sym_AMP] = ACTIONS(1484), + [anon_sym_POUND] = ACTIONS(1484), + [anon_sym_PERCENT] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1484), + [anon_sym_LT] = ACTIONS(1484), + [anon_sym_GT] = ACTIONS(1484), + [anon_sym_PIPE] = ACTIONS(1484), + [anon_sym_TILDE] = ACTIONS(1484), + [anon_sym_SQUOTE] = ACTIONS(1482), + [anon_sym_as] = ACTIONS(1482), + [anon_sym_async] = ACTIONS(1482), + [anon_sym_await] = ACTIONS(1482), + [anon_sym_break] = ACTIONS(1482), + [anon_sym_const] = ACTIONS(1482), + [anon_sym_continue] = ACTIONS(1482), + [anon_sym_default] = ACTIONS(1482), + [anon_sym_enum] = ACTIONS(1482), + [anon_sym_fn] = ACTIONS(1482), + [anon_sym_for] = ACTIONS(1482), + [anon_sym_if] = ACTIONS(1482), + [anon_sym_impl] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1482), + [anon_sym_loop] = ACTIONS(1482), + [anon_sym_match] = ACTIONS(1482), + [anon_sym_mod] = ACTIONS(1482), + [anon_sym_pub] = ACTIONS(1482), + [anon_sym_return] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1482), + [anon_sym_struct] = ACTIONS(1482), + [anon_sym_trait] = ACTIONS(1482), + [anon_sym_type] = ACTIONS(1482), + [anon_sym_union] = ACTIONS(1482), + [anon_sym_unsafe] = ACTIONS(1482), + [anon_sym_use] = ACTIONS(1482), + [anon_sym_where] = ACTIONS(1482), + [anon_sym_while] = ACTIONS(1482), + [sym_mutable_specifier] = ACTIONS(1482), + [sym_integer_literal] = ACTIONS(1484), + [aux_sym_string_literal_token1] = ACTIONS(1484), + [sym_char_literal] = ACTIONS(1484), + [anon_sym_true] = ACTIONS(1482), + [anon_sym_false] = ACTIONS(1482), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1482), + [sym_super] = ACTIONS(1482), + [sym_crate] = ACTIONS(1482), + [sym_raw_string_literal] = ACTIONS(1484), + [sym_float_literal] = ACTIONS(1484), + }, + [427] = { + [sym_line_comment] = STATE(427), + [sym_block_comment] = STATE(427), [sym_identifier] = ACTIONS(1510), [anon_sym_SEMI] = ACTIONS(1512), [anon_sym_LPAREN] = ACTIONS(1512), @@ -67898,7 +66000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1512), [anon_sym_RBRACE] = ACTIONS(1512), [anon_sym_COLON] = ACTIONS(1510), - [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_DOLLAR] = ACTIONS(1512), [anon_sym_PLUS] = ACTIONS(1512), [anon_sym_STAR] = ACTIONS(1512), [anon_sym_QMARK] = ACTIONS(1512), @@ -67977,13 +66079,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1510), [sym_super] = ACTIONS(1510), [sym_crate] = ACTIONS(1510), - [sym_metavariable] = ACTIONS(1512), [sym_raw_string_literal] = ACTIONS(1512), [sym_float_literal] = ACTIONS(1512), }, - [443] = { - [sym_line_comment] = STATE(443), - [sym_block_comment] = STATE(443), + [428] = { + [sym_line_comment] = STATE(428), + [sym_block_comment] = STATE(428), [sym_identifier] = ACTIONS(1514), [anon_sym_SEMI] = ACTIONS(1516), [anon_sym_LPAREN] = ACTIONS(1516), @@ -67993,7 +66094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1516), [anon_sym_RBRACE] = ACTIONS(1516), [anon_sym_COLON] = ACTIONS(1514), - [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_DOLLAR] = ACTIONS(1516), [anon_sym_PLUS] = ACTIONS(1516), [anon_sym_STAR] = ACTIONS(1516), [anon_sym_QMARK] = ACTIONS(1516), @@ -68072,26 +66173,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(1514), [sym_super] = ACTIONS(1514), [sym_crate] = ACTIONS(1514), - [sym_metavariable] = ACTIONS(1516), [sym_raw_string_literal] = ACTIONS(1516), [sym_float_literal] = ACTIONS(1516), }, - [444] = { - [sym_line_comment] = STATE(444), - [sym_block_comment] = STATE(444), + [429] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2063), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(429), + [sym_block_comment] = STATE(429), [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_RBRACK] = ACTIONS(1520), [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_COLON] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1518), - [anon_sym_PLUS] = ACTIONS(1520), [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_QMARK] = ACTIONS(1520), [anon_sym_u8] = ACTIONS(1518), [anon_sym_i8] = ACTIONS(1518), [anon_sym_u16] = ACTIONS(1518), @@ -68109,54 +66224,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1518), [anon_sym_str] = ACTIONS(1518), [anon_sym_char] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), [anon_sym__] = ACTIONS(1518), - [anon_sym_BSLASH] = ACTIONS(1520), [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_EQ] = ACTIONS(1520), [anon_sym_DASH_GT] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1520), [anon_sym_COLON_COLON] = ACTIONS(1520), [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1520), [anon_sym_LT] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1520), [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), [anon_sym_async] = ACTIONS(1518), - [anon_sym_await] = ACTIONS(1518), [anon_sym_break] = ACTIONS(1518), [anon_sym_const] = ACTIONS(1518), [anon_sym_continue] = ACTIONS(1518), [anon_sym_default] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1518), [anon_sym_for] = ACTIONS(1518), [anon_sym_if] = ACTIONS(1518), - [anon_sym_impl] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), [anon_sym_loop] = ACTIONS(1518), [anon_sym_match] = ACTIONS(1518), - [anon_sym_mod] = ACTIONS(1518), - [anon_sym_pub] = ACTIONS(1518), [anon_sym_return] = ACTIONS(1518), [anon_sym_static] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_trait] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), [anon_sym_union] = ACTIONS(1518), [anon_sym_unsafe] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_where] = ACTIONS(1518), [anon_sym_while] = ACTIONS(1518), - [sym_mutable_specifier] = ACTIONS(1518), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1520), + [anon_sym_yield] = ACTIONS(1518), + [anon_sym_move] = ACTIONS(1518), + [anon_sym_try] = ACTIONS(1518), [sym_integer_literal] = ACTIONS(1520), [aux_sym_string_literal_token1] = ACTIONS(1520), [sym_char_literal] = ACTIONS(1520), @@ -68171,22 +66267,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1520), [sym_float_literal] = ACTIONS(1520), }, - [445] = { - [sym_line_comment] = STATE(445), - [sym_block_comment] = STATE(445), + [430] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2087), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), [sym_identifier] = ACTIONS(1522), - [anon_sym_SEMI] = ACTIONS(1524), [anon_sym_LPAREN] = ACTIONS(1524), - [anon_sym_RPAREN] = ACTIONS(1524), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(1524), [anon_sym_LBRACE] = ACTIONS(1524), - [anon_sym_RBRACE] = ACTIONS(1524), - [anon_sym_COLON] = ACTIONS(1522), - [anon_sym_DOLLAR] = ACTIONS(1522), - [anon_sym_PLUS] = ACTIONS(1524), [anon_sym_STAR] = ACTIONS(1524), - [anon_sym_QMARK] = ACTIONS(1524), [anon_sym_u8] = ACTIONS(1522), [anon_sym_i8] = ACTIONS(1522), [anon_sym_u16] = ACTIONS(1522), @@ -68204,54 +66315,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1522), [anon_sym_str] = ACTIONS(1522), [anon_sym_char] = ACTIONS(1522), - [anon_sym_SLASH] = ACTIONS(1522), [anon_sym__] = ACTIONS(1522), - [anon_sym_BSLASH] = ACTIONS(1524), [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_EQ] = ACTIONS(1524), [anon_sym_DASH_GT] = ACTIONS(1524), - [anon_sym_COMMA] = ACTIONS(1524), [anon_sym_COLON_COLON] = ACTIONS(1524), [anon_sym_BANG] = ACTIONS(1524), - [anon_sym_DOT] = ACTIONS(1524), - [anon_sym_AT] = ACTIONS(1524), [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_POUND] = ACTIONS(1524), - [anon_sym_PERCENT] = ACTIONS(1524), - [anon_sym_CARET] = ACTIONS(1524), [anon_sym_LT] = ACTIONS(1524), - [anon_sym_GT] = ACTIONS(1524), [anon_sym_PIPE] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1524), [anon_sym_SQUOTE] = ACTIONS(1522), - [anon_sym_as] = ACTIONS(1522), [anon_sym_async] = ACTIONS(1522), - [anon_sym_await] = ACTIONS(1522), [anon_sym_break] = ACTIONS(1522), [anon_sym_const] = ACTIONS(1522), [anon_sym_continue] = ACTIONS(1522), [anon_sym_default] = ACTIONS(1522), - [anon_sym_enum] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1522), [anon_sym_for] = ACTIONS(1522), [anon_sym_if] = ACTIONS(1522), - [anon_sym_impl] = ACTIONS(1522), - [anon_sym_let] = ACTIONS(1522), [anon_sym_loop] = ACTIONS(1522), [anon_sym_match] = ACTIONS(1522), - [anon_sym_mod] = ACTIONS(1522), - [anon_sym_pub] = ACTIONS(1522), [anon_sym_return] = ACTIONS(1522), [anon_sym_static] = ACTIONS(1522), - [anon_sym_struct] = ACTIONS(1522), - [anon_sym_trait] = ACTIONS(1522), - [anon_sym_type] = ACTIONS(1522), [anon_sym_union] = ACTIONS(1522), [anon_sym_unsafe] = ACTIONS(1522), - [anon_sym_use] = ACTIONS(1522), - [anon_sym_where] = ACTIONS(1522), [anon_sym_while] = ACTIONS(1522), - [sym_mutable_specifier] = ACTIONS(1522), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1524), + [anon_sym_yield] = ACTIONS(1522), + [anon_sym_move] = ACTIONS(1522), + [anon_sym_try] = ACTIONS(1522), [sym_integer_literal] = ACTIONS(1524), [aux_sym_string_literal_token1] = ACTIONS(1524), [sym_char_literal] = ACTIONS(1524), @@ -68266,400 +66358,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(1524), [sym_float_literal] = ACTIONS(1524), }, - [446] = { - [sym_line_comment] = STATE(446), - [sym_block_comment] = STATE(446), + [431] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2711), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2711), + [sym__literal] = STATE(2711), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [aux_sym_function_modifiers_repeat1] = STATE(2178), [sym_identifier] = ACTIONS(1526), - [anon_sym_SEMI] = ACTIONS(1528), [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_RBRACK] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_COLON] = ACTIONS(1526), - [anon_sym_DOLLAR] = ACTIONS(1526), - [anon_sym_PLUS] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_QMARK] = ACTIONS(1528), - [anon_sym_u8] = ACTIONS(1526), - [anon_sym_i8] = ACTIONS(1526), - [anon_sym_u16] = ACTIONS(1526), - [anon_sym_i16] = ACTIONS(1526), - [anon_sym_u32] = ACTIONS(1526), - [anon_sym_i32] = ACTIONS(1526), - [anon_sym_u64] = ACTIONS(1526), - [anon_sym_i64] = ACTIONS(1526), - [anon_sym_u128] = ACTIONS(1526), - [anon_sym_i128] = ACTIONS(1526), - [anon_sym_isize] = ACTIONS(1526), - [anon_sym_usize] = ACTIONS(1526), - [anon_sym_f32] = ACTIONS(1526), - [anon_sym_f64] = ACTIONS(1526), - [anon_sym_bool] = ACTIONS(1526), - [anon_sym_str] = ACTIONS(1526), - [anon_sym_char] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1526), - [anon_sym__] = ACTIONS(1526), - [anon_sym_BSLASH] = ACTIONS(1528), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_EQ] = ACTIONS(1528), - [anon_sym_DASH_GT] = ACTIONS(1528), - [anon_sym_COMMA] = ACTIONS(1528), - [anon_sym_COLON_COLON] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1528), - [anon_sym_DOT] = ACTIONS(1528), - [anon_sym_AT] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1528), - [anon_sym_POUND] = ACTIONS(1528), - [anon_sym_PERCENT] = ACTIONS(1528), - [anon_sym_CARET] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1528), - [anon_sym_PIPE] = ACTIONS(1528), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_SQUOTE] = ACTIONS(1526), - [anon_sym_as] = ACTIONS(1526), - [anon_sym_async] = ACTIONS(1526), - [anon_sym_await] = ACTIONS(1526), - [anon_sym_break] = ACTIONS(1526), - [anon_sym_const] = ACTIONS(1526), - [anon_sym_continue] = ACTIONS(1526), - [anon_sym_default] = ACTIONS(1526), - [anon_sym_enum] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1526), - [anon_sym_for] = ACTIONS(1526), - [anon_sym_if] = ACTIONS(1526), - [anon_sym_impl] = ACTIONS(1526), - [anon_sym_let] = ACTIONS(1526), - [anon_sym_loop] = ACTIONS(1526), - [anon_sym_match] = ACTIONS(1526), - [anon_sym_mod] = ACTIONS(1526), - [anon_sym_pub] = ACTIONS(1526), - [anon_sym_return] = ACTIONS(1526), - [anon_sym_static] = ACTIONS(1526), - [anon_sym_struct] = ACTIONS(1526), - [anon_sym_trait] = ACTIONS(1526), - [anon_sym_type] = ACTIONS(1526), - [anon_sym_union] = ACTIONS(1526), - [anon_sym_unsafe] = ACTIONS(1526), - [anon_sym_use] = ACTIONS(1526), - [anon_sym_where] = ACTIONS(1526), - [anon_sym_while] = ACTIONS(1526), - [sym_mutable_specifier] = ACTIONS(1526), - [sym_integer_literal] = ACTIONS(1528), - [aux_sym_string_literal_token1] = ACTIONS(1528), - [sym_char_literal] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1526), - [anon_sym_false] = ACTIONS(1526), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1526), - [sym_super] = ACTIONS(1526), - [sym_crate] = ACTIONS(1526), - [sym_metavariable] = ACTIONS(1528), - [sym_raw_string_literal] = ACTIONS(1528), - [sym_float_literal] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1540), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), }, - [447] = { - [sym_line_comment] = STATE(447), - [sym_block_comment] = STATE(447), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_RPAREN] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_RBRACK] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_DOLLAR] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_STAR] = ACTIONS(1430), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_u8] = ACTIONS(1428), - [anon_sym_i8] = ACTIONS(1428), - [anon_sym_u16] = ACTIONS(1428), - [anon_sym_i16] = ACTIONS(1428), - [anon_sym_u32] = ACTIONS(1428), - [anon_sym_i32] = ACTIONS(1428), - [anon_sym_u64] = ACTIONS(1428), - [anon_sym_i64] = ACTIONS(1428), - [anon_sym_u128] = ACTIONS(1428), - [anon_sym_i128] = ACTIONS(1428), - [anon_sym_isize] = ACTIONS(1428), - [anon_sym_usize] = ACTIONS(1428), - [anon_sym_f32] = ACTIONS(1428), - [anon_sym_f64] = ACTIONS(1428), - [anon_sym_bool] = ACTIONS(1428), - [anon_sym_str] = ACTIONS(1428), - [anon_sym_char] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1428), - [anon_sym__] = ACTIONS(1428), - [anon_sym_BSLASH] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [anon_sym_DASH_GT] = ACTIONS(1430), - [anon_sym_COMMA] = ACTIONS(1430), - [anon_sym_COLON_COLON] = ACTIONS(1430), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_AT] = ACTIONS(1430), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1430), - [anon_sym_PERCENT] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1430), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_as] = ACTIONS(1428), - [anon_sym_async] = ACTIONS(1428), - [anon_sym_await] = ACTIONS(1428), - [anon_sym_break] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_continue] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_enum] = ACTIONS(1428), - [anon_sym_fn] = ACTIONS(1428), - [anon_sym_for] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1428), - [anon_sym_impl] = ACTIONS(1428), - [anon_sym_let] = ACTIONS(1428), - [anon_sym_loop] = ACTIONS(1428), - [anon_sym_match] = ACTIONS(1428), - [anon_sym_mod] = ACTIONS(1428), - [anon_sym_pub] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1428), - [anon_sym_static] = ACTIONS(1428), - [anon_sym_struct] = ACTIONS(1428), - [anon_sym_trait] = ACTIONS(1428), - [anon_sym_type] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_unsafe] = ACTIONS(1428), - [anon_sym_use] = ACTIONS(1428), - [anon_sym_where] = ACTIONS(1428), - [anon_sym_while] = ACTIONS(1428), - [sym_mutable_specifier] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1430), - [aux_sym_string_literal_token1] = ACTIONS(1430), - [sym_char_literal] = ACTIONS(1430), - [anon_sym_true] = ACTIONS(1428), - [anon_sym_false] = ACTIONS(1428), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1428), - [sym_super] = ACTIONS(1428), - [sym_crate] = ACTIONS(1428), - [sym_metavariable] = ACTIONS(1430), - [sym_raw_string_literal] = ACTIONS(1430), - [sym_float_literal] = ACTIONS(1430), + [432] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2711), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2711), + [sym__literal] = STATE(2711), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1554), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), }, - [448] = { - [sym_line_comment] = STATE(448), - [sym_block_comment] = STATE(448), - [sym_identifier] = ACTIONS(1472), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_LPAREN] = ACTIONS(1474), - [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_RBRACK] = ACTIONS(1474), - [anon_sym_LBRACE] = ACTIONS(1474), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_COLON] = ACTIONS(1472), - [anon_sym_DOLLAR] = ACTIONS(1474), - [anon_sym_PLUS] = ACTIONS(1474), - [anon_sym_STAR] = ACTIONS(1474), - [anon_sym_QMARK] = ACTIONS(1474), - [anon_sym_u8] = ACTIONS(1472), - [anon_sym_i8] = ACTIONS(1472), - [anon_sym_u16] = ACTIONS(1472), - [anon_sym_i16] = ACTIONS(1472), - [anon_sym_u32] = ACTIONS(1472), - [anon_sym_i32] = ACTIONS(1472), - [anon_sym_u64] = ACTIONS(1472), - [anon_sym_i64] = ACTIONS(1472), - [anon_sym_u128] = ACTIONS(1472), - [anon_sym_i128] = ACTIONS(1472), - [anon_sym_isize] = ACTIONS(1472), - [anon_sym_usize] = ACTIONS(1472), - [anon_sym_f32] = ACTIONS(1472), - [anon_sym_f64] = ACTIONS(1472), - [anon_sym_bool] = ACTIONS(1472), - [anon_sym_str] = ACTIONS(1472), - [anon_sym_char] = ACTIONS(1472), - [anon_sym_SLASH] = ACTIONS(1472), - [anon_sym__] = ACTIONS(1472), - [anon_sym_BSLASH] = ACTIONS(1474), - [anon_sym_DASH] = ACTIONS(1472), - [anon_sym_EQ] = ACTIONS(1474), - [anon_sym_DASH_GT] = ACTIONS(1474), - [anon_sym_COMMA] = ACTIONS(1474), - [anon_sym_COLON_COLON] = ACTIONS(1474), - [anon_sym_BANG] = ACTIONS(1474), - [anon_sym_DOT] = ACTIONS(1474), - [anon_sym_AT] = ACTIONS(1474), - [anon_sym_AMP] = ACTIONS(1474), - [anon_sym_POUND] = ACTIONS(1474), - [anon_sym_PERCENT] = ACTIONS(1474), - [anon_sym_CARET] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(1474), - [anon_sym_GT] = ACTIONS(1474), - [anon_sym_PIPE] = ACTIONS(1474), - [anon_sym_TILDE] = ACTIONS(1474), - [anon_sym_SQUOTE] = ACTIONS(1472), - [anon_sym_as] = ACTIONS(1472), - [anon_sym_async] = ACTIONS(1472), - [anon_sym_await] = ACTIONS(1472), - [anon_sym_break] = ACTIONS(1472), - [anon_sym_const] = ACTIONS(1472), - [anon_sym_continue] = ACTIONS(1472), - [anon_sym_default] = ACTIONS(1472), - [anon_sym_enum] = ACTIONS(1472), - [anon_sym_fn] = ACTIONS(1472), - [anon_sym_for] = ACTIONS(1472), - [anon_sym_if] = ACTIONS(1472), - [anon_sym_impl] = ACTIONS(1472), - [anon_sym_let] = ACTIONS(1472), - [anon_sym_loop] = ACTIONS(1472), - [anon_sym_match] = ACTIONS(1472), - [anon_sym_mod] = ACTIONS(1472), - [anon_sym_pub] = ACTIONS(1472), - [anon_sym_return] = ACTIONS(1472), - [anon_sym_static] = ACTIONS(1472), - [anon_sym_struct] = ACTIONS(1472), - [anon_sym_trait] = ACTIONS(1472), - [anon_sym_type] = ACTIONS(1472), - [anon_sym_union] = ACTIONS(1472), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_use] = ACTIONS(1472), - [anon_sym_where] = ACTIONS(1472), - [anon_sym_while] = ACTIONS(1472), - [sym_mutable_specifier] = ACTIONS(1472), - [sym_integer_literal] = ACTIONS(1474), - [aux_sym_string_literal_token1] = ACTIONS(1474), - [sym_char_literal] = ACTIONS(1474), - [anon_sym_true] = ACTIONS(1472), - [anon_sym_false] = ACTIONS(1472), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1472), - [sym_super] = ACTIONS(1472), - [sym_crate] = ACTIONS(1472), - [sym_raw_string_literal] = ACTIONS(1474), - [sym_float_literal] = ACTIONS(1474), + [433] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2711), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2711), + [sym__literal] = STATE(2711), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(433), + [sym_block_comment] = STATE(433), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1556), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), }, - [449] = { - [sym_line_comment] = STATE(449), - [sym_block_comment] = STATE(449), - [sym_identifier] = ACTIONS(1530), - [anon_sym_SEMI] = ACTIONS(1532), - [anon_sym_LPAREN] = ACTIONS(1532), - [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_RBRACK] = ACTIONS(1532), + [434] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2711), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2711), + [sym__literal] = STATE(2711), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(434), + [sym_block_comment] = STATE(434), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_COLON] = ACTIONS(1530), - [anon_sym_DOLLAR] = ACTIONS(1532), - [anon_sym_PLUS] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_QMARK] = ACTIONS(1532), - [anon_sym_u8] = ACTIONS(1530), - [anon_sym_i8] = ACTIONS(1530), - [anon_sym_u16] = ACTIONS(1530), - [anon_sym_i16] = ACTIONS(1530), - [anon_sym_u32] = ACTIONS(1530), - [anon_sym_i32] = ACTIONS(1530), - [anon_sym_u64] = ACTIONS(1530), - [anon_sym_i64] = ACTIONS(1530), - [anon_sym_u128] = ACTIONS(1530), - [anon_sym_i128] = ACTIONS(1530), - [anon_sym_isize] = ACTIONS(1530), - [anon_sym_usize] = ACTIONS(1530), - [anon_sym_f32] = ACTIONS(1530), - [anon_sym_f64] = ACTIONS(1530), - [anon_sym_bool] = ACTIONS(1530), - [anon_sym_str] = ACTIONS(1530), - [anon_sym_char] = ACTIONS(1530), - [anon_sym_SLASH] = ACTIONS(1530), - [anon_sym__] = ACTIONS(1530), - [anon_sym_BSLASH] = ACTIONS(1532), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_EQ] = ACTIONS(1532), - [anon_sym_DASH_GT] = ACTIONS(1532), - [anon_sym_COMMA] = ACTIONS(1532), - [anon_sym_COLON_COLON] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1532), - [anon_sym_DOT] = ACTIONS(1532), - [anon_sym_AT] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_POUND] = ACTIONS(1532), - [anon_sym_PERCENT] = ACTIONS(1532), - [anon_sym_CARET] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(1532), - [anon_sym_GT] = ACTIONS(1532), - [anon_sym_PIPE] = ACTIONS(1532), - [anon_sym_TILDE] = ACTIONS(1532), - [anon_sym_SQUOTE] = ACTIONS(1530), - [anon_sym_as] = ACTIONS(1530), - [anon_sym_async] = ACTIONS(1530), - [anon_sym_await] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_const] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_enum] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1530), - [anon_sym_for] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_impl] = ACTIONS(1530), - [anon_sym_let] = ACTIONS(1530), - [anon_sym_loop] = ACTIONS(1530), - [anon_sym_match] = ACTIONS(1530), - [anon_sym_mod] = ACTIONS(1530), - [anon_sym_pub] = ACTIONS(1530), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_struct] = ACTIONS(1530), - [anon_sym_trait] = ACTIONS(1530), - [anon_sym_type] = ACTIONS(1530), - [anon_sym_union] = ACTIONS(1530), - [anon_sym_unsafe] = ACTIONS(1530), - [anon_sym_use] = ACTIONS(1530), - [anon_sym_where] = ACTIONS(1530), - [anon_sym_while] = ACTIONS(1530), - [sym_mutable_specifier] = ACTIONS(1530), - [sym_integer_literal] = ACTIONS(1532), - [aux_sym_string_literal_token1] = ACTIONS(1532), - [sym_char_literal] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1530), - [sym_crate] = ACTIONS(1530), - [sym_raw_string_literal] = ACTIONS(1532), - [sym_float_literal] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1558), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), }, - [450] = { - [sym_line_comment] = STATE(450), - [sym_block_comment] = STATE(450), - [sym_identifier] = ACTIONS(1534), - [anon_sym_SEMI] = ACTIONS(1536), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_RPAREN] = ACTIONS(1536), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_RBRACK] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_COLON] = ACTIONS(1534), - [anon_sym_DOLLAR] = ACTIONS(1536), - [anon_sym_PLUS] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1536), - [anon_sym_QMARK] = ACTIONS(1536), + [435] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2711), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2711), + [sym__literal] = STATE(2711), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(435), + [sym_block_comment] = STATE(435), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), [anon_sym_u8] = ACTIONS(1534), [anon_sym_i8] = ACTIONS(1534), [anon_sym_u16] = ACTIONS(1534), @@ -68677,1075 +66753,1542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1534), [anon_sym_str] = ACTIONS(1534), [anon_sym_char] = ACTIONS(1534), - [anon_sym_SLASH] = ACTIONS(1534), - [anon_sym__] = ACTIONS(1534), - [anon_sym_BSLASH] = ACTIONS(1536), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_EQ] = ACTIONS(1536), - [anon_sym_DASH_GT] = ACTIONS(1536), - [anon_sym_COMMA] = ACTIONS(1536), [anon_sym_COLON_COLON] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1536), - [anon_sym_DOT] = ACTIONS(1536), - [anon_sym_AT] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1536), - [anon_sym_POUND] = ACTIONS(1536), - [anon_sym_PERCENT] = ACTIONS(1536), - [anon_sym_CARET] = ACTIONS(1536), - [anon_sym_LT] = ACTIONS(1536), - [anon_sym_GT] = ACTIONS(1536), - [anon_sym_PIPE] = ACTIONS(1536), - [anon_sym_TILDE] = ACTIONS(1536), - [anon_sym_SQUOTE] = ACTIONS(1534), - [anon_sym_as] = ACTIONS(1534), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_await] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_const] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1534), - [anon_sym_enum] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1534), - [anon_sym_for] = ACTIONS(1534), - [anon_sym_if] = ACTIONS(1534), - [anon_sym_impl] = ACTIONS(1534), - [anon_sym_let] = ACTIONS(1534), - [anon_sym_loop] = ACTIONS(1534), - [anon_sym_match] = ACTIONS(1534), - [anon_sym_mod] = ACTIONS(1534), - [anon_sym_pub] = ACTIONS(1534), - [anon_sym_return] = ACTIONS(1534), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_struct] = ACTIONS(1534), - [anon_sym_trait] = ACTIONS(1534), - [anon_sym_type] = ACTIONS(1534), - [anon_sym_union] = ACTIONS(1534), - [anon_sym_unsafe] = ACTIONS(1534), - [anon_sym_use] = ACTIONS(1534), - [anon_sym_where] = ACTIONS(1534), - [anon_sym_while] = ACTIONS(1534), - [sym_mutable_specifier] = ACTIONS(1534), - [sym_integer_literal] = ACTIONS(1536), - [aux_sym_string_literal_token1] = ACTIONS(1536), - [sym_char_literal] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1534), - [anon_sym_false] = ACTIONS(1534), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1534), - [sym_super] = ACTIONS(1534), - [sym_crate] = ACTIONS(1534), - [sym_raw_string_literal] = ACTIONS(1536), - [sym_float_literal] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1560), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), }, - [451] = { - [sym_line_comment] = STATE(451), - [sym_block_comment] = STATE(451), - [sym_identifier] = ACTIONS(1458), - [anon_sym_SEMI] = ACTIONS(1460), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_RBRACK] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_COLON] = ACTIONS(1458), - [anon_sym_DOLLAR] = ACTIONS(1460), - [anon_sym_PLUS] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_QMARK] = ACTIONS(1460), - [anon_sym_u8] = ACTIONS(1458), - [anon_sym_i8] = ACTIONS(1458), - [anon_sym_u16] = ACTIONS(1458), - [anon_sym_i16] = ACTIONS(1458), - [anon_sym_u32] = ACTIONS(1458), - [anon_sym_i32] = ACTIONS(1458), - [anon_sym_u64] = ACTIONS(1458), - [anon_sym_i64] = ACTIONS(1458), - [anon_sym_u128] = ACTIONS(1458), - [anon_sym_i128] = ACTIONS(1458), - [anon_sym_isize] = ACTIONS(1458), - [anon_sym_usize] = ACTIONS(1458), - [anon_sym_f32] = ACTIONS(1458), - [anon_sym_f64] = ACTIONS(1458), - [anon_sym_bool] = ACTIONS(1458), - [anon_sym_str] = ACTIONS(1458), - [anon_sym_char] = ACTIONS(1458), - [anon_sym_SLASH] = ACTIONS(1458), - [anon_sym__] = ACTIONS(1458), - [anon_sym_BSLASH] = ACTIONS(1460), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_EQ] = ACTIONS(1460), - [anon_sym_DASH_GT] = ACTIONS(1460), - [anon_sym_COMMA] = ACTIONS(1460), - [anon_sym_COLON_COLON] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1460), - [anon_sym_DOT] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1460), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_PERCENT] = ACTIONS(1460), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1460), - [anon_sym_PIPE] = ACTIONS(1460), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_SQUOTE] = ACTIONS(1458), - [anon_sym_as] = ACTIONS(1458), - [anon_sym_async] = ACTIONS(1458), - [anon_sym_await] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_const] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_enum] = ACTIONS(1458), - [anon_sym_fn] = ACTIONS(1458), - [anon_sym_for] = ACTIONS(1458), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_impl] = ACTIONS(1458), - [anon_sym_let] = ACTIONS(1458), - [anon_sym_loop] = ACTIONS(1458), - [anon_sym_match] = ACTIONS(1458), - [anon_sym_mod] = ACTIONS(1458), - [anon_sym_pub] = ACTIONS(1458), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_struct] = ACTIONS(1458), - [anon_sym_trait] = ACTIONS(1458), - [anon_sym_type] = ACTIONS(1458), - [anon_sym_union] = ACTIONS(1458), - [anon_sym_unsafe] = ACTIONS(1458), - [anon_sym_use] = ACTIONS(1458), - [anon_sym_where] = ACTIONS(1458), - [anon_sym_while] = ACTIONS(1458), - [sym_mutable_specifier] = ACTIONS(1458), - [sym_integer_literal] = ACTIONS(1460), - [aux_sym_string_literal_token1] = ACTIONS(1460), - [sym_char_literal] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1458), - [anon_sym_false] = ACTIONS(1458), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1458), - [sym_super] = ACTIONS(1458), - [sym_crate] = ACTIONS(1458), - [sym_raw_string_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1460), + [436] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2711), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2711), + [sym__literal] = STATE(2711), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(436), + [sym_block_comment] = STATE(436), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1562), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), }, - [452] = { - [sym_line_comment] = STATE(452), - [sym_block_comment] = STATE(452), - [sym_identifier] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_RPAREN] = ACTIONS(998), - [anon_sym_LBRACK] = ACTIONS(998), - [anon_sym_RBRACK] = ACTIONS(998), - [anon_sym_LBRACE] = ACTIONS(998), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_COLON] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_PLUS] = ACTIONS(998), - [anon_sym_STAR] = ACTIONS(998), - [anon_sym_QMARK] = ACTIONS(998), - [anon_sym_u8] = ACTIONS(1000), - [anon_sym_i8] = ACTIONS(1000), - [anon_sym_u16] = ACTIONS(1000), - [anon_sym_i16] = ACTIONS(1000), - [anon_sym_u32] = ACTIONS(1000), - [anon_sym_i32] = ACTIONS(1000), - [anon_sym_u64] = ACTIONS(1000), - [anon_sym_i64] = ACTIONS(1000), - [anon_sym_u128] = ACTIONS(1000), - [anon_sym_i128] = ACTIONS(1000), - [anon_sym_isize] = ACTIONS(1000), - [anon_sym_usize] = ACTIONS(1000), - [anon_sym_f32] = ACTIONS(1000), - [anon_sym_f64] = ACTIONS(1000), - [anon_sym_bool] = ACTIONS(1000), - [anon_sym_str] = ACTIONS(1000), - [anon_sym_char] = ACTIONS(1000), - [anon_sym_SLASH] = ACTIONS(1000), - [anon_sym__] = ACTIONS(1000), - [anon_sym_BSLASH] = ACTIONS(998), - [anon_sym_DASH] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(998), - [anon_sym_DASH_GT] = ACTIONS(998), - [anon_sym_COMMA] = ACTIONS(998), - [anon_sym_COLON_COLON] = ACTIONS(998), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_DOT] = ACTIONS(998), - [anon_sym_AT] = ACTIONS(998), - [anon_sym_AMP] = ACTIONS(998), - [anon_sym_POUND] = ACTIONS(998), - [anon_sym_PERCENT] = ACTIONS(998), - [anon_sym_CARET] = ACTIONS(998), - [anon_sym_LT] = ACTIONS(998), - [anon_sym_GT] = ACTIONS(998), - [anon_sym_PIPE] = ACTIONS(998), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_SQUOTE] = ACTIONS(1000), - [anon_sym_as] = ACTIONS(1000), - [anon_sym_async] = ACTIONS(1000), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_break] = ACTIONS(1000), - [anon_sym_const] = ACTIONS(1000), - [anon_sym_continue] = ACTIONS(1000), - [anon_sym_default] = ACTIONS(1000), - [anon_sym_enum] = ACTIONS(1000), - [anon_sym_fn] = ACTIONS(1000), - [anon_sym_for] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1000), - [anon_sym_impl] = ACTIONS(1000), - [anon_sym_let] = ACTIONS(1000), - [anon_sym_loop] = ACTIONS(1000), - [anon_sym_match] = ACTIONS(1000), - [anon_sym_mod] = ACTIONS(1000), - [anon_sym_pub] = ACTIONS(1000), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_static] = ACTIONS(1000), - [anon_sym_struct] = ACTIONS(1000), - [anon_sym_trait] = ACTIONS(1000), - [anon_sym_type] = ACTIONS(1000), - [anon_sym_union] = ACTIONS(1000), - [anon_sym_unsafe] = ACTIONS(1000), - [anon_sym_use] = ACTIONS(1000), - [anon_sym_where] = ACTIONS(1000), - [anon_sym_while] = ACTIONS(1000), - [sym_mutable_specifier] = ACTIONS(1000), - [sym_integer_literal] = ACTIONS(998), - [aux_sym_string_literal_token1] = ACTIONS(998), - [sym_char_literal] = ACTIONS(998), - [anon_sym_true] = ACTIONS(1000), - [anon_sym_false] = ACTIONS(1000), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1000), - [sym_super] = ACTIONS(1000), - [sym_crate] = ACTIONS(1000), - [sym_raw_string_literal] = ACTIONS(998), - [sym_float_literal] = ACTIONS(998), + [437] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2711), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2711), + [sym__literal] = STATE(2711), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(437), + [sym_block_comment] = STATE(437), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), }, - [453] = { - [sym_line_comment] = STATE(453), - [sym_block_comment] = STATE(453), - [sym_identifier] = ACTIONS(1518), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1520), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1520), - [anon_sym_RBRACK] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1520), - [anon_sym_COLON] = ACTIONS(1518), - [anon_sym_DOLLAR] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_STAR] = ACTIONS(1520), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_u8] = ACTIONS(1518), - [anon_sym_i8] = ACTIONS(1518), - [anon_sym_u16] = ACTIONS(1518), - [anon_sym_i16] = ACTIONS(1518), - [anon_sym_u32] = ACTIONS(1518), - [anon_sym_i32] = ACTIONS(1518), - [anon_sym_u64] = ACTIONS(1518), - [anon_sym_i64] = ACTIONS(1518), - [anon_sym_u128] = ACTIONS(1518), - [anon_sym_i128] = ACTIONS(1518), - [anon_sym_isize] = ACTIONS(1518), - [anon_sym_usize] = ACTIONS(1518), - [anon_sym_f32] = ACTIONS(1518), - [anon_sym_f64] = ACTIONS(1518), - [anon_sym_bool] = ACTIONS(1518), - [anon_sym_str] = ACTIONS(1518), - [anon_sym_char] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym__] = ACTIONS(1518), - [anon_sym_BSLASH] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1518), - [anon_sym_EQ] = ACTIONS(1520), - [anon_sym_DASH_GT] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1520), - [anon_sym_COLON_COLON] = ACTIONS(1520), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1520), - [anon_sym_PERCENT] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1520), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1520), - [anon_sym_SQUOTE] = ACTIONS(1518), - [anon_sym_as] = ACTIONS(1518), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_await] = ACTIONS(1518), - [anon_sym_break] = ACTIONS(1518), - [anon_sym_const] = ACTIONS(1518), - [anon_sym_continue] = ACTIONS(1518), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_enum] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1518), - [anon_sym_for] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1518), - [anon_sym_impl] = ACTIONS(1518), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_loop] = ACTIONS(1518), - [anon_sym_match] = ACTIONS(1518), - [anon_sym_mod] = ACTIONS(1518), - [anon_sym_pub] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1518), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_struct] = ACTIONS(1518), - [anon_sym_trait] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_union] = ACTIONS(1518), - [anon_sym_unsafe] = ACTIONS(1518), - [anon_sym_use] = ACTIONS(1518), - [anon_sym_where] = ACTIONS(1518), - [anon_sym_while] = ACTIONS(1518), - [sym_mutable_specifier] = ACTIONS(1518), - [sym_integer_literal] = ACTIONS(1520), - [aux_sym_string_literal_token1] = ACTIONS(1520), - [sym_char_literal] = ACTIONS(1520), - [anon_sym_true] = ACTIONS(1518), - [anon_sym_false] = ACTIONS(1518), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1518), - [sym_super] = ACTIONS(1518), - [sym_crate] = ACTIONS(1518), - [sym_raw_string_literal] = ACTIONS(1520), - [sym_float_literal] = ACTIONS(1520), + [438] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2711), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2711), + [sym__literal] = STATE(2711), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(438), + [sym_block_comment] = STATE(438), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1566), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), + }, + [439] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2711), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2711), + [sym__literal] = STATE(2711), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_GT] = ACTIONS(1568), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), + }, + [440] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2336), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2335), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2464), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2464), + [sym__literal] = STATE(2464), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(440), + [sym_block_comment] = STATE(440), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), + }, + [441] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2362), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2361), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2385), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2385), + [sym__literal] = STATE(2385), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(441), + [sym_block_comment] = STATE(441), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), }, - [454] = { - [sym_line_comment] = STATE(454), - [sym_block_comment] = STATE(454), - [sym_identifier] = ACTIONS(1506), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_RBRACK] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1508), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_DOLLAR] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1508), - [anon_sym_QMARK] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(1506), - [anon_sym_i8] = ACTIONS(1506), - [anon_sym_u16] = ACTIONS(1506), - [anon_sym_i16] = ACTIONS(1506), - [anon_sym_u32] = ACTIONS(1506), - [anon_sym_i32] = ACTIONS(1506), - [anon_sym_u64] = ACTIONS(1506), - [anon_sym_i64] = ACTIONS(1506), - [anon_sym_u128] = ACTIONS(1506), - [anon_sym_i128] = ACTIONS(1506), - [anon_sym_isize] = ACTIONS(1506), - [anon_sym_usize] = ACTIONS(1506), - [anon_sym_f32] = ACTIONS(1506), - [anon_sym_f64] = ACTIONS(1506), - [anon_sym_bool] = ACTIONS(1506), - [anon_sym_str] = ACTIONS(1506), - [anon_sym_char] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1506), - [anon_sym__] = ACTIONS(1506), - [anon_sym_BSLASH] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1508), - [anon_sym_DASH_GT] = ACTIONS(1508), - [anon_sym_COMMA] = ACTIONS(1508), - [anon_sym_COLON_COLON] = ACTIONS(1508), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(1508), - [anon_sym_AT] = ACTIONS(1508), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1508), - [anon_sym_PERCENT] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1508), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1508), - [anon_sym_SQUOTE] = ACTIONS(1506), - [anon_sym_as] = ACTIONS(1506), - [anon_sym_async] = ACTIONS(1506), - [anon_sym_await] = ACTIONS(1506), - [anon_sym_break] = ACTIONS(1506), - [anon_sym_const] = ACTIONS(1506), - [anon_sym_continue] = ACTIONS(1506), - [anon_sym_default] = ACTIONS(1506), - [anon_sym_enum] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1506), - [anon_sym_for] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1506), - [anon_sym_impl] = ACTIONS(1506), - [anon_sym_let] = ACTIONS(1506), - [anon_sym_loop] = ACTIONS(1506), - [anon_sym_match] = ACTIONS(1506), - [anon_sym_mod] = ACTIONS(1506), - [anon_sym_pub] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1506), - [anon_sym_static] = ACTIONS(1506), - [anon_sym_struct] = ACTIONS(1506), - [anon_sym_trait] = ACTIONS(1506), - [anon_sym_type] = ACTIONS(1506), - [anon_sym_union] = ACTIONS(1506), - [anon_sym_unsafe] = ACTIONS(1506), - [anon_sym_use] = ACTIONS(1506), - [anon_sym_where] = ACTIONS(1506), - [anon_sym_while] = ACTIONS(1506), - [sym_mutable_specifier] = ACTIONS(1506), - [sym_integer_literal] = ACTIONS(1508), - [aux_sym_string_literal_token1] = ACTIONS(1508), - [sym_char_literal] = ACTIONS(1508), - [anon_sym_true] = ACTIONS(1506), - [anon_sym_false] = ACTIONS(1506), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1506), - [sym_super] = ACTIONS(1506), - [sym_crate] = ACTIONS(1506), - [sym_raw_string_literal] = ACTIONS(1508), - [sym_float_literal] = ACTIONS(1508), + [442] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2393), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2411), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2711), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2711), + [sym__literal] = STATE(2711), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(442), + [sym_block_comment] = STATE(442), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), }, - [455] = { - [sym_line_comment] = STATE(455), - [sym_block_comment] = STATE(455), - [sym_identifier] = ACTIONS(1502), - [anon_sym_SEMI] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1504), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1504), - [anon_sym_RBRACK] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1504), - [anon_sym_COLON] = ACTIONS(1502), - [anon_sym_DOLLAR] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_u8] = ACTIONS(1502), - [anon_sym_i8] = ACTIONS(1502), - [anon_sym_u16] = ACTIONS(1502), - [anon_sym_i16] = ACTIONS(1502), - [anon_sym_u32] = ACTIONS(1502), - [anon_sym_i32] = ACTIONS(1502), - [anon_sym_u64] = ACTIONS(1502), - [anon_sym_i64] = ACTIONS(1502), - [anon_sym_u128] = ACTIONS(1502), - [anon_sym_i128] = ACTIONS(1502), - [anon_sym_isize] = ACTIONS(1502), - [anon_sym_usize] = ACTIONS(1502), - [anon_sym_f32] = ACTIONS(1502), - [anon_sym_f64] = ACTIONS(1502), - [anon_sym_bool] = ACTIONS(1502), - [anon_sym_str] = ACTIONS(1502), - [anon_sym_char] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1502), - [anon_sym__] = ACTIONS(1502), - [anon_sym_BSLASH] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [anon_sym_DASH_GT] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1504), - [anon_sym_COLON_COLON] = ACTIONS(1504), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1504), - [anon_sym_PERCENT] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1504), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1504), - [anon_sym_SQUOTE] = ACTIONS(1502), - [anon_sym_as] = ACTIONS(1502), - [anon_sym_async] = ACTIONS(1502), - [anon_sym_await] = ACTIONS(1502), - [anon_sym_break] = ACTIONS(1502), - [anon_sym_const] = ACTIONS(1502), - [anon_sym_continue] = ACTIONS(1502), - [anon_sym_default] = ACTIONS(1502), - [anon_sym_enum] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1502), - [anon_sym_for] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1502), - [anon_sym_impl] = ACTIONS(1502), - [anon_sym_let] = ACTIONS(1502), - [anon_sym_loop] = ACTIONS(1502), - [anon_sym_match] = ACTIONS(1502), - [anon_sym_mod] = ACTIONS(1502), - [anon_sym_pub] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1502), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_struct] = ACTIONS(1502), - [anon_sym_trait] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_union] = ACTIONS(1502), - [anon_sym_unsafe] = ACTIONS(1502), - [anon_sym_use] = ACTIONS(1502), - [anon_sym_where] = ACTIONS(1502), - [anon_sym_while] = ACTIONS(1502), - [sym_mutable_specifier] = ACTIONS(1502), - [sym_integer_literal] = ACTIONS(1504), - [aux_sym_string_literal_token1] = ACTIONS(1504), - [sym_char_literal] = ACTIONS(1504), - [anon_sym_true] = ACTIONS(1502), - [anon_sym_false] = ACTIONS(1502), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1502), - [sym_super] = ACTIONS(1502), - [sym_crate] = ACTIONS(1502), - [sym_raw_string_literal] = ACTIONS(1504), - [sym_float_literal] = ACTIONS(1504), + [443] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2309), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2310), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_type_binding] = STATE(2475), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_label] = STATE(3543), + [sym_block] = STATE(2475), + [sym__literal] = STATE(2475), + [sym_string_literal] = STATE(2912), + [sym_boolean_literal] = STATE(2912), + [sym_line_comment] = STATE(443), + [sym_block_comment] = STATE(443), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_LBRACE] = ACTIONS(1532), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(1542), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_integer_literal] = ACTIONS(1548), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1548), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + [sym_raw_string_literal] = ACTIONS(1548), + [sym_float_literal] = ACTIONS(1548), }, - [456] = { - [sym_line_comment] = STATE(456), - [sym_block_comment] = STATE(456), - [sym_identifier] = ACTIONS(1476), - [anon_sym_SEMI] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1478), - [anon_sym_RBRACK] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1478), - [anon_sym_COLON] = ACTIONS(1476), - [anon_sym_DOLLAR] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_STAR] = ACTIONS(1478), - [anon_sym_QMARK] = ACTIONS(1478), - [anon_sym_u8] = ACTIONS(1476), - [anon_sym_i8] = ACTIONS(1476), - [anon_sym_u16] = ACTIONS(1476), - [anon_sym_i16] = ACTIONS(1476), - [anon_sym_u32] = ACTIONS(1476), - [anon_sym_i32] = ACTIONS(1476), - [anon_sym_u64] = ACTIONS(1476), - [anon_sym_i64] = ACTIONS(1476), - [anon_sym_u128] = ACTIONS(1476), - [anon_sym_i128] = ACTIONS(1476), - [anon_sym_isize] = ACTIONS(1476), - [anon_sym_usize] = ACTIONS(1476), - [anon_sym_f32] = ACTIONS(1476), - [anon_sym_f64] = ACTIONS(1476), - [anon_sym_bool] = ACTIONS(1476), - [anon_sym_str] = ACTIONS(1476), - [anon_sym_char] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1476), - [anon_sym__] = ACTIONS(1476), - [anon_sym_BSLASH] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [anon_sym_DASH_GT] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1478), - [anon_sym_COLON_COLON] = ACTIONS(1478), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1478), - [anon_sym_PERCENT] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1478), - [anon_sym_SQUOTE] = ACTIONS(1476), - [anon_sym_as] = ACTIONS(1476), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_await] = ACTIONS(1476), - [anon_sym_break] = ACTIONS(1476), - [anon_sym_const] = ACTIONS(1476), - [anon_sym_continue] = ACTIONS(1476), - [anon_sym_default] = ACTIONS(1476), - [anon_sym_enum] = ACTIONS(1476), - [anon_sym_fn] = ACTIONS(1476), - [anon_sym_for] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1476), - [anon_sym_impl] = ACTIONS(1476), - [anon_sym_let] = ACTIONS(1476), - [anon_sym_loop] = ACTIONS(1476), - [anon_sym_match] = ACTIONS(1476), - [anon_sym_mod] = ACTIONS(1476), - [anon_sym_pub] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1476), - [anon_sym_static] = ACTIONS(1476), - [anon_sym_struct] = ACTIONS(1476), - [anon_sym_trait] = ACTIONS(1476), - [anon_sym_type] = ACTIONS(1476), - [anon_sym_union] = ACTIONS(1476), - [anon_sym_unsafe] = ACTIONS(1476), - [anon_sym_use] = ACTIONS(1476), - [anon_sym_where] = ACTIONS(1476), - [anon_sym_while] = ACTIONS(1476), - [sym_mutable_specifier] = ACTIONS(1476), - [sym_integer_literal] = ACTIONS(1478), - [aux_sym_string_literal_token1] = ACTIONS(1478), - [sym_char_literal] = ACTIONS(1478), - [anon_sym_true] = ACTIONS(1476), - [anon_sym_false] = ACTIONS(1476), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1476), - [sym_super] = ACTIONS(1476), - [sym_crate] = ACTIONS(1476), - [sym_raw_string_literal] = ACTIONS(1478), - [sym_float_literal] = ACTIONS(1478), + [444] = { + [sym_else_clause] = STATE(451), + [sym_line_comment] = STATE(444), + [sym_block_comment] = STATE(444), + [sym_identifier] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(692), + [anon_sym_LBRACK] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_PLUS] = ACTIONS(694), + [anon_sym_STAR] = ACTIONS(694), + [anon_sym_QMARK] = ACTIONS(692), + [anon_sym_u8] = ACTIONS(694), + [anon_sym_i8] = ACTIONS(694), + [anon_sym_u16] = ACTIONS(694), + [anon_sym_i16] = ACTIONS(694), + [anon_sym_u32] = ACTIONS(694), + [anon_sym_i32] = ACTIONS(694), + [anon_sym_u64] = ACTIONS(694), + [anon_sym_i64] = ACTIONS(694), + [anon_sym_u128] = ACTIONS(694), + [anon_sym_i128] = ACTIONS(694), + [anon_sym_isize] = ACTIONS(694), + [anon_sym_usize] = ACTIONS(694), + [anon_sym_f32] = ACTIONS(694), + [anon_sym_f64] = ACTIONS(694), + [anon_sym_bool] = ACTIONS(694), + [anon_sym_str] = ACTIONS(694), + [anon_sym_char] = ACTIONS(694), + [anon_sym_SLASH] = ACTIONS(694), + [anon_sym__] = ACTIONS(694), + [anon_sym_DASH] = ACTIONS(694), + [anon_sym_EQ] = ACTIONS(694), + [anon_sym_COMMA] = ACTIONS(692), + [anon_sym_COLON_COLON] = ACTIONS(692), + [anon_sym_DOT] = ACTIONS(694), + [anon_sym_AMP] = ACTIONS(694), + [anon_sym_POUND] = ACTIONS(692), + [anon_sym_PERCENT] = ACTIONS(694), + [anon_sym_CARET] = ACTIONS(694), + [anon_sym_LT] = ACTIONS(694), + [anon_sym_GT] = ACTIONS(694), + [anon_sym_PIPE] = ACTIONS(694), + [anon_sym_as] = ACTIONS(694), + [anon_sym_const] = ACTIONS(694), + [anon_sym_default] = ACTIONS(694), + [anon_sym_union] = ACTIONS(694), + [anon_sym_ref] = ACTIONS(694), + [anon_sym_else] = ACTIONS(1570), + [anon_sym_DOT_DOT_DOT] = ACTIONS(692), + [sym_mutable_specifier] = ACTIONS(694), + [anon_sym_DOT_DOT] = ACTIONS(694), + [anon_sym_DOT_DOT_EQ] = ACTIONS(692), + [anon_sym_AMP_AMP] = ACTIONS(692), + [anon_sym_PIPE_PIPE] = ACTIONS(692), + [anon_sym_EQ_EQ] = ACTIONS(692), + [anon_sym_BANG_EQ] = ACTIONS(692), + [anon_sym_LT_EQ] = ACTIONS(692), + [anon_sym_GT_EQ] = ACTIONS(692), + [anon_sym_LT_LT] = ACTIONS(694), + [anon_sym_GT_GT] = ACTIONS(694), + [anon_sym_PLUS_EQ] = ACTIONS(692), + [anon_sym_DASH_EQ] = ACTIONS(692), + [anon_sym_STAR_EQ] = ACTIONS(692), + [anon_sym_SLASH_EQ] = ACTIONS(692), + [anon_sym_PERCENT_EQ] = ACTIONS(692), + [anon_sym_AMP_EQ] = ACTIONS(692), + [anon_sym_PIPE_EQ] = ACTIONS(692), + [anon_sym_CARET_EQ] = ACTIONS(692), + [anon_sym_LT_LT_EQ] = ACTIONS(692), + [anon_sym_GT_GT_EQ] = ACTIONS(692), + [sym_integer_literal] = ACTIONS(692), + [aux_sym_string_literal_token1] = ACTIONS(692), + [sym_char_literal] = ACTIONS(692), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(694), + [sym_super] = ACTIONS(694), + [sym_crate] = ACTIONS(694), + [sym_metavariable] = ACTIONS(692), + [sym_raw_string_literal] = ACTIONS(692), + [sym_float_literal] = ACTIONS(692), }, - [457] = { - [sym_line_comment] = STATE(457), - [sym_block_comment] = STATE(457), - [sym_identifier] = ACTIONS(980), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_RBRACK] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_COLON] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_PLUS] = ACTIONS(978), - [anon_sym_STAR] = ACTIONS(978), - [anon_sym_QMARK] = ACTIONS(978), - [anon_sym_u8] = ACTIONS(980), - [anon_sym_i8] = ACTIONS(980), - [anon_sym_u16] = ACTIONS(980), - [anon_sym_i16] = ACTIONS(980), - [anon_sym_u32] = ACTIONS(980), - [anon_sym_i32] = ACTIONS(980), - [anon_sym_u64] = ACTIONS(980), - [anon_sym_i64] = ACTIONS(980), - [anon_sym_u128] = ACTIONS(980), - [anon_sym_i128] = ACTIONS(980), - [anon_sym_isize] = ACTIONS(980), - [anon_sym_usize] = ACTIONS(980), - [anon_sym_f32] = ACTIONS(980), - [anon_sym_f64] = ACTIONS(980), - [anon_sym_bool] = ACTIONS(980), - [anon_sym_str] = ACTIONS(980), - [anon_sym_char] = ACTIONS(980), - [anon_sym_SLASH] = ACTIONS(980), - [anon_sym__] = ACTIONS(980), - [anon_sym_BSLASH] = ACTIONS(978), - [anon_sym_DASH] = ACTIONS(980), - [anon_sym_EQ] = ACTIONS(978), - [anon_sym_DASH_GT] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_COLON_COLON] = ACTIONS(978), - [anon_sym_BANG] = ACTIONS(978), - [anon_sym_DOT] = ACTIONS(978), - [anon_sym_AT] = ACTIONS(978), - [anon_sym_AMP] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(978), - [anon_sym_PERCENT] = ACTIONS(978), - [anon_sym_CARET] = ACTIONS(978), - [anon_sym_LT] = ACTIONS(978), - [anon_sym_GT] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_TILDE] = ACTIONS(978), - [anon_sym_SQUOTE] = ACTIONS(980), - [anon_sym_as] = ACTIONS(980), - [anon_sym_async] = ACTIONS(980), - [anon_sym_await] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_default] = ACTIONS(980), - [anon_sym_enum] = ACTIONS(980), - [anon_sym_fn] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_impl] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_mod] = ACTIONS(980), - [anon_sym_pub] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_static] = ACTIONS(980), - [anon_sym_struct] = ACTIONS(980), - [anon_sym_trait] = ACTIONS(980), - [anon_sym_type] = ACTIONS(980), - [anon_sym_union] = ACTIONS(980), - [anon_sym_unsafe] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_where] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [sym_mutable_specifier] = ACTIONS(980), - [sym_integer_literal] = ACTIONS(978), - [aux_sym_string_literal_token1] = ACTIONS(978), - [sym_char_literal] = ACTIONS(978), - [anon_sym_true] = ACTIONS(980), - [anon_sym_false] = ACTIONS(980), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(980), - [sym_super] = ACTIONS(980), - [sym_crate] = ACTIONS(980), - [sym_raw_string_literal] = ACTIONS(978), - [sym_float_literal] = ACTIONS(978), + [445] = { + [sym_line_comment] = STATE(445), + [sym_block_comment] = STATE(445), + [sym_identifier] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_PLUS] = ACTIONS(852), + [anon_sym_STAR] = ACTIONS(852), + [anon_sym_QMARK] = ACTIONS(850), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u128] = ACTIONS(852), + [anon_sym_i128] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_str] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_SLASH] = ACTIONS(852), + [anon_sym__] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(852), + [anon_sym_EQ] = ACTIONS(852), + [anon_sym_COMMA] = ACTIONS(850), + [anon_sym_COLON_COLON] = ACTIONS(850), + [anon_sym_DOT] = ACTIONS(852), + [anon_sym_AMP] = ACTIONS(852), + [anon_sym_POUND] = ACTIONS(850), + [anon_sym_PERCENT] = ACTIONS(852), + [anon_sym_CARET] = ACTIONS(852), + [anon_sym_LT] = ACTIONS(852), + [anon_sym_GT] = ACTIONS(852), + [anon_sym_PIPE] = ACTIONS(852), + [anon_sym_as] = ACTIONS(852), + [anon_sym_const] = ACTIONS(852), + [anon_sym_default] = ACTIONS(852), + [anon_sym_union] = ACTIONS(852), + [anon_sym_ref] = ACTIONS(852), + [anon_sym_else] = ACTIONS(852), + [anon_sym_DOT_DOT_DOT] = ACTIONS(850), + [sym_mutable_specifier] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(852), + [anon_sym_DOT_DOT_EQ] = ACTIONS(850), + [anon_sym_AMP_AMP] = ACTIONS(850), + [anon_sym_PIPE_PIPE] = ACTIONS(850), + [anon_sym_EQ_EQ] = ACTIONS(850), + [anon_sym_BANG_EQ] = ACTIONS(850), + [anon_sym_LT_EQ] = ACTIONS(850), + [anon_sym_GT_EQ] = ACTIONS(850), + [anon_sym_LT_LT] = ACTIONS(852), + [anon_sym_GT_GT] = ACTIONS(852), + [anon_sym_PLUS_EQ] = ACTIONS(850), + [anon_sym_DASH_EQ] = ACTIONS(850), + [anon_sym_STAR_EQ] = ACTIONS(850), + [anon_sym_SLASH_EQ] = ACTIONS(850), + [anon_sym_PERCENT_EQ] = ACTIONS(850), + [anon_sym_AMP_EQ] = ACTIONS(850), + [anon_sym_PIPE_EQ] = ACTIONS(850), + [anon_sym_CARET_EQ] = ACTIONS(850), + [anon_sym_LT_LT_EQ] = ACTIONS(850), + [anon_sym_GT_GT_EQ] = ACTIONS(850), + [sym_integer_literal] = ACTIONS(850), + [aux_sym_string_literal_token1] = ACTIONS(850), + [sym_char_literal] = ACTIONS(850), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(852), + [sym_super] = ACTIONS(852), + [sym_crate] = ACTIONS(852), + [sym_metavariable] = ACTIONS(850), + [sym_raw_string_literal] = ACTIONS(850), + [sym_float_literal] = ACTIONS(850), }, - [458] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2061), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(458), - [sym_block_comment] = STATE(458), - [sym_identifier] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_u8] = ACTIONS(1538), - [anon_sym_i8] = ACTIONS(1538), - [anon_sym_u16] = ACTIONS(1538), - [anon_sym_i16] = ACTIONS(1538), - [anon_sym_u32] = ACTIONS(1538), - [anon_sym_i32] = ACTIONS(1538), - [anon_sym_u64] = ACTIONS(1538), - [anon_sym_i64] = ACTIONS(1538), - [anon_sym_u128] = ACTIONS(1538), - [anon_sym_i128] = ACTIONS(1538), - [anon_sym_isize] = ACTIONS(1538), - [anon_sym_usize] = ACTIONS(1538), - [anon_sym_f32] = ACTIONS(1538), - [anon_sym_f64] = ACTIONS(1538), - [anon_sym_bool] = ACTIONS(1538), - [anon_sym_str] = ACTIONS(1538), - [anon_sym_char] = ACTIONS(1538), - [anon_sym__] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1538), - [anon_sym_DASH_GT] = ACTIONS(1540), - [anon_sym_COLON_COLON] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1540), - [anon_sym_PIPE] = ACTIONS(1540), - [anon_sym_SQUOTE] = ACTIONS(1538), - [anon_sym_async] = ACTIONS(1538), - [anon_sym_break] = ACTIONS(1538), - [anon_sym_const] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1538), - [anon_sym_for] = ACTIONS(1538), - [anon_sym_if] = ACTIONS(1538), - [anon_sym_loop] = ACTIONS(1538), - [anon_sym_match] = ACTIONS(1538), - [anon_sym_return] = ACTIONS(1538), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_union] = ACTIONS(1538), - [anon_sym_unsafe] = ACTIONS(1538), - [anon_sym_while] = ACTIONS(1538), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1540), - [anon_sym_yield] = ACTIONS(1538), - [anon_sym_move] = ACTIONS(1538), - [anon_sym_try] = ACTIONS(1538), - [sym_integer_literal] = ACTIONS(1540), - [aux_sym_string_literal_token1] = ACTIONS(1540), - [sym_char_literal] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1538), - [sym_super] = ACTIONS(1538), - [sym_crate] = ACTIONS(1538), - [sym_metavariable] = ACTIONS(1540), - [sym_raw_string_literal] = ACTIONS(1540), - [sym_float_literal] = ACTIONS(1540), + [446] = { + [sym_line_comment] = STATE(446), + [sym_block_comment] = STATE(446), + [sym_identifier] = ACTIONS(870), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_PLUS] = ACTIONS(870), + [anon_sym_STAR] = ACTIONS(870), + [anon_sym_QMARK] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(870), + [anon_sym_i8] = ACTIONS(870), + [anon_sym_u16] = ACTIONS(870), + [anon_sym_i16] = ACTIONS(870), + [anon_sym_u32] = ACTIONS(870), + [anon_sym_i32] = ACTIONS(870), + [anon_sym_u64] = ACTIONS(870), + [anon_sym_i64] = ACTIONS(870), + [anon_sym_u128] = ACTIONS(870), + [anon_sym_i128] = ACTIONS(870), + [anon_sym_isize] = ACTIONS(870), + [anon_sym_usize] = ACTIONS(870), + [anon_sym_f32] = ACTIONS(870), + [anon_sym_f64] = ACTIONS(870), + [anon_sym_bool] = ACTIONS(870), + [anon_sym_str] = ACTIONS(870), + [anon_sym_char] = ACTIONS(870), + [anon_sym_SLASH] = ACTIONS(870), + [anon_sym__] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(870), + [anon_sym_EQ] = ACTIONS(870), + [anon_sym_COMMA] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(868), + [anon_sym_DOT] = ACTIONS(870), + [anon_sym_AMP] = ACTIONS(870), + [anon_sym_POUND] = ACTIONS(868), + [anon_sym_PERCENT] = ACTIONS(870), + [anon_sym_CARET] = ACTIONS(870), + [anon_sym_LT] = ACTIONS(870), + [anon_sym_GT] = ACTIONS(870), + [anon_sym_PIPE] = ACTIONS(870), + [anon_sym_as] = ACTIONS(870), + [anon_sym_const] = ACTIONS(870), + [anon_sym_default] = ACTIONS(870), + [anon_sym_union] = ACTIONS(870), + [anon_sym_ref] = ACTIONS(870), + [anon_sym_else] = ACTIONS(870), + [anon_sym_DOT_DOT_DOT] = ACTIONS(868), + [sym_mutable_specifier] = ACTIONS(870), + [anon_sym_DOT_DOT] = ACTIONS(870), + [anon_sym_DOT_DOT_EQ] = ACTIONS(868), + [anon_sym_AMP_AMP] = ACTIONS(868), + [anon_sym_PIPE_PIPE] = ACTIONS(868), + [anon_sym_EQ_EQ] = ACTIONS(868), + [anon_sym_BANG_EQ] = ACTIONS(868), + [anon_sym_LT_EQ] = ACTIONS(868), + [anon_sym_GT_EQ] = ACTIONS(868), + [anon_sym_LT_LT] = ACTIONS(870), + [anon_sym_GT_GT] = ACTIONS(870), + [anon_sym_PLUS_EQ] = ACTIONS(868), + [anon_sym_DASH_EQ] = ACTIONS(868), + [anon_sym_STAR_EQ] = ACTIONS(868), + [anon_sym_SLASH_EQ] = ACTIONS(868), + [anon_sym_PERCENT_EQ] = ACTIONS(868), + [anon_sym_AMP_EQ] = ACTIONS(868), + [anon_sym_PIPE_EQ] = ACTIONS(868), + [anon_sym_CARET_EQ] = ACTIONS(868), + [anon_sym_LT_LT_EQ] = ACTIONS(868), + [anon_sym_GT_GT_EQ] = ACTIONS(868), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(870), + [anon_sym_false] = ACTIONS(870), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(870), + [sym_super] = ACTIONS(870), + [sym_crate] = ACTIONS(870), + [sym_metavariable] = ACTIONS(868), + [sym_raw_string_literal] = ACTIONS(868), + [sym_float_literal] = ACTIONS(868), }, - [459] = { - [sym_else_clause] = STATE(470), - [sym_line_comment] = STATE(459), - [sym_block_comment] = STATE(459), - [sym_identifier] = ACTIONS(728), - [anon_sym_LPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(726), - [anon_sym_RBRACE] = ACTIONS(726), - [anon_sym_PLUS] = ACTIONS(728), - [anon_sym_STAR] = ACTIONS(728), - [anon_sym_QMARK] = ACTIONS(726), - [anon_sym_u8] = ACTIONS(728), - [anon_sym_i8] = ACTIONS(728), - [anon_sym_u16] = ACTIONS(728), - [anon_sym_i16] = ACTIONS(728), - [anon_sym_u32] = ACTIONS(728), - [anon_sym_i32] = ACTIONS(728), - [anon_sym_u64] = ACTIONS(728), - [anon_sym_i64] = ACTIONS(728), - [anon_sym_u128] = ACTIONS(728), - [anon_sym_i128] = ACTIONS(728), - [anon_sym_isize] = ACTIONS(728), - [anon_sym_usize] = ACTIONS(728), - [anon_sym_f32] = ACTIONS(728), - [anon_sym_f64] = ACTIONS(728), - [anon_sym_bool] = ACTIONS(728), - [anon_sym_str] = ACTIONS(728), - [anon_sym_char] = ACTIONS(728), - [anon_sym_SLASH] = ACTIONS(728), - [anon_sym__] = ACTIONS(728), - [anon_sym_DASH] = ACTIONS(728), - [anon_sym_EQ] = ACTIONS(728), - [anon_sym_COMMA] = ACTIONS(726), - [anon_sym_COLON_COLON] = ACTIONS(726), - [anon_sym_DOT] = ACTIONS(728), - [anon_sym_AMP] = ACTIONS(728), - [anon_sym_POUND] = ACTIONS(726), - [anon_sym_PERCENT] = ACTIONS(728), - [anon_sym_CARET] = ACTIONS(728), - [anon_sym_LT] = ACTIONS(728), - [anon_sym_GT] = ACTIONS(728), - [anon_sym_PIPE] = ACTIONS(728), - [anon_sym_as] = ACTIONS(728), - [anon_sym_const] = ACTIONS(728), - [anon_sym_default] = ACTIONS(728), - [anon_sym_static] = ACTIONS(728), - [anon_sym_union] = ACTIONS(728), - [anon_sym_ref] = ACTIONS(728), - [anon_sym_else] = ACTIONS(1542), - [anon_sym_DOT_DOT_DOT] = ACTIONS(726), - [sym_mutable_specifier] = ACTIONS(728), - [anon_sym_DOT_DOT] = ACTIONS(728), - [anon_sym_DOT_DOT_EQ] = ACTIONS(726), - [anon_sym_AMP_AMP] = ACTIONS(726), - [anon_sym_PIPE_PIPE] = ACTIONS(726), - [anon_sym_EQ_EQ] = ACTIONS(726), - [anon_sym_BANG_EQ] = ACTIONS(726), - [anon_sym_LT_EQ] = ACTIONS(726), - [anon_sym_GT_EQ] = ACTIONS(726), - [anon_sym_LT_LT] = ACTIONS(728), - [anon_sym_GT_GT] = ACTIONS(728), - [anon_sym_PLUS_EQ] = ACTIONS(726), - [anon_sym_DASH_EQ] = ACTIONS(726), - [anon_sym_STAR_EQ] = ACTIONS(726), - [anon_sym_SLASH_EQ] = ACTIONS(726), - [anon_sym_PERCENT_EQ] = ACTIONS(726), - [anon_sym_AMP_EQ] = ACTIONS(726), - [anon_sym_PIPE_EQ] = ACTIONS(726), - [anon_sym_CARET_EQ] = ACTIONS(726), - [anon_sym_LT_LT_EQ] = ACTIONS(726), - [anon_sym_GT_GT_EQ] = ACTIONS(726), - [anon_sym_move] = ACTIONS(728), - [sym_integer_literal] = ACTIONS(726), - [aux_sym_string_literal_token1] = ACTIONS(726), - [sym_char_literal] = ACTIONS(726), - [anon_sym_true] = ACTIONS(728), - [anon_sym_false] = ACTIONS(728), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(728), - [sym_super] = ACTIONS(728), - [sym_crate] = ACTIONS(728), - [sym_metavariable] = ACTIONS(726), - [sym_raw_string_literal] = ACTIONS(726), - [sym_float_literal] = ACTIONS(726), + [447] = { + [sym_line_comment] = STATE(447), + [sym_block_comment] = STATE(447), + [sym_identifier] = ACTIONS(866), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_PLUS] = ACTIONS(866), + [anon_sym_STAR] = ACTIONS(866), + [anon_sym_QMARK] = ACTIONS(864), + [anon_sym_u8] = ACTIONS(866), + [anon_sym_i8] = ACTIONS(866), + [anon_sym_u16] = ACTIONS(866), + [anon_sym_i16] = ACTIONS(866), + [anon_sym_u32] = ACTIONS(866), + [anon_sym_i32] = ACTIONS(866), + [anon_sym_u64] = ACTIONS(866), + [anon_sym_i64] = ACTIONS(866), + [anon_sym_u128] = ACTIONS(866), + [anon_sym_i128] = ACTIONS(866), + [anon_sym_isize] = ACTIONS(866), + [anon_sym_usize] = ACTIONS(866), + [anon_sym_f32] = ACTIONS(866), + [anon_sym_f64] = ACTIONS(866), + [anon_sym_bool] = ACTIONS(866), + [anon_sym_str] = ACTIONS(866), + [anon_sym_char] = ACTIONS(866), + [anon_sym_SLASH] = ACTIONS(866), + [anon_sym__] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(866), + [anon_sym_EQ] = ACTIONS(866), + [anon_sym_COMMA] = ACTIONS(864), + [anon_sym_COLON_COLON] = ACTIONS(864), + [anon_sym_DOT] = ACTIONS(866), + [anon_sym_AMP] = ACTIONS(866), + [anon_sym_POUND] = ACTIONS(864), + [anon_sym_PERCENT] = ACTIONS(866), + [anon_sym_CARET] = ACTIONS(866), + [anon_sym_LT] = ACTIONS(866), + [anon_sym_GT] = ACTIONS(866), + [anon_sym_PIPE] = ACTIONS(866), + [anon_sym_as] = ACTIONS(866), + [anon_sym_const] = ACTIONS(866), + [anon_sym_default] = ACTIONS(866), + [anon_sym_union] = ACTIONS(866), + [anon_sym_ref] = ACTIONS(866), + [anon_sym_else] = ACTIONS(866), + [anon_sym_DOT_DOT_DOT] = ACTIONS(864), + [sym_mutable_specifier] = ACTIONS(866), + [anon_sym_DOT_DOT] = ACTIONS(866), + [anon_sym_DOT_DOT_EQ] = ACTIONS(864), + [anon_sym_AMP_AMP] = ACTIONS(864), + [anon_sym_PIPE_PIPE] = ACTIONS(864), + [anon_sym_EQ_EQ] = ACTIONS(864), + [anon_sym_BANG_EQ] = ACTIONS(864), + [anon_sym_LT_EQ] = ACTIONS(864), + [anon_sym_GT_EQ] = ACTIONS(864), + [anon_sym_LT_LT] = ACTIONS(866), + [anon_sym_GT_GT] = ACTIONS(866), + [anon_sym_PLUS_EQ] = ACTIONS(864), + [anon_sym_DASH_EQ] = ACTIONS(864), + [anon_sym_STAR_EQ] = ACTIONS(864), + [anon_sym_SLASH_EQ] = ACTIONS(864), + [anon_sym_PERCENT_EQ] = ACTIONS(864), + [anon_sym_AMP_EQ] = ACTIONS(864), + [anon_sym_PIPE_EQ] = ACTIONS(864), + [anon_sym_CARET_EQ] = ACTIONS(864), + [anon_sym_LT_LT_EQ] = ACTIONS(864), + [anon_sym_GT_GT_EQ] = ACTIONS(864), + [sym_integer_literal] = ACTIONS(864), + [aux_sym_string_literal_token1] = ACTIONS(864), + [sym_char_literal] = ACTIONS(864), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(866), + [sym_super] = ACTIONS(866), + [sym_crate] = ACTIONS(866), + [sym_metavariable] = ACTIONS(864), + [sym_raw_string_literal] = ACTIONS(864), + [sym_float_literal] = ACTIONS(864), }, - [460] = { - [sym_line_comment] = STATE(460), - [sym_block_comment] = STATE(460), - [sym_identifier] = ACTIONS(878), - [anon_sym_LPAREN] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_PLUS] = ACTIONS(878), - [anon_sym_STAR] = ACTIONS(878), - [anon_sym_QMARK] = ACTIONS(876), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_SLASH] = ACTIONS(878), - [anon_sym__] = ACTIONS(878), - [anon_sym_DASH] = ACTIONS(878), - [anon_sym_EQ] = ACTIONS(878), - [anon_sym_COMMA] = ACTIONS(876), - [anon_sym_COLON_COLON] = ACTIONS(876), - [anon_sym_DOT] = ACTIONS(878), - [anon_sym_AMP] = ACTIONS(878), - [anon_sym_POUND] = ACTIONS(876), - [anon_sym_PERCENT] = ACTIONS(878), - [anon_sym_CARET] = ACTIONS(878), - [anon_sym_LT] = ACTIONS(878), - [anon_sym_GT] = ACTIONS(878), - [anon_sym_PIPE] = ACTIONS(878), - [anon_sym_as] = ACTIONS(878), - [anon_sym_const] = ACTIONS(878), - [anon_sym_default] = ACTIONS(878), - [anon_sym_static] = ACTIONS(878), - [anon_sym_union] = ACTIONS(878), - [anon_sym_ref] = ACTIONS(878), - [anon_sym_else] = ACTIONS(878), - [anon_sym_DOT_DOT_DOT] = ACTIONS(876), - [sym_mutable_specifier] = ACTIONS(878), - [anon_sym_DOT_DOT] = ACTIONS(878), - [anon_sym_DOT_DOT_EQ] = ACTIONS(876), - [anon_sym_AMP_AMP] = ACTIONS(876), - [anon_sym_PIPE_PIPE] = ACTIONS(876), - [anon_sym_EQ_EQ] = ACTIONS(876), - [anon_sym_BANG_EQ] = ACTIONS(876), - [anon_sym_LT_EQ] = ACTIONS(876), - [anon_sym_GT_EQ] = ACTIONS(876), - [anon_sym_LT_LT] = ACTIONS(878), - [anon_sym_GT_GT] = ACTIONS(878), - [anon_sym_PLUS_EQ] = ACTIONS(876), - [anon_sym_DASH_EQ] = ACTIONS(876), - [anon_sym_STAR_EQ] = ACTIONS(876), - [anon_sym_SLASH_EQ] = ACTIONS(876), - [anon_sym_PERCENT_EQ] = ACTIONS(876), - [anon_sym_AMP_EQ] = ACTIONS(876), - [anon_sym_PIPE_EQ] = ACTIONS(876), - [anon_sym_CARET_EQ] = ACTIONS(876), - [anon_sym_LT_LT_EQ] = ACTIONS(876), - [anon_sym_GT_GT_EQ] = ACTIONS(876), - [anon_sym_move] = ACTIONS(878), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(876), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(878), - [anon_sym_false] = ACTIONS(878), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(878), - [sym_super] = ACTIONS(878), - [sym_crate] = ACTIONS(878), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(876), - [sym_float_literal] = ACTIONS(876), + [448] = { + [sym_line_comment] = STATE(448), + [sym_block_comment] = STATE(448), + [sym_identifier] = ACTIONS(856), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_PLUS] = ACTIONS(856), + [anon_sym_STAR] = ACTIONS(856), + [anon_sym_QMARK] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(856), + [anon_sym_i8] = ACTIONS(856), + [anon_sym_u16] = ACTIONS(856), + [anon_sym_i16] = ACTIONS(856), + [anon_sym_u32] = ACTIONS(856), + [anon_sym_i32] = ACTIONS(856), + [anon_sym_u64] = ACTIONS(856), + [anon_sym_i64] = ACTIONS(856), + [anon_sym_u128] = ACTIONS(856), + [anon_sym_i128] = ACTIONS(856), + [anon_sym_isize] = ACTIONS(856), + [anon_sym_usize] = ACTIONS(856), + [anon_sym_f32] = ACTIONS(856), + [anon_sym_f64] = ACTIONS(856), + [anon_sym_bool] = ACTIONS(856), + [anon_sym_str] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), + [anon_sym_SLASH] = ACTIONS(856), + [anon_sym__] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(856), + [anon_sym_EQ] = ACTIONS(856), + [anon_sym_COMMA] = ACTIONS(854), + [anon_sym_COLON_COLON] = ACTIONS(854), + [anon_sym_DOT] = ACTIONS(856), + [anon_sym_AMP] = ACTIONS(856), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_PERCENT] = ACTIONS(856), + [anon_sym_CARET] = ACTIONS(856), + [anon_sym_LT] = ACTIONS(856), + [anon_sym_GT] = ACTIONS(856), + [anon_sym_PIPE] = ACTIONS(856), + [anon_sym_as] = ACTIONS(856), + [anon_sym_const] = ACTIONS(856), + [anon_sym_default] = ACTIONS(856), + [anon_sym_union] = ACTIONS(856), + [anon_sym_ref] = ACTIONS(856), + [anon_sym_else] = ACTIONS(856), + [anon_sym_DOT_DOT_DOT] = ACTIONS(854), + [sym_mutable_specifier] = ACTIONS(856), + [anon_sym_DOT_DOT] = ACTIONS(856), + [anon_sym_DOT_DOT_EQ] = ACTIONS(854), + [anon_sym_AMP_AMP] = ACTIONS(854), + [anon_sym_PIPE_PIPE] = ACTIONS(854), + [anon_sym_EQ_EQ] = ACTIONS(854), + [anon_sym_BANG_EQ] = ACTIONS(854), + [anon_sym_LT_EQ] = ACTIONS(854), + [anon_sym_GT_EQ] = ACTIONS(854), + [anon_sym_LT_LT] = ACTIONS(856), + [anon_sym_GT_GT] = ACTIONS(856), + [anon_sym_PLUS_EQ] = ACTIONS(854), + [anon_sym_DASH_EQ] = ACTIONS(854), + [anon_sym_STAR_EQ] = ACTIONS(854), + [anon_sym_SLASH_EQ] = ACTIONS(854), + [anon_sym_PERCENT_EQ] = ACTIONS(854), + [anon_sym_AMP_EQ] = ACTIONS(854), + [anon_sym_PIPE_EQ] = ACTIONS(854), + [anon_sym_CARET_EQ] = ACTIONS(854), + [anon_sym_LT_LT_EQ] = ACTIONS(854), + [anon_sym_GT_GT_EQ] = ACTIONS(854), + [sym_integer_literal] = ACTIONS(854), + [aux_sym_string_literal_token1] = ACTIONS(854), + [sym_char_literal] = ACTIONS(854), + [anon_sym_true] = ACTIONS(856), + [anon_sym_false] = ACTIONS(856), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(856), + [sym_super] = ACTIONS(856), + [sym_crate] = ACTIONS(856), + [sym_metavariable] = ACTIONS(854), + [sym_raw_string_literal] = ACTIONS(854), + [sym_float_literal] = ACTIONS(854), }, - [461] = { - [sym_line_comment] = STATE(461), - [sym_block_comment] = STATE(461), - [sym_identifier] = ACTIONS(898), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_PLUS] = ACTIONS(898), - [anon_sym_STAR] = ACTIONS(898), - [anon_sym_QMARK] = ACTIONS(896), - [anon_sym_u8] = ACTIONS(898), - [anon_sym_i8] = ACTIONS(898), - [anon_sym_u16] = ACTIONS(898), - [anon_sym_i16] = ACTIONS(898), - [anon_sym_u32] = ACTIONS(898), - [anon_sym_i32] = ACTIONS(898), - [anon_sym_u64] = ACTIONS(898), - [anon_sym_i64] = ACTIONS(898), - [anon_sym_u128] = ACTIONS(898), - [anon_sym_i128] = ACTIONS(898), - [anon_sym_isize] = ACTIONS(898), - [anon_sym_usize] = ACTIONS(898), - [anon_sym_f32] = ACTIONS(898), - [anon_sym_f64] = ACTIONS(898), - [anon_sym_bool] = ACTIONS(898), - [anon_sym_str] = ACTIONS(898), - [anon_sym_char] = ACTIONS(898), - [anon_sym_SLASH] = ACTIONS(898), - [anon_sym__] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(898), - [anon_sym_EQ] = ACTIONS(898), - [anon_sym_COMMA] = ACTIONS(896), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_DOT] = ACTIONS(898), - [anon_sym_AMP] = ACTIONS(898), - [anon_sym_POUND] = ACTIONS(896), - [anon_sym_PERCENT] = ACTIONS(898), - [anon_sym_CARET] = ACTIONS(898), - [anon_sym_LT] = ACTIONS(898), - [anon_sym_GT] = ACTIONS(898), - [anon_sym_PIPE] = ACTIONS(898), - [anon_sym_as] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_static] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_ref] = ACTIONS(898), - [anon_sym_else] = ACTIONS(898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(896), - [sym_mutable_specifier] = ACTIONS(898), - [anon_sym_DOT_DOT] = ACTIONS(898), - [anon_sym_DOT_DOT_EQ] = ACTIONS(896), - [anon_sym_AMP_AMP] = ACTIONS(896), - [anon_sym_PIPE_PIPE] = ACTIONS(896), - [anon_sym_EQ_EQ] = ACTIONS(896), - [anon_sym_BANG_EQ] = ACTIONS(896), - [anon_sym_LT_EQ] = ACTIONS(896), - [anon_sym_GT_EQ] = ACTIONS(896), - [anon_sym_LT_LT] = ACTIONS(898), - [anon_sym_GT_GT] = ACTIONS(898), - [anon_sym_PLUS_EQ] = ACTIONS(896), - [anon_sym_DASH_EQ] = ACTIONS(896), - [anon_sym_STAR_EQ] = ACTIONS(896), - [anon_sym_SLASH_EQ] = ACTIONS(896), - [anon_sym_PERCENT_EQ] = ACTIONS(896), - [anon_sym_AMP_EQ] = ACTIONS(896), - [anon_sym_PIPE_EQ] = ACTIONS(896), - [anon_sym_CARET_EQ] = ACTIONS(896), - [anon_sym_LT_LT_EQ] = ACTIONS(896), - [anon_sym_GT_GT_EQ] = ACTIONS(896), - [anon_sym_move] = ACTIONS(898), - [sym_integer_literal] = ACTIONS(896), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(896), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), + [449] = { + [sym_line_comment] = STATE(449), + [sym_block_comment] = STATE(449), + [sym_identifier] = ACTIONS(860), + [anon_sym_LPAREN] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_STAR] = ACTIONS(860), + [anon_sym_QMARK] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(860), + [anon_sym_i8] = ACTIONS(860), + [anon_sym_u16] = ACTIONS(860), + [anon_sym_i16] = ACTIONS(860), + [anon_sym_u32] = ACTIONS(860), + [anon_sym_i32] = ACTIONS(860), + [anon_sym_u64] = ACTIONS(860), + [anon_sym_i64] = ACTIONS(860), + [anon_sym_u128] = ACTIONS(860), + [anon_sym_i128] = ACTIONS(860), + [anon_sym_isize] = ACTIONS(860), + [anon_sym_usize] = ACTIONS(860), + [anon_sym_f32] = ACTIONS(860), + [anon_sym_f64] = ACTIONS(860), + [anon_sym_bool] = ACTIONS(860), + [anon_sym_str] = ACTIONS(860), + [anon_sym_char] = ACTIONS(860), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym__] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_EQ] = ACTIONS(860), + [anon_sym_COMMA] = ACTIONS(858), + [anon_sym_COLON_COLON] = ACTIONS(858), + [anon_sym_DOT] = ACTIONS(860), + [anon_sym_AMP] = ACTIONS(860), + [anon_sym_POUND] = ACTIONS(858), + [anon_sym_PERCENT] = ACTIONS(860), + [anon_sym_CARET] = ACTIONS(860), + [anon_sym_LT] = ACTIONS(860), + [anon_sym_GT] = ACTIONS(860), + [anon_sym_PIPE] = ACTIONS(860), + [anon_sym_as] = ACTIONS(860), + [anon_sym_const] = ACTIONS(860), + [anon_sym_default] = ACTIONS(860), + [anon_sym_union] = ACTIONS(860), + [anon_sym_ref] = ACTIONS(860), + [anon_sym_else] = ACTIONS(860), + [anon_sym_DOT_DOT_DOT] = ACTIONS(858), + [sym_mutable_specifier] = ACTIONS(860), + [anon_sym_DOT_DOT] = ACTIONS(860), + [anon_sym_DOT_DOT_EQ] = ACTIONS(858), + [anon_sym_AMP_AMP] = ACTIONS(858), + [anon_sym_PIPE_PIPE] = ACTIONS(858), + [anon_sym_EQ_EQ] = ACTIONS(858), + [anon_sym_BANG_EQ] = ACTIONS(858), + [anon_sym_LT_EQ] = ACTIONS(858), + [anon_sym_GT_EQ] = ACTIONS(858), + [anon_sym_LT_LT] = ACTIONS(860), + [anon_sym_GT_GT] = ACTIONS(860), + [anon_sym_PLUS_EQ] = ACTIONS(858), + [anon_sym_DASH_EQ] = ACTIONS(858), + [anon_sym_STAR_EQ] = ACTIONS(858), + [anon_sym_SLASH_EQ] = ACTIONS(858), + [anon_sym_PERCENT_EQ] = ACTIONS(858), + [anon_sym_AMP_EQ] = ACTIONS(858), + [anon_sym_PIPE_EQ] = ACTIONS(858), + [anon_sym_CARET_EQ] = ACTIONS(858), + [anon_sym_LT_LT_EQ] = ACTIONS(858), + [anon_sym_GT_GT_EQ] = ACTIONS(858), + [sym_integer_literal] = ACTIONS(858), + [aux_sym_string_literal_token1] = ACTIONS(858), + [sym_char_literal] = ACTIONS(858), + [anon_sym_true] = ACTIONS(860), + [anon_sym_false] = ACTIONS(860), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(858), + [sym_raw_string_literal] = ACTIONS(858), + [sym_float_literal] = ACTIONS(858), + }, + [450] = { + [sym_line_comment] = STATE(450), + [sym_block_comment] = STATE(450), + [sym_identifier] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_LBRACK] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_PLUS] = ACTIONS(982), + [anon_sym_STAR] = ACTIONS(982), + [anon_sym_QMARK] = ACTIONS(980), + [anon_sym_u8] = ACTIONS(982), + [anon_sym_i8] = ACTIONS(982), + [anon_sym_u16] = ACTIONS(982), + [anon_sym_i16] = ACTIONS(982), + [anon_sym_u32] = ACTIONS(982), + [anon_sym_i32] = ACTIONS(982), + [anon_sym_u64] = ACTIONS(982), + [anon_sym_i64] = ACTIONS(982), + [anon_sym_u128] = ACTIONS(982), + [anon_sym_i128] = ACTIONS(982), + [anon_sym_isize] = ACTIONS(982), + [anon_sym_usize] = ACTIONS(982), + [anon_sym_f32] = ACTIONS(982), + [anon_sym_f64] = ACTIONS(982), + [anon_sym_bool] = ACTIONS(982), + [anon_sym_str] = ACTIONS(982), + [anon_sym_char] = ACTIONS(982), + [anon_sym_SLASH] = ACTIONS(982), + [anon_sym__] = ACTIONS(982), + [anon_sym_DASH] = ACTIONS(982), + [anon_sym_EQ] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(980), + [anon_sym_COLON_COLON] = ACTIONS(980), + [anon_sym_DOT] = ACTIONS(982), + [anon_sym_AMP] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(980), + [anon_sym_PERCENT] = ACTIONS(982), + [anon_sym_CARET] = ACTIONS(982), + [anon_sym_LT] = ACTIONS(982), + [anon_sym_GT] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_as] = ACTIONS(982), + [anon_sym_const] = ACTIONS(982), + [anon_sym_default] = ACTIONS(982), + [anon_sym_union] = ACTIONS(982), + [anon_sym_ref] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT] = ACTIONS(980), + [sym_mutable_specifier] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(982), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_AMP_AMP] = ACTIONS(980), + [anon_sym_PIPE_PIPE] = ACTIONS(980), + [anon_sym_EQ_EQ] = ACTIONS(980), + [anon_sym_BANG_EQ] = ACTIONS(980), + [anon_sym_LT_EQ] = ACTIONS(980), + [anon_sym_GT_EQ] = ACTIONS(980), + [anon_sym_LT_LT] = ACTIONS(982), + [anon_sym_GT_GT] = ACTIONS(982), + [anon_sym_PLUS_EQ] = ACTIONS(980), + [anon_sym_DASH_EQ] = ACTIONS(980), + [anon_sym_STAR_EQ] = ACTIONS(980), + [anon_sym_SLASH_EQ] = ACTIONS(980), + [anon_sym_PERCENT_EQ] = ACTIONS(980), + [anon_sym_AMP_EQ] = ACTIONS(980), + [anon_sym_PIPE_EQ] = ACTIONS(980), + [anon_sym_CARET_EQ] = ACTIONS(980), + [anon_sym_LT_LT_EQ] = ACTIONS(980), + [anon_sym_GT_GT_EQ] = ACTIONS(980), + [sym_integer_literal] = ACTIONS(980), + [aux_sym_string_literal_token1] = ACTIONS(980), + [sym_char_literal] = ACTIONS(980), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(982), + [sym_super] = ACTIONS(982), + [sym_crate] = ACTIONS(982), + [sym_metavariable] = ACTIONS(980), + [sym_raw_string_literal] = ACTIONS(980), + [sym_float_literal] = ACTIONS(980), + }, + [451] = { + [sym_line_comment] = STATE(451), + [sym_block_comment] = STATE(451), + [sym_identifier] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_LBRACK] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_PLUS] = ACTIONS(954), + [anon_sym_STAR] = ACTIONS(954), + [anon_sym_QMARK] = ACTIONS(952), + [anon_sym_u8] = ACTIONS(954), + [anon_sym_i8] = ACTIONS(954), + [anon_sym_u16] = ACTIONS(954), + [anon_sym_i16] = ACTIONS(954), + [anon_sym_u32] = ACTIONS(954), + [anon_sym_i32] = ACTIONS(954), + [anon_sym_u64] = ACTIONS(954), + [anon_sym_i64] = ACTIONS(954), + [anon_sym_u128] = ACTIONS(954), + [anon_sym_i128] = ACTIONS(954), + [anon_sym_isize] = ACTIONS(954), + [anon_sym_usize] = ACTIONS(954), + [anon_sym_f32] = ACTIONS(954), + [anon_sym_f64] = ACTIONS(954), + [anon_sym_bool] = ACTIONS(954), + [anon_sym_str] = ACTIONS(954), + [anon_sym_char] = ACTIONS(954), + [anon_sym_SLASH] = ACTIONS(954), + [anon_sym__] = ACTIONS(954), + [anon_sym_DASH] = ACTIONS(954), + [anon_sym_EQ] = ACTIONS(954), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_COLON_COLON] = ACTIONS(952), + [anon_sym_DOT] = ACTIONS(954), + [anon_sym_AMP] = ACTIONS(954), + [anon_sym_POUND] = ACTIONS(952), + [anon_sym_PERCENT] = ACTIONS(954), + [anon_sym_CARET] = ACTIONS(954), + [anon_sym_LT] = ACTIONS(954), + [anon_sym_GT] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_as] = ACTIONS(954), + [anon_sym_const] = ACTIONS(954), + [anon_sym_default] = ACTIONS(954), + [anon_sym_union] = ACTIONS(954), + [anon_sym_ref] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT] = ACTIONS(952), + [sym_mutable_specifier] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [anon_sym_AMP_AMP] = ACTIONS(952), + [anon_sym_PIPE_PIPE] = ACTIONS(952), + [anon_sym_EQ_EQ] = ACTIONS(952), + [anon_sym_BANG_EQ] = ACTIONS(952), + [anon_sym_LT_EQ] = ACTIONS(952), + [anon_sym_GT_EQ] = ACTIONS(952), + [anon_sym_LT_LT] = ACTIONS(954), + [anon_sym_GT_GT] = ACTIONS(954), + [anon_sym_PLUS_EQ] = ACTIONS(952), + [anon_sym_DASH_EQ] = ACTIONS(952), + [anon_sym_STAR_EQ] = ACTIONS(952), + [anon_sym_SLASH_EQ] = ACTIONS(952), + [anon_sym_PERCENT_EQ] = ACTIONS(952), + [anon_sym_AMP_EQ] = ACTIONS(952), + [anon_sym_PIPE_EQ] = ACTIONS(952), + [anon_sym_CARET_EQ] = ACTIONS(952), + [anon_sym_LT_LT_EQ] = ACTIONS(952), + [anon_sym_GT_GT_EQ] = ACTIONS(952), + [sym_integer_literal] = ACTIONS(952), + [aux_sym_string_literal_token1] = ACTIONS(952), + [sym_char_literal] = ACTIONS(952), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(954), + [sym_super] = ACTIONS(954), + [sym_crate] = ACTIONS(954), + [sym_metavariable] = ACTIONS(952), + [sym_raw_string_literal] = ACTIONS(952), + [sym_float_literal] = ACTIONS(952), + }, + [452] = { + [sym_line_comment] = STATE(452), + [sym_block_comment] = STATE(452), + [sym_identifier] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(944), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_PLUS] = ACTIONS(946), + [anon_sym_STAR] = ACTIONS(946), + [anon_sym_QMARK] = ACTIONS(944), + [anon_sym_u8] = ACTIONS(946), + [anon_sym_i8] = ACTIONS(946), + [anon_sym_u16] = ACTIONS(946), + [anon_sym_i16] = ACTIONS(946), + [anon_sym_u32] = ACTIONS(946), + [anon_sym_i32] = ACTIONS(946), + [anon_sym_u64] = ACTIONS(946), + [anon_sym_i64] = ACTIONS(946), + [anon_sym_u128] = ACTIONS(946), + [anon_sym_i128] = ACTIONS(946), + [anon_sym_isize] = ACTIONS(946), + [anon_sym_usize] = ACTIONS(946), + [anon_sym_f32] = ACTIONS(946), + [anon_sym_f64] = ACTIONS(946), + [anon_sym_bool] = ACTIONS(946), + [anon_sym_str] = ACTIONS(946), + [anon_sym_char] = ACTIONS(946), + [anon_sym_SLASH] = ACTIONS(946), + [anon_sym__] = ACTIONS(946), + [anon_sym_DASH] = ACTIONS(946), + [anon_sym_EQ] = ACTIONS(946), + [anon_sym_COMMA] = ACTIONS(944), + [anon_sym_COLON_COLON] = ACTIONS(944), + [anon_sym_DOT] = ACTIONS(946), + [anon_sym_AMP] = ACTIONS(946), + [anon_sym_POUND] = ACTIONS(944), + [anon_sym_PERCENT] = ACTIONS(946), + [anon_sym_CARET] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_PIPE] = ACTIONS(946), + [anon_sym_as] = ACTIONS(946), + [anon_sym_const] = ACTIONS(946), + [anon_sym_default] = ACTIONS(946), + [anon_sym_union] = ACTIONS(946), + [anon_sym_ref] = ACTIONS(946), + [anon_sym_DOT_DOT_DOT] = ACTIONS(944), + [sym_mutable_specifier] = ACTIONS(946), + [anon_sym_DOT_DOT] = ACTIONS(946), + [anon_sym_DOT_DOT_EQ] = ACTIONS(944), + [anon_sym_AMP_AMP] = ACTIONS(944), + [anon_sym_PIPE_PIPE] = ACTIONS(944), + [anon_sym_EQ_EQ] = ACTIONS(944), + [anon_sym_BANG_EQ] = ACTIONS(944), + [anon_sym_LT_EQ] = ACTIONS(944), + [anon_sym_GT_EQ] = ACTIONS(944), + [anon_sym_LT_LT] = ACTIONS(946), + [anon_sym_GT_GT] = ACTIONS(946), + [anon_sym_PLUS_EQ] = ACTIONS(944), + [anon_sym_DASH_EQ] = ACTIONS(944), + [anon_sym_STAR_EQ] = ACTIONS(944), + [anon_sym_SLASH_EQ] = ACTIONS(944), + [anon_sym_PERCENT_EQ] = ACTIONS(944), + [anon_sym_AMP_EQ] = ACTIONS(944), + [anon_sym_PIPE_EQ] = ACTIONS(944), + [anon_sym_CARET_EQ] = ACTIONS(944), + [anon_sym_LT_LT_EQ] = ACTIONS(944), + [anon_sym_GT_GT_EQ] = ACTIONS(944), + [sym_integer_literal] = ACTIONS(944), + [aux_sym_string_literal_token1] = ACTIONS(944), + [sym_char_literal] = ACTIONS(944), + [anon_sym_true] = ACTIONS(946), + [anon_sym_false] = ACTIONS(946), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(898), - [sym_super] = ACTIONS(898), - [sym_crate] = ACTIONS(898), - [sym_metavariable] = ACTIONS(896), - [sym_raw_string_literal] = ACTIONS(896), - [sym_float_literal] = ACTIONS(896), + [sym_self] = ACTIONS(946), + [sym_super] = ACTIONS(946), + [sym_crate] = ACTIONS(946), + [sym_metavariable] = ACTIONS(944), + [sym_raw_string_literal] = ACTIONS(944), + [sym_float_literal] = ACTIONS(944), }, - [462] = { - [sym_line_comment] = STATE(462), - [sym_block_comment] = STATE(462), + [453] = { + [sym_line_comment] = STATE(453), + [sym_block_comment] = STATE(453), + [sym_identifier] = ACTIONS(876), + [anon_sym_LPAREN] = ACTIONS(874), + [anon_sym_LBRACK] = ACTIONS(874), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_PLUS] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(876), + [anon_sym_QMARK] = ACTIONS(874), + [anon_sym_u8] = ACTIONS(876), + [anon_sym_i8] = ACTIONS(876), + [anon_sym_u16] = ACTIONS(876), + [anon_sym_i16] = ACTIONS(876), + [anon_sym_u32] = ACTIONS(876), + [anon_sym_i32] = ACTIONS(876), + [anon_sym_u64] = ACTIONS(876), + [anon_sym_i64] = ACTIONS(876), + [anon_sym_u128] = ACTIONS(876), + [anon_sym_i128] = ACTIONS(876), + [anon_sym_isize] = ACTIONS(876), + [anon_sym_usize] = ACTIONS(876), + [anon_sym_f32] = ACTIONS(876), + [anon_sym_f64] = ACTIONS(876), + [anon_sym_bool] = ACTIONS(876), + [anon_sym_str] = ACTIONS(876), + [anon_sym_char] = ACTIONS(876), + [anon_sym_SLASH] = ACTIONS(876), + [anon_sym__] = ACTIONS(876), + [anon_sym_DASH] = ACTIONS(876), + [anon_sym_EQ] = ACTIONS(876), + [anon_sym_COMMA] = ACTIONS(874), + [anon_sym_COLON_COLON] = ACTIONS(874), + [anon_sym_DOT] = ACTIONS(876), + [anon_sym_AMP] = ACTIONS(876), + [anon_sym_POUND] = ACTIONS(874), + [anon_sym_PERCENT] = ACTIONS(876), + [anon_sym_CARET] = ACTIONS(876), + [anon_sym_LT] = ACTIONS(876), + [anon_sym_GT] = ACTIONS(876), + [anon_sym_PIPE] = ACTIONS(876), + [anon_sym_as] = ACTIONS(876), + [anon_sym_const] = ACTIONS(876), + [anon_sym_default] = ACTIONS(876), + [anon_sym_union] = ACTIONS(876), + [anon_sym_ref] = ACTIONS(876), + [anon_sym_DOT_DOT_DOT] = ACTIONS(874), + [sym_mutable_specifier] = ACTIONS(876), + [anon_sym_DOT_DOT] = ACTIONS(876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(874), + [anon_sym_AMP_AMP] = ACTIONS(874), + [anon_sym_PIPE_PIPE] = ACTIONS(874), + [anon_sym_EQ_EQ] = ACTIONS(874), + [anon_sym_BANG_EQ] = ACTIONS(874), + [anon_sym_LT_EQ] = ACTIONS(874), + [anon_sym_GT_EQ] = ACTIONS(874), + [anon_sym_LT_LT] = ACTIONS(876), + [anon_sym_GT_GT] = ACTIONS(876), + [anon_sym_PLUS_EQ] = ACTIONS(874), + [anon_sym_DASH_EQ] = ACTIONS(874), + [anon_sym_STAR_EQ] = ACTIONS(874), + [anon_sym_SLASH_EQ] = ACTIONS(874), + [anon_sym_PERCENT_EQ] = ACTIONS(874), + [anon_sym_AMP_EQ] = ACTIONS(874), + [anon_sym_PIPE_EQ] = ACTIONS(874), + [anon_sym_CARET_EQ] = ACTIONS(874), + [anon_sym_LT_LT_EQ] = ACTIONS(874), + [anon_sym_GT_GT_EQ] = ACTIONS(874), + [sym_integer_literal] = ACTIONS(874), + [aux_sym_string_literal_token1] = ACTIONS(874), + [sym_char_literal] = ACTIONS(874), + [anon_sym_true] = ACTIONS(876), + [anon_sym_false] = ACTIONS(876), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(876), + [sym_super] = ACTIONS(876), + [sym_crate] = ACTIONS(876), + [sym_metavariable] = ACTIONS(874), + [sym_raw_string_literal] = ACTIONS(874), + [sym_float_literal] = ACTIONS(874), + }, + [454] = { + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), [sym_identifier] = ACTIONS(884), [anon_sym_LPAREN] = ACTIONS(882), [anon_sym_LBRACK] = ACTIONS(882), @@ -69787,10 +68330,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(884), [anon_sym_const] = ACTIONS(884), [anon_sym_default] = ACTIONS(884), - [anon_sym_static] = ACTIONS(884), [anon_sym_union] = ACTIONS(884), [anon_sym_ref] = ACTIONS(884), - [anon_sym_else] = ACTIONS(884), [anon_sym_DOT_DOT_DOT] = ACTIONS(882), [sym_mutable_specifier] = ACTIONS(884), [anon_sym_DOT_DOT] = ACTIONS(884), @@ -69813,7 +68354,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(882), [anon_sym_LT_LT_EQ] = ACTIONS(882), [anon_sym_GT_GT_EQ] = ACTIONS(882), - [anon_sym_move] = ACTIONS(884), [sym_integer_literal] = ACTIONS(882), [aux_sym_string_literal_token1] = ACTIONS(882), [sym_char_literal] = ACTIONS(882), @@ -69828,599 +68368,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(882), [sym_float_literal] = ACTIONS(882), }, - [463] = { - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_PLUS] = ACTIONS(892), - [anon_sym_STAR] = ACTIONS(892), - [anon_sym_QMARK] = ACTIONS(890), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_SLASH] = ACTIONS(892), - [anon_sym__] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(892), - [anon_sym_EQ] = ACTIONS(892), - [anon_sym_COMMA] = ACTIONS(890), - [anon_sym_COLON_COLON] = ACTIONS(890), - [anon_sym_DOT] = ACTIONS(892), - [anon_sym_AMP] = ACTIONS(892), - [anon_sym_POUND] = ACTIONS(890), - [anon_sym_PERCENT] = ACTIONS(892), - [anon_sym_CARET] = ACTIONS(892), - [anon_sym_LT] = ACTIONS(892), - [anon_sym_GT] = ACTIONS(892), - [anon_sym_PIPE] = ACTIONS(892), - [anon_sym_as] = ACTIONS(892), - [anon_sym_const] = ACTIONS(892), - [anon_sym_default] = ACTIONS(892), - [anon_sym_static] = ACTIONS(892), - [anon_sym_union] = ACTIONS(892), - [anon_sym_ref] = ACTIONS(892), - [anon_sym_else] = ACTIONS(892), - [anon_sym_DOT_DOT_DOT] = ACTIONS(890), - [sym_mutable_specifier] = ACTIONS(892), - [anon_sym_DOT_DOT] = ACTIONS(892), - [anon_sym_DOT_DOT_EQ] = ACTIONS(890), - [anon_sym_AMP_AMP] = ACTIONS(890), - [anon_sym_PIPE_PIPE] = ACTIONS(890), - [anon_sym_EQ_EQ] = ACTIONS(890), - [anon_sym_BANG_EQ] = ACTIONS(890), - [anon_sym_LT_EQ] = ACTIONS(890), - [anon_sym_GT_EQ] = ACTIONS(890), - [anon_sym_LT_LT] = ACTIONS(892), - [anon_sym_GT_GT] = ACTIONS(892), - [anon_sym_PLUS_EQ] = ACTIONS(890), - [anon_sym_DASH_EQ] = ACTIONS(890), - [anon_sym_STAR_EQ] = ACTIONS(890), - [anon_sym_SLASH_EQ] = ACTIONS(890), - [anon_sym_PERCENT_EQ] = ACTIONS(890), - [anon_sym_AMP_EQ] = ACTIONS(890), - [anon_sym_PIPE_EQ] = ACTIONS(890), - [anon_sym_CARET_EQ] = ACTIONS(890), - [anon_sym_LT_LT_EQ] = ACTIONS(890), - [anon_sym_GT_GT_EQ] = ACTIONS(890), - [anon_sym_move] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(890), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(892), - [anon_sym_false] = ACTIONS(892), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), - }, - [464] = { - [sym_line_comment] = STATE(464), - [sym_block_comment] = STATE(464), - [sym_identifier] = ACTIONS(888), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_PLUS] = ACTIONS(888), - [anon_sym_STAR] = ACTIONS(888), - [anon_sym_QMARK] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_SLASH] = ACTIONS(888), - [anon_sym__] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(888), - [anon_sym_EQ] = ACTIONS(888), - [anon_sym_COMMA] = ACTIONS(886), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_DOT] = ACTIONS(888), - [anon_sym_AMP] = ACTIONS(888), - [anon_sym_POUND] = ACTIONS(886), - [anon_sym_PERCENT] = ACTIONS(888), - [anon_sym_CARET] = ACTIONS(888), - [anon_sym_LT] = ACTIONS(888), - [anon_sym_GT] = ACTIONS(888), - [anon_sym_PIPE] = ACTIONS(888), - [anon_sym_as] = ACTIONS(888), - [anon_sym_const] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_static] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_ref] = ACTIONS(888), - [anon_sym_else] = ACTIONS(888), - [anon_sym_DOT_DOT_DOT] = ACTIONS(886), - [sym_mutable_specifier] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(888), - [anon_sym_DOT_DOT_EQ] = ACTIONS(886), - [anon_sym_AMP_AMP] = ACTIONS(886), - [anon_sym_PIPE_PIPE] = ACTIONS(886), - [anon_sym_EQ_EQ] = ACTIONS(886), - [anon_sym_BANG_EQ] = ACTIONS(886), - [anon_sym_LT_EQ] = ACTIONS(886), - [anon_sym_GT_EQ] = ACTIONS(886), - [anon_sym_LT_LT] = ACTIONS(888), - [anon_sym_GT_GT] = ACTIONS(888), - [anon_sym_PLUS_EQ] = ACTIONS(886), - [anon_sym_DASH_EQ] = ACTIONS(886), - [anon_sym_STAR_EQ] = ACTIONS(886), - [anon_sym_SLASH_EQ] = ACTIONS(886), - [anon_sym_PERCENT_EQ] = ACTIONS(886), - [anon_sym_AMP_EQ] = ACTIONS(886), - [anon_sym_PIPE_EQ] = ACTIONS(886), - [anon_sym_CARET_EQ] = ACTIONS(886), - [anon_sym_LT_LT_EQ] = ACTIONS(886), - [anon_sym_GT_GT_EQ] = ACTIONS(886), - [anon_sym_move] = ACTIONS(888), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(886), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(888), - [anon_sym_false] = ACTIONS(888), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(886), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), - }, - [465] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_match_arm] = STATE(1065), - [sym_last_match_arm] = STATE(3289), - [sym_match_pattern] = STATE(3288), - [sym_const_block] = STATE(2719), - [sym_closure_expression] = STATE(3210), - [sym_closure_parameters] = STATE(143), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), - [aux_sym_enum_variant_list_repeat1] = STATE(769), - [aux_sym_match_block_repeat1] = STATE(497), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1550), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), + [455] = { + [sym_line_comment] = STATE(455), + [sym_block_comment] = STATE(455), + [sym_identifier] = ACTIONS(910), + [anon_sym_LPAREN] = ACTIONS(908), + [anon_sym_LBRACK] = ACTIONS(908), + [anon_sym_RBRACE] = ACTIONS(908), + [anon_sym_PLUS] = ACTIONS(910), + [anon_sym_STAR] = ACTIONS(910), + [anon_sym_QMARK] = ACTIONS(908), + [anon_sym_u8] = ACTIONS(910), + [anon_sym_i8] = ACTIONS(910), + [anon_sym_u16] = ACTIONS(910), + [anon_sym_i16] = ACTIONS(910), + [anon_sym_u32] = ACTIONS(910), + [anon_sym_i32] = ACTIONS(910), + [anon_sym_u64] = ACTIONS(910), + [anon_sym_i64] = ACTIONS(910), + [anon_sym_u128] = ACTIONS(910), + [anon_sym_i128] = ACTIONS(910), + [anon_sym_isize] = ACTIONS(910), + [anon_sym_usize] = ACTIONS(910), + [anon_sym_f32] = ACTIONS(910), + [anon_sym_f64] = ACTIONS(910), + [anon_sym_bool] = ACTIONS(910), + [anon_sym_str] = ACTIONS(910), + [anon_sym_char] = ACTIONS(910), + [anon_sym_SLASH] = ACTIONS(910), + [anon_sym__] = ACTIONS(910), + [anon_sym_DASH] = ACTIONS(910), + [anon_sym_EQ] = ACTIONS(910), + [anon_sym_COMMA] = ACTIONS(908), + [anon_sym_COLON_COLON] = ACTIONS(908), + [anon_sym_DOT] = ACTIONS(910), + [anon_sym_AMP] = ACTIONS(910), + [anon_sym_POUND] = ACTIONS(908), + [anon_sym_PERCENT] = ACTIONS(910), + [anon_sym_CARET] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(910), + [anon_sym_GT] = ACTIONS(910), + [anon_sym_PIPE] = ACTIONS(910), + [anon_sym_as] = ACTIONS(910), + [anon_sym_const] = ACTIONS(910), + [anon_sym_default] = ACTIONS(910), + [anon_sym_union] = ACTIONS(910), + [anon_sym_ref] = ACTIONS(910), + [anon_sym_DOT_DOT_DOT] = ACTIONS(908), + [sym_mutable_specifier] = ACTIONS(910), + [anon_sym_DOT_DOT] = ACTIONS(910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(908), + [anon_sym_AMP_AMP] = ACTIONS(908), + [anon_sym_PIPE_PIPE] = ACTIONS(908), + [anon_sym_EQ_EQ] = ACTIONS(908), + [anon_sym_BANG_EQ] = ACTIONS(908), + [anon_sym_LT_EQ] = ACTIONS(908), + [anon_sym_GT_EQ] = ACTIONS(908), + [anon_sym_LT_LT] = ACTIONS(910), + [anon_sym_GT_GT] = ACTIONS(910), + [anon_sym_PLUS_EQ] = ACTIONS(908), + [anon_sym_DASH_EQ] = ACTIONS(908), + [anon_sym_STAR_EQ] = ACTIONS(908), + [anon_sym_SLASH_EQ] = ACTIONS(908), + [anon_sym_PERCENT_EQ] = ACTIONS(908), + [anon_sym_AMP_EQ] = ACTIONS(908), + [anon_sym_PIPE_EQ] = ACTIONS(908), + [anon_sym_CARET_EQ] = ACTIONS(908), + [anon_sym_LT_LT_EQ] = ACTIONS(908), + [anon_sym_GT_GT_EQ] = ACTIONS(908), + [sym_integer_literal] = ACTIONS(908), + [aux_sym_string_literal_token1] = ACTIONS(908), + [sym_char_literal] = ACTIONS(908), + [anon_sym_true] = ACTIONS(910), + [anon_sym_false] = ACTIONS(910), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [sym_self] = ACTIONS(910), + [sym_super] = ACTIONS(910), + [sym_crate] = ACTIONS(910), + [sym_metavariable] = ACTIONS(908), + [sym_raw_string_literal] = ACTIONS(908), + [sym_float_literal] = ACTIONS(908), }, - [466] = { - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [sym_identifier] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1588), - [anon_sym_LBRACK] = ACTIONS(1588), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_u8] = ACTIONS(1586), - [anon_sym_i8] = ACTIONS(1586), - [anon_sym_u16] = ACTIONS(1586), - [anon_sym_i16] = ACTIONS(1586), - [anon_sym_u32] = ACTIONS(1586), - [anon_sym_i32] = ACTIONS(1586), - [anon_sym_u64] = ACTIONS(1586), - [anon_sym_i64] = ACTIONS(1586), - [anon_sym_u128] = ACTIONS(1586), - [anon_sym_i128] = ACTIONS(1586), - [anon_sym_isize] = ACTIONS(1586), - [anon_sym_usize] = ACTIONS(1586), - [anon_sym_f32] = ACTIONS(1586), - [anon_sym_f64] = ACTIONS(1586), - [anon_sym_bool] = ACTIONS(1586), - [anon_sym_str] = ACTIONS(1586), - [anon_sym_char] = ACTIONS(1586), - [anon_sym_SLASH] = ACTIONS(992), - [anon_sym__] = ACTIONS(1586), - [anon_sym_DASH] = ACTIONS(1586), - [anon_sym_EQ] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(1588), - [anon_sym_DOT] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(1586), - [anon_sym_POUND] = ACTIONS(1588), - [anon_sym_PERCENT] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LT] = ACTIONS(1586), - [anon_sym_GT] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(1586), - [anon_sym_as] = ACTIONS(992), - [anon_sym_const] = ACTIONS(1586), - [anon_sym_default] = ACTIONS(1586), - [anon_sym_static] = ACTIONS(1586), - [anon_sym_union] = ACTIONS(1586), - [anon_sym_ref] = ACTIONS(1586), - [anon_sym_DOT_DOT_DOT] = ACTIONS(990), - [sym_mutable_specifier] = ACTIONS(1586), - [anon_sym_DOT_DOT] = ACTIONS(1586), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_move] = ACTIONS(1586), - [sym_integer_literal] = ACTIONS(1588), - [aux_sym_string_literal_token1] = ACTIONS(1588), - [sym_char_literal] = ACTIONS(1588), - [anon_sym_true] = ACTIONS(1586), - [anon_sym_false] = ACTIONS(1586), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1586), - [sym_super] = ACTIONS(1586), - [sym_crate] = ACTIONS(1586), - [sym_metavariable] = ACTIONS(1588), - [sym_raw_string_literal] = ACTIONS(1588), - [sym_float_literal] = ACTIONS(1588), + [456] = { + [sym_line_comment] = STATE(456), + [sym_block_comment] = STATE(456), + [sym_identifier] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_RBRACE] = ACTIONS(912), + [anon_sym_PLUS] = ACTIONS(914), + [anon_sym_STAR] = ACTIONS(914), + [anon_sym_QMARK] = ACTIONS(912), + [anon_sym_u8] = ACTIONS(914), + [anon_sym_i8] = ACTIONS(914), + [anon_sym_u16] = ACTIONS(914), + [anon_sym_i16] = ACTIONS(914), + [anon_sym_u32] = ACTIONS(914), + [anon_sym_i32] = ACTIONS(914), + [anon_sym_u64] = ACTIONS(914), + [anon_sym_i64] = ACTIONS(914), + [anon_sym_u128] = ACTIONS(914), + [anon_sym_i128] = ACTIONS(914), + [anon_sym_isize] = ACTIONS(914), + [anon_sym_usize] = ACTIONS(914), + [anon_sym_f32] = ACTIONS(914), + [anon_sym_f64] = ACTIONS(914), + [anon_sym_bool] = ACTIONS(914), + [anon_sym_str] = ACTIONS(914), + [anon_sym_char] = ACTIONS(914), + [anon_sym_SLASH] = ACTIONS(914), + [anon_sym__] = ACTIONS(914), + [anon_sym_DASH] = ACTIONS(914), + [anon_sym_EQ] = ACTIONS(914), + [anon_sym_COMMA] = ACTIONS(912), + [anon_sym_COLON_COLON] = ACTIONS(912), + [anon_sym_DOT] = ACTIONS(914), + [anon_sym_AMP] = ACTIONS(914), + [anon_sym_POUND] = ACTIONS(912), + [anon_sym_PERCENT] = ACTIONS(914), + [anon_sym_CARET] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(914), + [anon_sym_GT] = ACTIONS(914), + [anon_sym_PIPE] = ACTIONS(914), + [anon_sym_as] = ACTIONS(914), + [anon_sym_const] = ACTIONS(914), + [anon_sym_default] = ACTIONS(914), + [anon_sym_union] = ACTIONS(914), + [anon_sym_ref] = ACTIONS(914), + [anon_sym_DOT_DOT_DOT] = ACTIONS(912), + [sym_mutable_specifier] = ACTIONS(914), + [anon_sym_DOT_DOT] = ACTIONS(914), + [anon_sym_DOT_DOT_EQ] = ACTIONS(912), + [anon_sym_AMP_AMP] = ACTIONS(912), + [anon_sym_PIPE_PIPE] = ACTIONS(912), + [anon_sym_EQ_EQ] = ACTIONS(912), + [anon_sym_BANG_EQ] = ACTIONS(912), + [anon_sym_LT_EQ] = ACTIONS(912), + [anon_sym_GT_EQ] = ACTIONS(912), + [anon_sym_LT_LT] = ACTIONS(914), + [anon_sym_GT_GT] = ACTIONS(914), + [anon_sym_PLUS_EQ] = ACTIONS(912), + [anon_sym_DASH_EQ] = ACTIONS(912), + [anon_sym_STAR_EQ] = ACTIONS(912), + [anon_sym_SLASH_EQ] = ACTIONS(912), + [anon_sym_PERCENT_EQ] = ACTIONS(912), + [anon_sym_AMP_EQ] = ACTIONS(912), + [anon_sym_PIPE_EQ] = ACTIONS(912), + [anon_sym_CARET_EQ] = ACTIONS(912), + [anon_sym_LT_LT_EQ] = ACTIONS(912), + [anon_sym_GT_GT_EQ] = ACTIONS(912), + [sym_integer_literal] = ACTIONS(912), + [aux_sym_string_literal_token1] = ACTIONS(912), + [sym_char_literal] = ACTIONS(912), + [anon_sym_true] = ACTIONS(914), + [anon_sym_false] = ACTIONS(914), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(914), + [sym_super] = ACTIONS(914), + [sym_crate] = ACTIONS(914), + [sym_metavariable] = ACTIONS(912), + [sym_raw_string_literal] = ACTIONS(912), + [sym_float_literal] = ACTIONS(912), }, - [467] = { - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [sym_identifier] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_STAR] = ACTIONS(968), - [anon_sym_QMARK] = ACTIONS(966), - [anon_sym_u8] = ACTIONS(968), - [anon_sym_i8] = ACTIONS(968), - [anon_sym_u16] = ACTIONS(968), - [anon_sym_i16] = ACTIONS(968), - [anon_sym_u32] = ACTIONS(968), - [anon_sym_i32] = ACTIONS(968), - [anon_sym_u64] = ACTIONS(968), - [anon_sym_i64] = ACTIONS(968), - [anon_sym_u128] = ACTIONS(968), - [anon_sym_i128] = ACTIONS(968), - [anon_sym_isize] = ACTIONS(968), - [anon_sym_usize] = ACTIONS(968), - [anon_sym_f32] = ACTIONS(968), - [anon_sym_f64] = ACTIONS(968), - [anon_sym_bool] = ACTIONS(968), - [anon_sym_str] = ACTIONS(968), - [anon_sym_char] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(968), - [anon_sym__] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_COLON_COLON] = ACTIONS(966), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_AMP] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(966), - [anon_sym_PERCENT] = ACTIONS(968), - [anon_sym_CARET] = ACTIONS(968), - [anon_sym_LT] = ACTIONS(968), - [anon_sym_GT] = ACTIONS(968), - [anon_sym_PIPE] = ACTIONS(968), - [anon_sym_as] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [anon_sym_default] = ACTIONS(968), - [anon_sym_static] = ACTIONS(968), - [anon_sym_union] = ACTIONS(968), - [anon_sym_ref] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT] = ACTIONS(966), - [sym_mutable_specifier] = ACTIONS(968), - [anon_sym_DOT_DOT] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(966), - [anon_sym_AMP_AMP] = ACTIONS(966), - [anon_sym_PIPE_PIPE] = ACTIONS(966), - [anon_sym_EQ_EQ] = ACTIONS(966), - [anon_sym_BANG_EQ] = ACTIONS(966), - [anon_sym_LT_EQ] = ACTIONS(966), - [anon_sym_GT_EQ] = ACTIONS(966), - [anon_sym_LT_LT] = ACTIONS(968), - [anon_sym_GT_GT] = ACTIONS(968), - [anon_sym_PLUS_EQ] = ACTIONS(966), - [anon_sym_DASH_EQ] = ACTIONS(966), - [anon_sym_STAR_EQ] = ACTIONS(966), - [anon_sym_SLASH_EQ] = ACTIONS(966), - [anon_sym_PERCENT_EQ] = ACTIONS(966), - [anon_sym_AMP_EQ] = ACTIONS(966), - [anon_sym_PIPE_EQ] = ACTIONS(966), - [anon_sym_CARET_EQ] = ACTIONS(966), - [anon_sym_LT_LT_EQ] = ACTIONS(966), - [anon_sym_GT_GT_EQ] = ACTIONS(966), - [anon_sym_move] = ACTIONS(968), - [sym_integer_literal] = ACTIONS(966), - [aux_sym_string_literal_token1] = ACTIONS(966), - [sym_char_literal] = ACTIONS(966), - [anon_sym_true] = ACTIONS(968), - [anon_sym_false] = ACTIONS(968), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(968), - [sym_super] = ACTIONS(968), - [sym_crate] = ACTIONS(968), - [sym_metavariable] = ACTIONS(966), - [sym_raw_string_literal] = ACTIONS(966), - [sym_float_literal] = ACTIONS(966), + [457] = { + [sym_line_comment] = STATE(457), + [sym_block_comment] = STATE(457), + [sym_identifier] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_PLUS] = ACTIONS(970), + [anon_sym_STAR] = ACTIONS(970), + [anon_sym_QMARK] = ACTIONS(968), + [anon_sym_u8] = ACTIONS(970), + [anon_sym_i8] = ACTIONS(970), + [anon_sym_u16] = ACTIONS(970), + [anon_sym_i16] = ACTIONS(970), + [anon_sym_u32] = ACTIONS(970), + [anon_sym_i32] = ACTIONS(970), + [anon_sym_u64] = ACTIONS(970), + [anon_sym_i64] = ACTIONS(970), + [anon_sym_u128] = ACTIONS(970), + [anon_sym_i128] = ACTIONS(970), + [anon_sym_isize] = ACTIONS(970), + [anon_sym_usize] = ACTIONS(970), + [anon_sym_f32] = ACTIONS(970), + [anon_sym_f64] = ACTIONS(970), + [anon_sym_bool] = ACTIONS(970), + [anon_sym_str] = ACTIONS(970), + [anon_sym_char] = ACTIONS(970), + [anon_sym_SLASH] = ACTIONS(970), + [anon_sym__] = ACTIONS(970), + [anon_sym_DASH] = ACTIONS(970), + [anon_sym_EQ] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_COLON_COLON] = ACTIONS(968), + [anon_sym_DOT] = ACTIONS(970), + [anon_sym_AMP] = ACTIONS(970), + [anon_sym_POUND] = ACTIONS(968), + [anon_sym_PERCENT] = ACTIONS(970), + [anon_sym_CARET] = ACTIONS(970), + [anon_sym_LT] = ACTIONS(970), + [anon_sym_GT] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_as] = ACTIONS(970), + [anon_sym_const] = ACTIONS(970), + [anon_sym_default] = ACTIONS(970), + [anon_sym_union] = ACTIONS(970), + [anon_sym_ref] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT] = ACTIONS(968), + [sym_mutable_specifier] = ACTIONS(970), + [anon_sym_DOT_DOT] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [anon_sym_AMP_AMP] = ACTIONS(968), + [anon_sym_PIPE_PIPE] = ACTIONS(968), + [anon_sym_EQ_EQ] = ACTIONS(968), + [anon_sym_BANG_EQ] = ACTIONS(968), + [anon_sym_LT_EQ] = ACTIONS(968), + [anon_sym_GT_EQ] = ACTIONS(968), + [anon_sym_LT_LT] = ACTIONS(970), + [anon_sym_GT_GT] = ACTIONS(970), + [anon_sym_PLUS_EQ] = ACTIONS(968), + [anon_sym_DASH_EQ] = ACTIONS(968), + [anon_sym_STAR_EQ] = ACTIONS(968), + [anon_sym_SLASH_EQ] = ACTIONS(968), + [anon_sym_PERCENT_EQ] = ACTIONS(968), + [anon_sym_AMP_EQ] = ACTIONS(968), + [anon_sym_PIPE_EQ] = ACTIONS(968), + [anon_sym_CARET_EQ] = ACTIONS(968), + [anon_sym_LT_LT_EQ] = ACTIONS(968), + [anon_sym_GT_GT_EQ] = ACTIONS(968), + [sym_integer_literal] = ACTIONS(968), + [aux_sym_string_literal_token1] = ACTIONS(968), + [sym_char_literal] = ACTIONS(968), + [anon_sym_true] = ACTIONS(970), + [anon_sym_false] = ACTIONS(970), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(970), + [sym_super] = ACTIONS(970), + [sym_crate] = ACTIONS(970), + [sym_metavariable] = ACTIONS(968), + [sym_raw_string_literal] = ACTIONS(968), + [sym_float_literal] = ACTIONS(968), }, - [468] = { - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [sym_identifier] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(1002), - [anon_sym_RBRACE] = ACTIONS(1002), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(1002), - [anon_sym_u8] = ACTIONS(1004), - [anon_sym_i8] = ACTIONS(1004), - [anon_sym_u16] = ACTIONS(1004), - [anon_sym_i16] = ACTIONS(1004), - [anon_sym_u32] = ACTIONS(1004), - [anon_sym_i32] = ACTIONS(1004), - [anon_sym_u64] = ACTIONS(1004), - [anon_sym_i64] = ACTIONS(1004), - [anon_sym_u128] = ACTIONS(1004), - [anon_sym_i128] = ACTIONS(1004), - [anon_sym_isize] = ACTIONS(1004), - [anon_sym_usize] = ACTIONS(1004), - [anon_sym_f32] = ACTIONS(1004), - [anon_sym_f64] = ACTIONS(1004), - [anon_sym_bool] = ACTIONS(1004), - [anon_sym_str] = ACTIONS(1004), - [anon_sym_char] = ACTIONS(1004), - [anon_sym_SLASH] = ACTIONS(1004), - [anon_sym__] = ACTIONS(1004), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_COMMA] = ACTIONS(1002), - [anon_sym_COLON_COLON] = ACTIONS(1002), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(1002), - [anon_sym_PERCENT] = ACTIONS(1004), - [anon_sym_CARET] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [anon_sym_default] = ACTIONS(1004), - [anon_sym_static] = ACTIONS(1004), - [anon_sym_union] = ACTIONS(1004), - [anon_sym_ref] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1002), - [sym_mutable_specifier] = ACTIONS(1004), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1002), - [anon_sym_AMP_AMP] = ACTIONS(1002), - [anon_sym_PIPE_PIPE] = ACTIONS(1002), - [anon_sym_EQ_EQ] = ACTIONS(1002), - [anon_sym_BANG_EQ] = ACTIONS(1002), - [anon_sym_LT_EQ] = ACTIONS(1002), - [anon_sym_GT_EQ] = ACTIONS(1002), - [anon_sym_LT_LT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1002), - [anon_sym_DASH_EQ] = ACTIONS(1002), - [anon_sym_STAR_EQ] = ACTIONS(1002), - [anon_sym_SLASH_EQ] = ACTIONS(1002), - [anon_sym_PERCENT_EQ] = ACTIONS(1002), - [anon_sym_AMP_EQ] = ACTIONS(1002), - [anon_sym_PIPE_EQ] = ACTIONS(1002), - [anon_sym_CARET_EQ] = ACTIONS(1002), - [anon_sym_LT_LT_EQ] = ACTIONS(1002), - [anon_sym_GT_GT_EQ] = ACTIONS(1002), - [anon_sym_move] = ACTIONS(1004), - [sym_integer_literal] = ACTIONS(1002), - [aux_sym_string_literal_token1] = ACTIONS(1002), - [sym_char_literal] = ACTIONS(1002), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1004), - [sym_super] = ACTIONS(1004), - [sym_crate] = ACTIONS(1004), - [sym_metavariable] = ACTIONS(1002), - [sym_raw_string_literal] = ACTIONS(1002), - [sym_float_literal] = ACTIONS(1002), + [458] = { + [sym_line_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [sym_identifier] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_PLUS] = ACTIONS(962), + [anon_sym_STAR] = ACTIONS(962), + [anon_sym_QMARK] = ACTIONS(960), + [anon_sym_u8] = ACTIONS(962), + [anon_sym_i8] = ACTIONS(962), + [anon_sym_u16] = ACTIONS(962), + [anon_sym_i16] = ACTIONS(962), + [anon_sym_u32] = ACTIONS(962), + [anon_sym_i32] = ACTIONS(962), + [anon_sym_u64] = ACTIONS(962), + [anon_sym_i64] = ACTIONS(962), + [anon_sym_u128] = ACTIONS(962), + [anon_sym_i128] = ACTIONS(962), + [anon_sym_isize] = ACTIONS(962), + [anon_sym_usize] = ACTIONS(962), + [anon_sym_f32] = ACTIONS(962), + [anon_sym_f64] = ACTIONS(962), + [anon_sym_bool] = ACTIONS(962), + [anon_sym_str] = ACTIONS(962), + [anon_sym_char] = ACTIONS(962), + [anon_sym_SLASH] = ACTIONS(962), + [anon_sym__] = ACTIONS(962), + [anon_sym_DASH] = ACTIONS(962), + [anon_sym_EQ] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(960), + [anon_sym_COLON_COLON] = ACTIONS(960), + [anon_sym_DOT] = ACTIONS(962), + [anon_sym_AMP] = ACTIONS(962), + [anon_sym_POUND] = ACTIONS(960), + [anon_sym_PERCENT] = ACTIONS(962), + [anon_sym_CARET] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(962), + [anon_sym_PIPE] = ACTIONS(962), + [anon_sym_as] = ACTIONS(962), + [anon_sym_const] = ACTIONS(962), + [anon_sym_default] = ACTIONS(962), + [anon_sym_union] = ACTIONS(962), + [anon_sym_ref] = ACTIONS(962), + [anon_sym_DOT_DOT_DOT] = ACTIONS(960), + [sym_mutable_specifier] = ACTIONS(962), + [anon_sym_DOT_DOT] = ACTIONS(962), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [anon_sym_AMP_AMP] = ACTIONS(960), + [anon_sym_PIPE_PIPE] = ACTIONS(960), + [anon_sym_EQ_EQ] = ACTIONS(960), + [anon_sym_BANG_EQ] = ACTIONS(960), + [anon_sym_LT_EQ] = ACTIONS(960), + [anon_sym_GT_EQ] = ACTIONS(960), + [anon_sym_LT_LT] = ACTIONS(962), + [anon_sym_GT_GT] = ACTIONS(962), + [anon_sym_PLUS_EQ] = ACTIONS(960), + [anon_sym_DASH_EQ] = ACTIONS(960), + [anon_sym_STAR_EQ] = ACTIONS(960), + [anon_sym_SLASH_EQ] = ACTIONS(960), + [anon_sym_PERCENT_EQ] = ACTIONS(960), + [anon_sym_AMP_EQ] = ACTIONS(960), + [anon_sym_PIPE_EQ] = ACTIONS(960), + [anon_sym_CARET_EQ] = ACTIONS(960), + [anon_sym_LT_LT_EQ] = ACTIONS(960), + [anon_sym_GT_GT_EQ] = ACTIONS(960), + [sym_integer_literal] = ACTIONS(960), + [aux_sym_string_literal_token1] = ACTIONS(960), + [sym_char_literal] = ACTIONS(960), + [anon_sym_true] = ACTIONS(962), + [anon_sym_false] = ACTIONS(962), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(962), + [sym_super] = ACTIONS(962), + [sym_crate] = ACTIONS(962), + [sym_metavariable] = ACTIONS(960), + [sym_raw_string_literal] = ACTIONS(960), + [sym_float_literal] = ACTIONS(960), }, - [469] = { - [sym_line_comment] = STATE(469), - [sym_block_comment] = STATE(469), - [sym_identifier] = ACTIONS(1008), - [anon_sym_LPAREN] = ACTIONS(1006), - [anon_sym_LBRACK] = ACTIONS(1006), - [anon_sym_RBRACE] = ACTIONS(1006), - [anon_sym_PLUS] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1008), - [anon_sym_QMARK] = ACTIONS(1006), - [anon_sym_u8] = ACTIONS(1008), - [anon_sym_i8] = ACTIONS(1008), - [anon_sym_u16] = ACTIONS(1008), - [anon_sym_i16] = ACTIONS(1008), - [anon_sym_u32] = ACTIONS(1008), - [anon_sym_i32] = ACTIONS(1008), - [anon_sym_u64] = ACTIONS(1008), - [anon_sym_i64] = ACTIONS(1008), - [anon_sym_u128] = ACTIONS(1008), - [anon_sym_i128] = ACTIONS(1008), - [anon_sym_isize] = ACTIONS(1008), - [anon_sym_usize] = ACTIONS(1008), - [anon_sym_f32] = ACTIONS(1008), - [anon_sym_f64] = ACTIONS(1008), - [anon_sym_bool] = ACTIONS(1008), - [anon_sym_str] = ACTIONS(1008), - [anon_sym_char] = ACTIONS(1008), - [anon_sym_SLASH] = ACTIONS(1008), - [anon_sym__] = ACTIONS(1008), - [anon_sym_DASH] = ACTIONS(1008), - [anon_sym_EQ] = ACTIONS(1008), - [anon_sym_COMMA] = ACTIONS(1006), - [anon_sym_COLON_COLON] = ACTIONS(1006), - [anon_sym_DOT] = ACTIONS(1008), - [anon_sym_AMP] = ACTIONS(1008), - [anon_sym_POUND] = ACTIONS(1006), - [anon_sym_PERCENT] = ACTIONS(1008), - [anon_sym_CARET] = ACTIONS(1008), - [anon_sym_LT] = ACTIONS(1008), - [anon_sym_GT] = ACTIONS(1008), - [anon_sym_PIPE] = ACTIONS(1008), - [anon_sym_as] = ACTIONS(1008), - [anon_sym_const] = ACTIONS(1008), - [anon_sym_default] = ACTIONS(1008), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_union] = ACTIONS(1008), - [anon_sym_ref] = ACTIONS(1008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1006), - [sym_mutable_specifier] = ACTIONS(1008), - [anon_sym_DOT_DOT] = ACTIONS(1008), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1006), - [anon_sym_AMP_AMP] = ACTIONS(1006), - [anon_sym_PIPE_PIPE] = ACTIONS(1006), - [anon_sym_EQ_EQ] = ACTIONS(1006), - [anon_sym_BANG_EQ] = ACTIONS(1006), - [anon_sym_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_EQ] = ACTIONS(1006), - [anon_sym_LT_LT] = ACTIONS(1008), - [anon_sym_GT_GT] = ACTIONS(1008), - [anon_sym_PLUS_EQ] = ACTIONS(1006), - [anon_sym_DASH_EQ] = ACTIONS(1006), - [anon_sym_STAR_EQ] = ACTIONS(1006), - [anon_sym_SLASH_EQ] = ACTIONS(1006), - [anon_sym_PERCENT_EQ] = ACTIONS(1006), - [anon_sym_AMP_EQ] = ACTIONS(1006), - [anon_sym_PIPE_EQ] = ACTIONS(1006), - [anon_sym_CARET_EQ] = ACTIONS(1006), - [anon_sym_LT_LT_EQ] = ACTIONS(1006), - [anon_sym_GT_GT_EQ] = ACTIONS(1006), - [anon_sym_move] = ACTIONS(1008), - [sym_integer_literal] = ACTIONS(1006), - [aux_sym_string_literal_token1] = ACTIONS(1006), - [sym_char_literal] = ACTIONS(1006), - [anon_sym_true] = ACTIONS(1008), - [anon_sym_false] = ACTIONS(1008), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1008), - [sym_super] = ACTIONS(1008), - [sym_crate] = ACTIONS(1008), - [sym_metavariable] = ACTIONS(1006), - [sym_raw_string_literal] = ACTIONS(1006), - [sym_float_literal] = ACTIONS(1006), + [459] = { + [sym_line_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [sym_identifier] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_LBRACK] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_PLUS] = ACTIONS(978), + [anon_sym_STAR] = ACTIONS(978), + [anon_sym_QMARK] = ACTIONS(976), + [anon_sym_u8] = ACTIONS(978), + [anon_sym_i8] = ACTIONS(978), + [anon_sym_u16] = ACTIONS(978), + [anon_sym_i16] = ACTIONS(978), + [anon_sym_u32] = ACTIONS(978), + [anon_sym_i32] = ACTIONS(978), + [anon_sym_u64] = ACTIONS(978), + [anon_sym_i64] = ACTIONS(978), + [anon_sym_u128] = ACTIONS(978), + [anon_sym_i128] = ACTIONS(978), + [anon_sym_isize] = ACTIONS(978), + [anon_sym_usize] = ACTIONS(978), + [anon_sym_f32] = ACTIONS(978), + [anon_sym_f64] = ACTIONS(978), + [anon_sym_bool] = ACTIONS(978), + [anon_sym_str] = ACTIONS(978), + [anon_sym_char] = ACTIONS(978), + [anon_sym_SLASH] = ACTIONS(978), + [anon_sym__] = ACTIONS(978), + [anon_sym_DASH] = ACTIONS(978), + [anon_sym_EQ] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(976), + [anon_sym_COLON_COLON] = ACTIONS(976), + [anon_sym_DOT] = ACTIONS(978), + [anon_sym_AMP] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(976), + [anon_sym_PERCENT] = ACTIONS(978), + [anon_sym_CARET] = ACTIONS(978), + [anon_sym_LT] = ACTIONS(978), + [anon_sym_GT] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_as] = ACTIONS(978), + [anon_sym_const] = ACTIONS(978), + [anon_sym_default] = ACTIONS(978), + [anon_sym_union] = ACTIONS(978), + [anon_sym_ref] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(976), + [sym_mutable_specifier] = ACTIONS(978), + [anon_sym_DOT_DOT] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(976), + [anon_sym_AMP_AMP] = ACTIONS(976), + [anon_sym_PIPE_PIPE] = ACTIONS(976), + [anon_sym_EQ_EQ] = ACTIONS(976), + [anon_sym_BANG_EQ] = ACTIONS(976), + [anon_sym_LT_EQ] = ACTIONS(976), + [anon_sym_GT_EQ] = ACTIONS(976), + [anon_sym_LT_LT] = ACTIONS(978), + [anon_sym_GT_GT] = ACTIONS(978), + [anon_sym_PLUS_EQ] = ACTIONS(976), + [anon_sym_DASH_EQ] = ACTIONS(976), + [anon_sym_STAR_EQ] = ACTIONS(976), + [anon_sym_SLASH_EQ] = ACTIONS(976), + [anon_sym_PERCENT_EQ] = ACTIONS(976), + [anon_sym_AMP_EQ] = ACTIONS(976), + [anon_sym_PIPE_EQ] = ACTIONS(976), + [anon_sym_CARET_EQ] = ACTIONS(976), + [anon_sym_LT_LT_EQ] = ACTIONS(976), + [anon_sym_GT_GT_EQ] = ACTIONS(976), + [sym_integer_literal] = ACTIONS(976), + [aux_sym_string_literal_token1] = ACTIONS(976), + [sym_char_literal] = ACTIONS(976), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(978), + [sym_super] = ACTIONS(978), + [sym_crate] = ACTIONS(978), + [sym_metavariable] = ACTIONS(976), + [sym_raw_string_literal] = ACTIONS(976), + [sym_float_literal] = ACTIONS(976), }, - [470] = { - [sym_line_comment] = STATE(470), - [sym_block_comment] = STATE(470), + [460] = { + [sym_line_comment] = STATE(460), + [sym_block_comment] = STATE(460), [sym_identifier] = ACTIONS(950), [anon_sym_LPAREN] = ACTIONS(948), [anon_sym_LBRACK] = ACTIONS(948), @@ -70462,7 +68822,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(950), [anon_sym_const] = ACTIONS(950), [anon_sym_default] = ACTIONS(950), - [anon_sym_static] = ACTIONS(950), [anon_sym_union] = ACTIONS(950), [anon_sym_ref] = ACTIONS(950), [anon_sym_DOT_DOT_DOT] = ACTIONS(948), @@ -70487,7 +68846,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(948), [anon_sym_LT_LT_EQ] = ACTIONS(948), [anon_sym_GT_GT_EQ] = ACTIONS(948), - [anon_sym_move] = ACTIONS(950), [sym_integer_literal] = ACTIONS(948), [aux_sym_string_literal_token1] = ACTIONS(948), [sym_char_literal] = ACTIONS(948), @@ -70502,93 +68860,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(948), [sym_float_literal] = ACTIONS(948), }, - [471] = { - [sym_line_comment] = STATE(471), - [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(962), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_PLUS] = ACTIONS(962), - [anon_sym_STAR] = ACTIONS(962), - [anon_sym_QMARK] = ACTIONS(960), - [anon_sym_u8] = ACTIONS(962), - [anon_sym_i8] = ACTIONS(962), - [anon_sym_u16] = ACTIONS(962), - [anon_sym_i16] = ACTIONS(962), - [anon_sym_u32] = ACTIONS(962), - [anon_sym_i32] = ACTIONS(962), - [anon_sym_u64] = ACTIONS(962), - [anon_sym_i64] = ACTIONS(962), - [anon_sym_u128] = ACTIONS(962), - [anon_sym_i128] = ACTIONS(962), - [anon_sym_isize] = ACTIONS(962), - [anon_sym_usize] = ACTIONS(962), - [anon_sym_f32] = ACTIONS(962), - [anon_sym_f64] = ACTIONS(962), - [anon_sym_bool] = ACTIONS(962), - [anon_sym_str] = ACTIONS(962), - [anon_sym_char] = ACTIONS(962), - [anon_sym_SLASH] = ACTIONS(962), - [anon_sym__] = ACTIONS(962), - [anon_sym_DASH] = ACTIONS(962), - [anon_sym_EQ] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(960), - [anon_sym_COLON_COLON] = ACTIONS(960), - [anon_sym_DOT] = ACTIONS(962), - [anon_sym_AMP] = ACTIONS(962), - [anon_sym_POUND] = ACTIONS(960), - [anon_sym_PERCENT] = ACTIONS(962), - [anon_sym_CARET] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(962), - [anon_sym_GT] = ACTIONS(962), - [anon_sym_PIPE] = ACTIONS(962), - [anon_sym_as] = ACTIONS(962), - [anon_sym_const] = ACTIONS(962), - [anon_sym_default] = ACTIONS(962), - [anon_sym_static] = ACTIONS(962), - [anon_sym_union] = ACTIONS(962), - [anon_sym_ref] = ACTIONS(962), - [anon_sym_DOT_DOT_DOT] = ACTIONS(960), - [sym_mutable_specifier] = ACTIONS(962), - [anon_sym_DOT_DOT] = ACTIONS(962), - [anon_sym_DOT_DOT_EQ] = ACTIONS(960), - [anon_sym_AMP_AMP] = ACTIONS(960), - [anon_sym_PIPE_PIPE] = ACTIONS(960), - [anon_sym_EQ_EQ] = ACTIONS(960), - [anon_sym_BANG_EQ] = ACTIONS(960), - [anon_sym_LT_EQ] = ACTIONS(960), - [anon_sym_GT_EQ] = ACTIONS(960), - [anon_sym_LT_LT] = ACTIONS(962), - [anon_sym_GT_GT] = ACTIONS(962), - [anon_sym_PLUS_EQ] = ACTIONS(960), - [anon_sym_DASH_EQ] = ACTIONS(960), - [anon_sym_STAR_EQ] = ACTIONS(960), - [anon_sym_SLASH_EQ] = ACTIONS(960), - [anon_sym_PERCENT_EQ] = ACTIONS(960), - [anon_sym_AMP_EQ] = ACTIONS(960), - [anon_sym_PIPE_EQ] = ACTIONS(960), - [anon_sym_CARET_EQ] = ACTIONS(960), - [anon_sym_LT_LT_EQ] = ACTIONS(960), - [anon_sym_GT_GT_EQ] = ACTIONS(960), - [anon_sym_move] = ACTIONS(962), - [sym_integer_literal] = ACTIONS(960), - [aux_sym_string_literal_token1] = ACTIONS(960), - [sym_char_literal] = ACTIONS(960), - [anon_sym_true] = ACTIONS(962), - [anon_sym_false] = ACTIONS(962), + [461] = { + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), + [sym_identifier] = ACTIONS(898), + [anon_sym_LPAREN] = ACTIONS(896), + [anon_sym_LBRACK] = ACTIONS(896), + [anon_sym_RBRACE] = ACTIONS(896), + [anon_sym_PLUS] = ACTIONS(898), + [anon_sym_STAR] = ACTIONS(898), + [anon_sym_QMARK] = ACTIONS(896), + [anon_sym_u8] = ACTIONS(898), + [anon_sym_i8] = ACTIONS(898), + [anon_sym_u16] = ACTIONS(898), + [anon_sym_i16] = ACTIONS(898), + [anon_sym_u32] = ACTIONS(898), + [anon_sym_i32] = ACTIONS(898), + [anon_sym_u64] = ACTIONS(898), + [anon_sym_i64] = ACTIONS(898), + [anon_sym_u128] = ACTIONS(898), + [anon_sym_i128] = ACTIONS(898), + [anon_sym_isize] = ACTIONS(898), + [anon_sym_usize] = ACTIONS(898), + [anon_sym_f32] = ACTIONS(898), + [anon_sym_f64] = ACTIONS(898), + [anon_sym_bool] = ACTIONS(898), + [anon_sym_str] = ACTIONS(898), + [anon_sym_char] = ACTIONS(898), + [anon_sym_SLASH] = ACTIONS(898), + [anon_sym__] = ACTIONS(898), + [anon_sym_DASH] = ACTIONS(898), + [anon_sym_EQ] = ACTIONS(898), + [anon_sym_COMMA] = ACTIONS(896), + [anon_sym_COLON_COLON] = ACTIONS(896), + [anon_sym_DOT] = ACTIONS(898), + [anon_sym_AMP] = ACTIONS(898), + [anon_sym_POUND] = ACTIONS(896), + [anon_sym_PERCENT] = ACTIONS(898), + [anon_sym_CARET] = ACTIONS(898), + [anon_sym_LT] = ACTIONS(898), + [anon_sym_GT] = ACTIONS(898), + [anon_sym_PIPE] = ACTIONS(898), + [anon_sym_as] = ACTIONS(898), + [anon_sym_const] = ACTIONS(898), + [anon_sym_default] = ACTIONS(898), + [anon_sym_union] = ACTIONS(898), + [anon_sym_ref] = ACTIONS(898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(896), + [sym_mutable_specifier] = ACTIONS(898), + [anon_sym_DOT_DOT] = ACTIONS(898), + [anon_sym_DOT_DOT_EQ] = ACTIONS(896), + [anon_sym_AMP_AMP] = ACTIONS(896), + [anon_sym_PIPE_PIPE] = ACTIONS(896), + [anon_sym_EQ_EQ] = ACTIONS(896), + [anon_sym_BANG_EQ] = ACTIONS(896), + [anon_sym_LT_EQ] = ACTIONS(896), + [anon_sym_GT_EQ] = ACTIONS(896), + [anon_sym_LT_LT] = ACTIONS(898), + [anon_sym_GT_GT] = ACTIONS(898), + [anon_sym_PLUS_EQ] = ACTIONS(896), + [anon_sym_DASH_EQ] = ACTIONS(896), + [anon_sym_STAR_EQ] = ACTIONS(896), + [anon_sym_SLASH_EQ] = ACTIONS(896), + [anon_sym_PERCENT_EQ] = ACTIONS(896), + [anon_sym_AMP_EQ] = ACTIONS(896), + [anon_sym_PIPE_EQ] = ACTIONS(896), + [anon_sym_CARET_EQ] = ACTIONS(896), + [anon_sym_LT_LT_EQ] = ACTIONS(896), + [anon_sym_GT_GT_EQ] = ACTIONS(896), + [sym_integer_literal] = ACTIONS(896), + [aux_sym_string_literal_token1] = ACTIONS(896), + [sym_char_literal] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(962), - [sym_super] = ACTIONS(962), - [sym_crate] = ACTIONS(962), - [sym_metavariable] = ACTIONS(960), - [sym_raw_string_literal] = ACTIONS(960), - [sym_float_literal] = ACTIONS(960), + [sym_self] = ACTIONS(898), + [sym_super] = ACTIONS(898), + [sym_crate] = ACTIONS(898), + [sym_metavariable] = ACTIONS(896), + [sym_raw_string_literal] = ACTIONS(896), + [sym_float_literal] = ACTIONS(896), }, - [472] = { - [sym_line_comment] = STATE(472), - [sym_block_comment] = STATE(472), + [462] = { + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [sym_identifier] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_PLUS] = ACTIONS(974), + [anon_sym_STAR] = ACTIONS(974), + [anon_sym_QMARK] = ACTIONS(972), + [anon_sym_u8] = ACTIONS(974), + [anon_sym_i8] = ACTIONS(974), + [anon_sym_u16] = ACTIONS(974), + [anon_sym_i16] = ACTIONS(974), + [anon_sym_u32] = ACTIONS(974), + [anon_sym_i32] = ACTIONS(974), + [anon_sym_u64] = ACTIONS(974), + [anon_sym_i64] = ACTIONS(974), + [anon_sym_u128] = ACTIONS(974), + [anon_sym_i128] = ACTIONS(974), + [anon_sym_isize] = ACTIONS(974), + [anon_sym_usize] = ACTIONS(974), + [anon_sym_f32] = ACTIONS(974), + [anon_sym_f64] = ACTIONS(974), + [anon_sym_bool] = ACTIONS(974), + [anon_sym_str] = ACTIONS(974), + [anon_sym_char] = ACTIONS(974), + [anon_sym_SLASH] = ACTIONS(974), + [anon_sym__] = ACTIONS(974), + [anon_sym_DASH] = ACTIONS(974), + [anon_sym_EQ] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(972), + [anon_sym_COLON_COLON] = ACTIONS(972), + [anon_sym_DOT] = ACTIONS(974), + [anon_sym_AMP] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(972), + [anon_sym_PERCENT] = ACTIONS(974), + [anon_sym_CARET] = ACTIONS(974), + [anon_sym_LT] = ACTIONS(974), + [anon_sym_GT] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_as] = ACTIONS(974), + [anon_sym_const] = ACTIONS(974), + [anon_sym_default] = ACTIONS(974), + [anon_sym_union] = ACTIONS(974), + [anon_sym_ref] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT] = ACTIONS(972), + [sym_mutable_specifier] = ACTIONS(974), + [anon_sym_DOT_DOT] = ACTIONS(974), + [anon_sym_DOT_DOT_EQ] = ACTIONS(972), + [anon_sym_AMP_AMP] = ACTIONS(972), + [anon_sym_PIPE_PIPE] = ACTIONS(972), + [anon_sym_EQ_EQ] = ACTIONS(972), + [anon_sym_BANG_EQ] = ACTIONS(972), + [anon_sym_LT_EQ] = ACTIONS(972), + [anon_sym_GT_EQ] = ACTIONS(972), + [anon_sym_LT_LT] = ACTIONS(974), + [anon_sym_GT_GT] = ACTIONS(974), + [anon_sym_PLUS_EQ] = ACTIONS(972), + [anon_sym_DASH_EQ] = ACTIONS(972), + [anon_sym_STAR_EQ] = ACTIONS(972), + [anon_sym_SLASH_EQ] = ACTIONS(972), + [anon_sym_PERCENT_EQ] = ACTIONS(972), + [anon_sym_AMP_EQ] = ACTIONS(972), + [anon_sym_PIPE_EQ] = ACTIONS(972), + [anon_sym_CARET_EQ] = ACTIONS(972), + [anon_sym_LT_LT_EQ] = ACTIONS(972), + [anon_sym_GT_GT_EQ] = ACTIONS(972), + [sym_integer_literal] = ACTIONS(972), + [aux_sym_string_literal_token1] = ACTIONS(972), + [sym_char_literal] = ACTIONS(972), + [anon_sym_true] = ACTIONS(974), + [anon_sym_false] = ACTIONS(974), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(974), + [sym_super] = ACTIONS(974), + [sym_crate] = ACTIONS(974), + [sym_metavariable] = ACTIONS(972), + [sym_raw_string_literal] = ACTIONS(972), + [sym_float_literal] = ACTIONS(972), + }, + [463] = { + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [sym_identifier] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(892), + [anon_sym_u8] = ACTIONS(894), + [anon_sym_i8] = ACTIONS(894), + [anon_sym_u16] = ACTIONS(894), + [anon_sym_i16] = ACTIONS(894), + [anon_sym_u32] = ACTIONS(894), + [anon_sym_i32] = ACTIONS(894), + [anon_sym_u64] = ACTIONS(894), + [anon_sym_i64] = ACTIONS(894), + [anon_sym_u128] = ACTIONS(894), + [anon_sym_i128] = ACTIONS(894), + [anon_sym_isize] = ACTIONS(894), + [anon_sym_usize] = ACTIONS(894), + [anon_sym_f32] = ACTIONS(894), + [anon_sym_f64] = ACTIONS(894), + [anon_sym_bool] = ACTIONS(894), + [anon_sym_str] = ACTIONS(894), + [anon_sym_char] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym__] = ACTIONS(894), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_EQ] = ACTIONS(894), + [anon_sym_COMMA] = ACTIONS(892), + [anon_sym_COLON_COLON] = ACTIONS(892), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_POUND] = ACTIONS(892), + [anon_sym_PERCENT] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_as] = ACTIONS(894), + [anon_sym_const] = ACTIONS(894), + [anon_sym_default] = ACTIONS(894), + [anon_sym_union] = ACTIONS(894), + [anon_sym_ref] = ACTIONS(894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(892), + [sym_mutable_specifier] = ACTIONS(894), + [anon_sym_DOT_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(892), + [anon_sym_AMP_AMP] = ACTIONS(892), + [anon_sym_PIPE_PIPE] = ACTIONS(892), + [anon_sym_EQ_EQ] = ACTIONS(892), + [anon_sym_BANG_EQ] = ACTIONS(892), + [anon_sym_LT_EQ] = ACTIONS(892), + [anon_sym_GT_EQ] = ACTIONS(892), + [anon_sym_LT_LT] = ACTIONS(894), + [anon_sym_GT_GT] = ACTIONS(894), + [anon_sym_PLUS_EQ] = ACTIONS(892), + [anon_sym_DASH_EQ] = ACTIONS(892), + [anon_sym_STAR_EQ] = ACTIONS(892), + [anon_sym_SLASH_EQ] = ACTIONS(892), + [anon_sym_PERCENT_EQ] = ACTIONS(892), + [anon_sym_AMP_EQ] = ACTIONS(892), + [anon_sym_PIPE_EQ] = ACTIONS(892), + [anon_sym_CARET_EQ] = ACTIONS(892), + [anon_sym_LT_LT_EQ] = ACTIONS(892), + [anon_sym_GT_GT_EQ] = ACTIONS(892), + [sym_integer_literal] = ACTIONS(892), + [aux_sym_string_literal_token1] = ACTIONS(892), + [sym_char_literal] = ACTIONS(892), + [anon_sym_true] = ACTIONS(894), + [anon_sym_false] = ACTIONS(894), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(894), + [sym_super] = ACTIONS(894), + [sym_crate] = ACTIONS(894), + [sym_metavariable] = ACTIONS(892), + [sym_raw_string_literal] = ACTIONS(892), + [sym_float_literal] = ACTIONS(892), + }, + [464] = { + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [sym_identifier] = ACTIONS(1572), + [anon_sym_LPAREN] = ACTIONS(1574), + [anon_sym_LBRACK] = ACTIONS(1574), + [anon_sym_RBRACE] = ACTIONS(904), + [anon_sym_PLUS] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(906), + [anon_sym_QMARK] = ACTIONS(904), + [anon_sym_u8] = ACTIONS(1572), + [anon_sym_i8] = ACTIONS(1572), + [anon_sym_u16] = ACTIONS(1572), + [anon_sym_i16] = ACTIONS(1572), + [anon_sym_u32] = ACTIONS(1572), + [anon_sym_i32] = ACTIONS(1572), + [anon_sym_u64] = ACTIONS(1572), + [anon_sym_i64] = ACTIONS(1572), + [anon_sym_u128] = ACTIONS(1572), + [anon_sym_i128] = ACTIONS(1572), + [anon_sym_isize] = ACTIONS(1572), + [anon_sym_usize] = ACTIONS(1572), + [anon_sym_f32] = ACTIONS(1572), + [anon_sym_f64] = ACTIONS(1572), + [anon_sym_bool] = ACTIONS(1572), + [anon_sym_str] = ACTIONS(1572), + [anon_sym_char] = ACTIONS(1572), + [anon_sym_SLASH] = ACTIONS(906), + [anon_sym__] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_EQ] = ACTIONS(906), + [anon_sym_COMMA] = ACTIONS(904), + [anon_sym_COLON_COLON] = ACTIONS(1574), + [anon_sym_DOT] = ACTIONS(906), + [anon_sym_AMP] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(1574), + [anon_sym_PERCENT] = ACTIONS(906), + [anon_sym_CARET] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(1572), + [anon_sym_GT] = ACTIONS(906), + [anon_sym_PIPE] = ACTIONS(1572), + [anon_sym_as] = ACTIONS(906), + [anon_sym_const] = ACTIONS(1572), + [anon_sym_default] = ACTIONS(1572), + [anon_sym_union] = ACTIONS(1572), + [anon_sym_ref] = ACTIONS(1572), + [anon_sym_DOT_DOT_DOT] = ACTIONS(904), + [sym_mutable_specifier] = ACTIONS(1572), + [anon_sym_DOT_DOT] = ACTIONS(1572), + [anon_sym_DOT_DOT_EQ] = ACTIONS(904), + [anon_sym_AMP_AMP] = ACTIONS(904), + [anon_sym_PIPE_PIPE] = ACTIONS(904), + [anon_sym_EQ_EQ] = ACTIONS(904), + [anon_sym_BANG_EQ] = ACTIONS(904), + [anon_sym_LT_EQ] = ACTIONS(904), + [anon_sym_GT_EQ] = ACTIONS(904), + [anon_sym_LT_LT] = ACTIONS(906), + [anon_sym_GT_GT] = ACTIONS(906), + [anon_sym_PLUS_EQ] = ACTIONS(904), + [anon_sym_DASH_EQ] = ACTIONS(904), + [anon_sym_STAR_EQ] = ACTIONS(904), + [anon_sym_SLASH_EQ] = ACTIONS(904), + [anon_sym_PERCENT_EQ] = ACTIONS(904), + [anon_sym_AMP_EQ] = ACTIONS(904), + [anon_sym_PIPE_EQ] = ACTIONS(904), + [anon_sym_CARET_EQ] = ACTIONS(904), + [anon_sym_LT_LT_EQ] = ACTIONS(904), + [anon_sym_GT_GT_EQ] = ACTIONS(904), + [sym_integer_literal] = ACTIONS(1574), + [aux_sym_string_literal_token1] = ACTIONS(1574), + [sym_char_literal] = ACTIONS(1574), + [anon_sym_true] = ACTIONS(1572), + [anon_sym_false] = ACTIONS(1572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1572), + [sym_super] = ACTIONS(1572), + [sym_crate] = ACTIONS(1572), + [sym_metavariable] = ACTIONS(1574), + [sym_raw_string_literal] = ACTIONS(1574), + [sym_float_literal] = ACTIONS(1574), + }, + [465] = { + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), [sym_identifier] = ACTIONS(958), [anon_sym_LPAREN] = ACTIONS(956), [anon_sym_LBRACK] = ACTIONS(956), @@ -70630,7 +69232,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(958), [anon_sym_const] = ACTIONS(958), [anon_sym_default] = ACTIONS(958), - [anon_sym_static] = ACTIONS(958), [anon_sym_union] = ACTIONS(958), [anon_sym_ref] = ACTIONS(958), [anon_sym_DOT_DOT_DOT] = ACTIONS(956), @@ -70655,323 +69256,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(956), [anon_sym_LT_LT_EQ] = ACTIONS(956), [anon_sym_GT_GT_EQ] = ACTIONS(956), - [anon_sym_move] = ACTIONS(958), [sym_integer_literal] = ACTIONS(956), [aux_sym_string_literal_token1] = ACTIONS(956), - [sym_char_literal] = ACTIONS(956), - [anon_sym_true] = ACTIONS(958), - [anon_sym_false] = ACTIONS(958), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(958), - [sym_super] = ACTIONS(958), - [sym_crate] = ACTIONS(958), - [sym_metavariable] = ACTIONS(956), - [sym_raw_string_literal] = ACTIONS(956), - [sym_float_literal] = ACTIONS(956), - }, - [473] = { - [sym_line_comment] = STATE(473), - [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(934), - [anon_sym_LPAREN] = ACTIONS(932), - [anon_sym_LBRACK] = ACTIONS(932), - [anon_sym_RBRACE] = ACTIONS(932), - [anon_sym_PLUS] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(934), - [anon_sym_QMARK] = ACTIONS(932), - [anon_sym_u8] = ACTIONS(934), - [anon_sym_i8] = ACTIONS(934), - [anon_sym_u16] = ACTIONS(934), - [anon_sym_i16] = ACTIONS(934), - [anon_sym_u32] = ACTIONS(934), - [anon_sym_i32] = ACTIONS(934), - [anon_sym_u64] = ACTIONS(934), - [anon_sym_i64] = ACTIONS(934), - [anon_sym_u128] = ACTIONS(934), - [anon_sym_i128] = ACTIONS(934), - [anon_sym_isize] = ACTIONS(934), - [anon_sym_usize] = ACTIONS(934), - [anon_sym_f32] = ACTIONS(934), - [anon_sym_f64] = ACTIONS(934), - [anon_sym_bool] = ACTIONS(934), - [anon_sym_str] = ACTIONS(934), - [anon_sym_char] = ACTIONS(934), - [anon_sym_SLASH] = ACTIONS(934), - [anon_sym__] = ACTIONS(934), - [anon_sym_DASH] = ACTIONS(934), - [anon_sym_EQ] = ACTIONS(934), - [anon_sym_COMMA] = ACTIONS(932), - [anon_sym_COLON_COLON] = ACTIONS(932), - [anon_sym_DOT] = ACTIONS(934), - [anon_sym_AMP] = ACTIONS(934), - [anon_sym_POUND] = ACTIONS(932), - [anon_sym_PERCENT] = ACTIONS(934), - [anon_sym_CARET] = ACTIONS(934), - [anon_sym_LT] = ACTIONS(934), - [anon_sym_GT] = ACTIONS(934), - [anon_sym_PIPE] = ACTIONS(934), - [anon_sym_as] = ACTIONS(934), - [anon_sym_const] = ACTIONS(934), - [anon_sym_default] = ACTIONS(934), - [anon_sym_static] = ACTIONS(934), - [anon_sym_union] = ACTIONS(934), - [anon_sym_ref] = ACTIONS(934), - [anon_sym_DOT_DOT_DOT] = ACTIONS(932), - [sym_mutable_specifier] = ACTIONS(934), - [anon_sym_DOT_DOT] = ACTIONS(934), - [anon_sym_DOT_DOT_EQ] = ACTIONS(932), - [anon_sym_AMP_AMP] = ACTIONS(932), - [anon_sym_PIPE_PIPE] = ACTIONS(932), - [anon_sym_EQ_EQ] = ACTIONS(932), - [anon_sym_BANG_EQ] = ACTIONS(932), - [anon_sym_LT_EQ] = ACTIONS(932), - [anon_sym_GT_EQ] = ACTIONS(932), - [anon_sym_LT_LT] = ACTIONS(934), - [anon_sym_GT_GT] = ACTIONS(934), - [anon_sym_PLUS_EQ] = ACTIONS(932), - [anon_sym_DASH_EQ] = ACTIONS(932), - [anon_sym_STAR_EQ] = ACTIONS(932), - [anon_sym_SLASH_EQ] = ACTIONS(932), - [anon_sym_PERCENT_EQ] = ACTIONS(932), - [anon_sym_AMP_EQ] = ACTIONS(932), - [anon_sym_PIPE_EQ] = ACTIONS(932), - [anon_sym_CARET_EQ] = ACTIONS(932), - [anon_sym_LT_LT_EQ] = ACTIONS(932), - [anon_sym_GT_GT_EQ] = ACTIONS(932), - [anon_sym_move] = ACTIONS(934), - [sym_integer_literal] = ACTIONS(932), - [aux_sym_string_literal_token1] = ACTIONS(932), - [sym_char_literal] = ACTIONS(932), - [anon_sym_true] = ACTIONS(934), - [anon_sym_false] = ACTIONS(934), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(934), - [sym_super] = ACTIONS(934), - [sym_crate] = ACTIONS(934), - [sym_metavariable] = ACTIONS(932), - [sym_raw_string_literal] = ACTIONS(932), - [sym_float_literal] = ACTIONS(932), - }, - [474] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_match_arm] = STATE(1065), - [sym_last_match_arm] = STATE(3327), - [sym_match_pattern] = STATE(3288), - [sym_const_block] = STATE(2719), - [sym_closure_expression] = STATE(3210), - [sym_closure_parameters] = STATE(143), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), - [sym_line_comment] = STATE(474), - [sym_block_comment] = STATE(474), - [aux_sym_enum_variant_list_repeat1] = STATE(769), - [aux_sym_match_block_repeat1] = STATE(489), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1590), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), + [sym_char_literal] = ACTIONS(956), + [anon_sym_true] = ACTIONS(958), + [anon_sym_false] = ACTIONS(958), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), - }, - [475] = { - [sym_line_comment] = STATE(475), - [sym_block_comment] = STATE(475), - [sym_identifier] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_STAR] = ACTIONS(984), - [anon_sym_QMARK] = ACTIONS(982), - [anon_sym_u8] = ACTIONS(984), - [anon_sym_i8] = ACTIONS(984), - [anon_sym_u16] = ACTIONS(984), - [anon_sym_i16] = ACTIONS(984), - [anon_sym_u32] = ACTIONS(984), - [anon_sym_i32] = ACTIONS(984), - [anon_sym_u64] = ACTIONS(984), - [anon_sym_i64] = ACTIONS(984), - [anon_sym_u128] = ACTIONS(984), - [anon_sym_i128] = ACTIONS(984), - [anon_sym_isize] = ACTIONS(984), - [anon_sym_usize] = ACTIONS(984), - [anon_sym_f32] = ACTIONS(984), - [anon_sym_f64] = ACTIONS(984), - [anon_sym_bool] = ACTIONS(984), - [anon_sym_str] = ACTIONS(984), - [anon_sym_char] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(984), - [anon_sym__] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_COMMA] = ACTIONS(982), - [anon_sym_COLON_COLON] = ACTIONS(982), - [anon_sym_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(982), - [anon_sym_PERCENT] = ACTIONS(984), - [anon_sym_CARET] = ACTIONS(984), - [anon_sym_LT] = ACTIONS(984), - [anon_sym_GT] = ACTIONS(984), - [anon_sym_PIPE] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [anon_sym_default] = ACTIONS(984), - [anon_sym_static] = ACTIONS(984), - [anon_sym_union] = ACTIONS(984), - [anon_sym_ref] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), - [sym_mutable_specifier] = ACTIONS(984), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(982), - [anon_sym_AMP_AMP] = ACTIONS(982), - [anon_sym_PIPE_PIPE] = ACTIONS(982), - [anon_sym_EQ_EQ] = ACTIONS(982), - [anon_sym_BANG_EQ] = ACTIONS(982), - [anon_sym_LT_EQ] = ACTIONS(982), - [anon_sym_GT_EQ] = ACTIONS(982), - [anon_sym_LT_LT] = ACTIONS(984), - [anon_sym_GT_GT] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(982), - [anon_sym_DASH_EQ] = ACTIONS(982), - [anon_sym_STAR_EQ] = ACTIONS(982), - [anon_sym_SLASH_EQ] = ACTIONS(982), - [anon_sym_PERCENT_EQ] = ACTIONS(982), - [anon_sym_AMP_EQ] = ACTIONS(982), - [anon_sym_PIPE_EQ] = ACTIONS(982), - [anon_sym_CARET_EQ] = ACTIONS(982), - [anon_sym_LT_LT_EQ] = ACTIONS(982), - [anon_sym_GT_GT_EQ] = ACTIONS(982), - [anon_sym_move] = ACTIONS(984), - [sym_integer_literal] = ACTIONS(982), - [aux_sym_string_literal_token1] = ACTIONS(982), - [sym_char_literal] = ACTIONS(982), - [anon_sym_true] = ACTIONS(984), - [anon_sym_false] = ACTIONS(984), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(984), - [sym_super] = ACTIONS(984), - [sym_crate] = ACTIONS(984), - [sym_metavariable] = ACTIONS(982), - [sym_raw_string_literal] = ACTIONS(982), - [sym_float_literal] = ACTIONS(982), + [sym_self] = ACTIONS(958), + [sym_super] = ACTIONS(958), + [sym_crate] = ACTIONS(958), + [sym_metavariable] = ACTIONS(956), + [sym_raw_string_literal] = ACTIONS(956), + [sym_float_literal] = ACTIONS(956), }, - [476] = { - [sym_line_comment] = STATE(476), - [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(906), - [anon_sym_LPAREN] = ACTIONS(904), - [anon_sym_LBRACK] = ACTIONS(904), + [466] = { + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [sym_identifier] = ACTIONS(1576), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1578), [anon_sym_RBRACE] = ACTIONS(904), [anon_sym_PLUS] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(906), [anon_sym_QMARK] = ACTIONS(904), - [anon_sym_u8] = ACTIONS(906), - [anon_sym_i8] = ACTIONS(906), - [anon_sym_u16] = ACTIONS(906), - [anon_sym_i16] = ACTIONS(906), - [anon_sym_u32] = ACTIONS(906), - [anon_sym_i32] = ACTIONS(906), - [anon_sym_u64] = ACTIONS(906), - [anon_sym_i64] = ACTIONS(906), - [anon_sym_u128] = ACTIONS(906), - [anon_sym_i128] = ACTIONS(906), - [anon_sym_isize] = ACTIONS(906), - [anon_sym_usize] = ACTIONS(906), - [anon_sym_f32] = ACTIONS(906), - [anon_sym_f64] = ACTIONS(906), - [anon_sym_bool] = ACTIONS(906), - [anon_sym_str] = ACTIONS(906), - [anon_sym_char] = ACTIONS(906), + [anon_sym_u8] = ACTIONS(1576), + [anon_sym_i8] = ACTIONS(1576), + [anon_sym_u16] = ACTIONS(1576), + [anon_sym_i16] = ACTIONS(1576), + [anon_sym_u32] = ACTIONS(1576), + [anon_sym_i32] = ACTIONS(1576), + [anon_sym_u64] = ACTIONS(1576), + [anon_sym_i64] = ACTIONS(1576), + [anon_sym_u128] = ACTIONS(1576), + [anon_sym_i128] = ACTIONS(1576), + [anon_sym_isize] = ACTIONS(1576), + [anon_sym_usize] = ACTIONS(1576), + [anon_sym_f32] = ACTIONS(1576), + [anon_sym_f64] = ACTIONS(1576), + [anon_sym_bool] = ACTIONS(1576), + [anon_sym_str] = ACTIONS(1576), + [anon_sym_char] = ACTIONS(1576), [anon_sym_SLASH] = ACTIONS(906), - [anon_sym__] = ACTIONS(906), - [anon_sym_DASH] = ACTIONS(906), + [anon_sym__] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), [anon_sym_EQ] = ACTIONS(906), [anon_sym_COMMA] = ACTIONS(904), - [anon_sym_COLON_COLON] = ACTIONS(904), + [anon_sym_COLON_COLON] = ACTIONS(1578), [anon_sym_DOT] = ACTIONS(906), - [anon_sym_AMP] = ACTIONS(906), - [anon_sym_POUND] = ACTIONS(904), + [anon_sym_AMP] = ACTIONS(1576), + [anon_sym_POUND] = ACTIONS(1578), [anon_sym_PERCENT] = ACTIONS(906), [anon_sym_CARET] = ACTIONS(906), - [anon_sym_LT] = ACTIONS(906), + [anon_sym_LT] = ACTIONS(1576), [anon_sym_GT] = ACTIONS(906), - [anon_sym_PIPE] = ACTIONS(906), + [anon_sym_PIPE] = ACTIONS(1576), [anon_sym_as] = ACTIONS(906), - [anon_sym_const] = ACTIONS(906), - [anon_sym_default] = ACTIONS(906), - [anon_sym_static] = ACTIONS(906), - [anon_sym_union] = ACTIONS(906), - [anon_sym_ref] = ACTIONS(906), + [anon_sym_const] = ACTIONS(1576), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_union] = ACTIONS(1576), + [anon_sym_ref] = ACTIONS(1576), [anon_sym_DOT_DOT_DOT] = ACTIONS(904), - [sym_mutable_specifier] = ACTIONS(906), - [anon_sym_DOT_DOT] = ACTIONS(906), + [sym_mutable_specifier] = ACTIONS(1576), + [anon_sym_DOT_DOT] = ACTIONS(1576), [anon_sym_DOT_DOT_EQ] = ACTIONS(904), [anon_sym_AMP_AMP] = ACTIONS(904), [anon_sym_PIPE_PIPE] = ACTIONS(904), @@ -70991,9548 +69338,10751 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET_EQ] = ACTIONS(904), [anon_sym_LT_LT_EQ] = ACTIONS(904), [anon_sym_GT_GT_EQ] = ACTIONS(904), - [anon_sym_move] = ACTIONS(906), - [sym_integer_literal] = ACTIONS(904), - [aux_sym_string_literal_token1] = ACTIONS(904), - [sym_char_literal] = ACTIONS(904), - [anon_sym_true] = ACTIONS(906), - [anon_sym_false] = ACTIONS(906), + [sym_integer_literal] = ACTIONS(1578), + [aux_sym_string_literal_token1] = ACTIONS(1578), + [sym_char_literal] = ACTIONS(1578), + [anon_sym_true] = ACTIONS(1576), + [anon_sym_false] = ACTIONS(1576), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1576), + [sym_super] = ACTIONS(1576), + [sym_crate] = ACTIONS(1576), + [sym_metavariable] = ACTIONS(1578), + [sym_raw_string_literal] = ACTIONS(1578), + [sym_float_literal] = ACTIONS(1578), + }, + [467] = { + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [sym_identifier] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_LBRACK] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(966), + [anon_sym_QMARK] = ACTIONS(964), + [anon_sym_u8] = ACTIONS(966), + [anon_sym_i8] = ACTIONS(966), + [anon_sym_u16] = ACTIONS(966), + [anon_sym_i16] = ACTIONS(966), + [anon_sym_u32] = ACTIONS(966), + [anon_sym_i32] = ACTIONS(966), + [anon_sym_u64] = ACTIONS(966), + [anon_sym_i64] = ACTIONS(966), + [anon_sym_u128] = ACTIONS(966), + [anon_sym_i128] = ACTIONS(966), + [anon_sym_isize] = ACTIONS(966), + [anon_sym_usize] = ACTIONS(966), + [anon_sym_f32] = ACTIONS(966), + [anon_sym_f64] = ACTIONS(966), + [anon_sym_bool] = ACTIONS(966), + [anon_sym_str] = ACTIONS(966), + [anon_sym_char] = ACTIONS(966), + [anon_sym_SLASH] = ACTIONS(966), + [anon_sym__] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_COLON_COLON] = ACTIONS(964), + [anon_sym_DOT] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(966), + [anon_sym_POUND] = ACTIONS(964), + [anon_sym_PERCENT] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_LT] = ACTIONS(966), + [anon_sym_GT] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_as] = ACTIONS(966), + [anon_sym_const] = ACTIONS(966), + [anon_sym_default] = ACTIONS(966), + [anon_sym_union] = ACTIONS(966), + [anon_sym_ref] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT] = ACTIONS(964), + [sym_mutable_specifier] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(964), + [anon_sym_AMP_AMP] = ACTIONS(964), + [anon_sym_PIPE_PIPE] = ACTIONS(964), + [anon_sym_EQ_EQ] = ACTIONS(964), + [anon_sym_BANG_EQ] = ACTIONS(964), + [anon_sym_LT_EQ] = ACTIONS(964), + [anon_sym_GT_EQ] = ACTIONS(964), + [anon_sym_LT_LT] = ACTIONS(966), + [anon_sym_GT_GT] = ACTIONS(966), + [anon_sym_PLUS_EQ] = ACTIONS(964), + [anon_sym_DASH_EQ] = ACTIONS(964), + [anon_sym_STAR_EQ] = ACTIONS(964), + [anon_sym_SLASH_EQ] = ACTIONS(964), + [anon_sym_PERCENT_EQ] = ACTIONS(964), + [anon_sym_AMP_EQ] = ACTIONS(964), + [anon_sym_PIPE_EQ] = ACTIONS(964), + [anon_sym_CARET_EQ] = ACTIONS(964), + [anon_sym_LT_LT_EQ] = ACTIONS(964), + [anon_sym_GT_GT_EQ] = ACTIONS(964), + [sym_integer_literal] = ACTIONS(964), + [aux_sym_string_literal_token1] = ACTIONS(964), + [sym_char_literal] = ACTIONS(964), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(966), + [sym_super] = ACTIONS(966), + [sym_crate] = ACTIONS(966), + [sym_metavariable] = ACTIONS(964), + [sym_raw_string_literal] = ACTIONS(964), + [sym_float_literal] = ACTIONS(964), + }, + [468] = { + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym_identifier] = ACTIONS(918), + [anon_sym_LPAREN] = ACTIONS(916), + [anon_sym_LBRACK] = ACTIONS(916), + [anon_sym_RBRACE] = ACTIONS(916), + [anon_sym_PLUS] = ACTIONS(918), + [anon_sym_STAR] = ACTIONS(918), + [anon_sym_QMARK] = ACTIONS(916), + [anon_sym_u8] = ACTIONS(918), + [anon_sym_i8] = ACTIONS(918), + [anon_sym_u16] = ACTIONS(918), + [anon_sym_i16] = ACTIONS(918), + [anon_sym_u32] = ACTIONS(918), + [anon_sym_i32] = ACTIONS(918), + [anon_sym_u64] = ACTIONS(918), + [anon_sym_i64] = ACTIONS(918), + [anon_sym_u128] = ACTIONS(918), + [anon_sym_i128] = ACTIONS(918), + [anon_sym_isize] = ACTIONS(918), + [anon_sym_usize] = ACTIONS(918), + [anon_sym_f32] = ACTIONS(918), + [anon_sym_f64] = ACTIONS(918), + [anon_sym_bool] = ACTIONS(918), + [anon_sym_str] = ACTIONS(918), + [anon_sym_char] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(918), + [anon_sym__] = ACTIONS(918), + [anon_sym_DASH] = ACTIONS(918), + [anon_sym_EQ] = ACTIONS(918), + [anon_sym_COMMA] = ACTIONS(916), + [anon_sym_COLON_COLON] = ACTIONS(916), + [anon_sym_DOT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(918), + [anon_sym_POUND] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_CARET] = ACTIONS(918), + [anon_sym_LT] = ACTIONS(918), + [anon_sym_GT] = ACTIONS(918), + [anon_sym_PIPE] = ACTIONS(918), + [anon_sym_as] = ACTIONS(918), + [anon_sym_const] = ACTIONS(918), + [anon_sym_default] = ACTIONS(918), + [anon_sym_union] = ACTIONS(918), + [anon_sym_ref] = ACTIONS(918), + [anon_sym_DOT_DOT_DOT] = ACTIONS(916), + [sym_mutable_specifier] = ACTIONS(918), + [anon_sym_DOT_DOT] = ACTIONS(918), + [anon_sym_DOT_DOT_EQ] = ACTIONS(916), + [anon_sym_AMP_AMP] = ACTIONS(916), + [anon_sym_PIPE_PIPE] = ACTIONS(916), + [anon_sym_EQ_EQ] = ACTIONS(916), + [anon_sym_BANG_EQ] = ACTIONS(916), + [anon_sym_LT_EQ] = ACTIONS(916), + [anon_sym_GT_EQ] = ACTIONS(916), + [anon_sym_LT_LT] = ACTIONS(918), + [anon_sym_GT_GT] = ACTIONS(918), + [anon_sym_PLUS_EQ] = ACTIONS(916), + [anon_sym_DASH_EQ] = ACTIONS(916), + [anon_sym_STAR_EQ] = ACTIONS(916), + [anon_sym_SLASH_EQ] = ACTIONS(916), + [anon_sym_PERCENT_EQ] = ACTIONS(916), + [anon_sym_AMP_EQ] = ACTIONS(916), + [anon_sym_PIPE_EQ] = ACTIONS(916), + [anon_sym_CARET_EQ] = ACTIONS(916), + [anon_sym_LT_LT_EQ] = ACTIONS(916), + [anon_sym_GT_GT_EQ] = ACTIONS(916), + [sym_integer_literal] = ACTIONS(916), + [aux_sym_string_literal_token1] = ACTIONS(916), + [sym_char_literal] = ACTIONS(916), + [anon_sym_true] = ACTIONS(918), + [anon_sym_false] = ACTIONS(918), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(918), + [sym_super] = ACTIONS(918), + [sym_crate] = ACTIONS(918), + [sym_metavariable] = ACTIONS(916), + [sym_raw_string_literal] = ACTIONS(916), + [sym_float_literal] = ACTIONS(916), + }, + [469] = { + [sym_attribute_item] = STATE(1461), + [sym_inner_attribute_item] = STATE(1461), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_match_arm] = STATE(1462), + [sym_last_match_arm] = STATE(3549), + [sym_match_pattern] = STATE(3553), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [aux_sym_match_block_repeat1] = STATE(622), + [aux_sym_match_arm_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1586), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), + }, + [470] = { + [sym_attribute_item] = STATE(1461), + [sym_inner_attribute_item] = STATE(1461), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_match_arm] = STATE(1462), + [sym_last_match_arm] = STATE(3390), + [sym_match_pattern] = STATE(3553), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), + [sym_line_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [aux_sym_match_block_repeat1] = STATE(714), + [aux_sym_match_arm_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1622), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), + }, + [471] = { + [sym_attribute_item] = STATE(1461), + [sym_inner_attribute_item] = STATE(1461), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_match_arm] = STATE(1462), + [sym_last_match_arm] = STATE(3391), + [sym_match_pattern] = STATE(3553), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), + [sym_line_comment] = STATE(471), + [sym_block_comment] = STATE(471), + [aux_sym_match_block_repeat1] = STATE(638), + [aux_sym_match_arm_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1624), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), + }, + [472] = { + [sym_attribute_item] = STATE(1461), + [sym_inner_attribute_item] = STATE(1461), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_match_arm] = STATE(1462), + [sym_last_match_arm] = STATE(3454), + [sym_match_pattern] = STATE(3553), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), + [sym_line_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [aux_sym_match_block_repeat1] = STATE(694), + [aux_sym_match_arm_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_RBRACE] = ACTIONS(1626), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), + }, + [473] = { + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [ts_builtin_sym_end] = ACTIONS(1628), + [sym_identifier] = ACTIONS(1630), + [anon_sym_SEMI] = ACTIONS(1628), + [anon_sym_macro_rules_BANG] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1628), + [anon_sym_LBRACE] = ACTIONS(1628), + [anon_sym_RBRACE] = ACTIONS(1628), + [anon_sym_STAR] = ACTIONS(1628), + [anon_sym_u8] = ACTIONS(1630), + [anon_sym_i8] = ACTIONS(1630), + [anon_sym_u16] = ACTIONS(1630), + [anon_sym_i16] = ACTIONS(1630), + [anon_sym_u32] = ACTIONS(1630), + [anon_sym_i32] = ACTIONS(1630), + [anon_sym_u64] = ACTIONS(1630), + [anon_sym_i64] = ACTIONS(1630), + [anon_sym_u128] = ACTIONS(1630), + [anon_sym_i128] = ACTIONS(1630), + [anon_sym_isize] = ACTIONS(1630), + [anon_sym_usize] = ACTIONS(1630), + [anon_sym_f32] = ACTIONS(1630), + [anon_sym_f64] = ACTIONS(1630), + [anon_sym_bool] = ACTIONS(1630), + [anon_sym_str] = ACTIONS(1630), + [anon_sym_char] = ACTIONS(1630), + [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_COLON_COLON] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(1628), + [anon_sym_POUND] = ACTIONS(1628), + [anon_sym_LT] = ACTIONS(1628), + [anon_sym_PIPE] = ACTIONS(1628), + [anon_sym_SQUOTE] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1630), + [anon_sym_break] = ACTIONS(1630), + [anon_sym_const] = ACTIONS(1630), + [anon_sym_continue] = ACTIONS(1630), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_enum] = ACTIONS(1630), + [anon_sym_fn] = ACTIONS(1630), + [anon_sym_for] = ACTIONS(1630), + [anon_sym_if] = ACTIONS(1630), + [anon_sym_impl] = ACTIONS(1630), + [anon_sym_let] = ACTIONS(1630), + [anon_sym_loop] = ACTIONS(1630), + [anon_sym_match] = ACTIONS(1630), + [anon_sym_mod] = ACTIONS(1630), + [anon_sym_pub] = ACTIONS(1630), + [anon_sym_return] = ACTIONS(1630), + [anon_sym_static] = ACTIONS(1630), + [anon_sym_struct] = ACTIONS(1630), + [anon_sym_trait] = ACTIONS(1630), + [anon_sym_type] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_unsafe] = ACTIONS(1630), + [anon_sym_use] = ACTIONS(1630), + [anon_sym_while] = ACTIONS(1630), + [anon_sym_extern] = ACTIONS(1630), + [anon_sym_DOT_DOT] = ACTIONS(1628), + [anon_sym_yield] = ACTIONS(1630), + [anon_sym_move] = ACTIONS(1630), + [anon_sym_try] = ACTIONS(1630), + [sym_integer_literal] = ACTIONS(1628), + [aux_sym_string_literal_token1] = ACTIONS(1628), + [sym_char_literal] = ACTIONS(1628), + [anon_sym_true] = ACTIONS(1630), + [anon_sym_false] = ACTIONS(1630), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1630), + [sym_super] = ACTIONS(1630), + [sym_crate] = ACTIONS(1630), + [sym_metavariable] = ACTIONS(1628), + [sym_raw_string_literal] = ACTIONS(1628), + [sym_float_literal] = ACTIONS(1628), + }, + [474] = { + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [ts_builtin_sym_end] = ACTIONS(1632), + [sym_identifier] = ACTIONS(1634), + [anon_sym_SEMI] = ACTIONS(1632), + [anon_sym_macro_rules_BANG] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1632), + [anon_sym_LBRACE] = ACTIONS(1632), + [anon_sym_RBRACE] = ACTIONS(1632), + [anon_sym_STAR] = ACTIONS(1632), + [anon_sym_u8] = ACTIONS(1634), + [anon_sym_i8] = ACTIONS(1634), + [anon_sym_u16] = ACTIONS(1634), + [anon_sym_i16] = ACTIONS(1634), + [anon_sym_u32] = ACTIONS(1634), + [anon_sym_i32] = ACTIONS(1634), + [anon_sym_u64] = ACTIONS(1634), + [anon_sym_i64] = ACTIONS(1634), + [anon_sym_u128] = ACTIONS(1634), + [anon_sym_i128] = ACTIONS(1634), + [anon_sym_isize] = ACTIONS(1634), + [anon_sym_usize] = ACTIONS(1634), + [anon_sym_f32] = ACTIONS(1634), + [anon_sym_f64] = ACTIONS(1634), + [anon_sym_bool] = ACTIONS(1634), + [anon_sym_str] = ACTIONS(1634), + [anon_sym_char] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1632), + [anon_sym_COLON_COLON] = ACTIONS(1632), + [anon_sym_BANG] = ACTIONS(1632), + [anon_sym_AMP] = ACTIONS(1632), + [anon_sym_POUND] = ACTIONS(1632), + [anon_sym_LT] = ACTIONS(1632), + [anon_sym_PIPE] = ACTIONS(1632), + [anon_sym_SQUOTE] = ACTIONS(1634), + [anon_sym_async] = ACTIONS(1634), + [anon_sym_break] = ACTIONS(1634), + [anon_sym_const] = ACTIONS(1634), + [anon_sym_continue] = ACTIONS(1634), + [anon_sym_default] = ACTIONS(1634), + [anon_sym_enum] = ACTIONS(1634), + [anon_sym_fn] = ACTIONS(1634), + [anon_sym_for] = ACTIONS(1634), + [anon_sym_if] = ACTIONS(1634), + [anon_sym_impl] = ACTIONS(1634), + [anon_sym_let] = ACTIONS(1634), + [anon_sym_loop] = ACTIONS(1634), + [anon_sym_match] = ACTIONS(1634), + [anon_sym_mod] = ACTIONS(1634), + [anon_sym_pub] = ACTIONS(1634), + [anon_sym_return] = ACTIONS(1634), + [anon_sym_static] = ACTIONS(1634), + [anon_sym_struct] = ACTIONS(1634), + [anon_sym_trait] = ACTIONS(1634), + [anon_sym_type] = ACTIONS(1634), + [anon_sym_union] = ACTIONS(1634), + [anon_sym_unsafe] = ACTIONS(1634), + [anon_sym_use] = ACTIONS(1634), + [anon_sym_while] = ACTIONS(1634), + [anon_sym_extern] = ACTIONS(1634), + [anon_sym_DOT_DOT] = ACTIONS(1632), + [anon_sym_yield] = ACTIONS(1634), + [anon_sym_move] = ACTIONS(1634), + [anon_sym_try] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1632), + [aux_sym_string_literal_token1] = ACTIONS(1632), + [sym_char_literal] = ACTIONS(1632), + [anon_sym_true] = ACTIONS(1634), + [anon_sym_false] = ACTIONS(1634), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1634), + [sym_super] = ACTIONS(1634), + [sym_crate] = ACTIONS(1634), + [sym_metavariable] = ACTIONS(1632), + [sym_raw_string_literal] = ACTIONS(1632), + [sym_float_literal] = ACTIONS(1632), + }, + [475] = { + [sym_empty_statement] = STATE(1143), + [sym_macro_definition] = STATE(1143), + [sym_attribute_item] = STATE(1143), + [sym_inner_attribute_item] = STATE(1143), + [sym_mod_item] = STATE(1143), + [sym_foreign_mod_item] = STATE(1143), + [sym_struct_item] = STATE(1143), + [sym_union_item] = STATE(1143), + [sym_enum_item] = STATE(1143), + [sym_extern_crate_declaration] = STATE(1143), + [sym_const_item] = STATE(1143), + [sym_static_item] = STATE(1143), + [sym_type_item] = STATE(1143), + [sym_function_item] = STATE(1143), + [sym_function_signature_item] = STATE(1143), + [sym_function_modifiers] = STATE(3554), + [sym_impl_item] = STATE(1143), + [sym_trait_item] = STATE(1143), + [sym_associated_type] = STATE(1143), + [sym_let_declaration] = STATE(1143), + [sym_use_declaration] = STATE(1143), + [sym_extern_modifier] = STATE(2155), + [sym_visibility_modifier] = STATE(1923), + [sym_bracketed_type] = STATE(3383), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_macro_invocation] = STATE(1143), + [sym_scoped_identifier] = STATE(3220), + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), + [aux_sym_declaration_list_repeat1] = STATE(702), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_macro_rules_BANG] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1642), + [anon_sym_u8] = ACTIONS(1644), + [anon_sym_i8] = ACTIONS(1644), + [anon_sym_u16] = ACTIONS(1644), + [anon_sym_i16] = ACTIONS(1644), + [anon_sym_u32] = ACTIONS(1644), + [anon_sym_i32] = ACTIONS(1644), + [anon_sym_u64] = ACTIONS(1644), + [anon_sym_i64] = ACTIONS(1644), + [anon_sym_u128] = ACTIONS(1644), + [anon_sym_i128] = ACTIONS(1644), + [anon_sym_isize] = ACTIONS(1644), + [anon_sym_usize] = ACTIONS(1644), + [anon_sym_f32] = ACTIONS(1644), + [anon_sym_f64] = ACTIONS(1644), + [anon_sym_bool] = ACTIONS(1644), + [anon_sym_str] = ACTIONS(1644), + [anon_sym_char] = ACTIONS(1644), + [anon_sym_COLON_COLON] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_default] = ACTIONS(1652), + [anon_sym_enum] = ACTIONS(1654), + [anon_sym_fn] = ACTIONS(1656), + [anon_sym_impl] = ACTIONS(1658), + [anon_sym_let] = ACTIONS(1660), + [anon_sym_mod] = ACTIONS(1662), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_struct] = ACTIONS(1666), + [anon_sym_trait] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(1670), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_unsafe] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1678), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(906), - [sym_super] = ACTIONS(906), - [sym_crate] = ACTIONS(906), - [sym_metavariable] = ACTIONS(904), - [sym_raw_string_literal] = ACTIONS(904), - [sym_float_literal] = ACTIONS(904), + [sym_self] = ACTIONS(1680), + [sym_super] = ACTIONS(1680), + [sym_crate] = ACTIONS(1682), + [sym_metavariable] = ACTIONS(1684), + }, + [476] = { + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [ts_builtin_sym_end] = ACTIONS(1686), + [sym_identifier] = ACTIONS(1688), + [anon_sym_SEMI] = ACTIONS(1686), + [anon_sym_macro_rules_BANG] = ACTIONS(1686), + [anon_sym_LPAREN] = ACTIONS(1686), + [anon_sym_LBRACK] = ACTIONS(1686), + [anon_sym_LBRACE] = ACTIONS(1686), + [anon_sym_RBRACE] = ACTIONS(1686), + [anon_sym_STAR] = ACTIONS(1686), + [anon_sym_u8] = ACTIONS(1688), + [anon_sym_i8] = ACTIONS(1688), + [anon_sym_u16] = ACTIONS(1688), + [anon_sym_i16] = ACTIONS(1688), + [anon_sym_u32] = ACTIONS(1688), + [anon_sym_i32] = ACTIONS(1688), + [anon_sym_u64] = ACTIONS(1688), + [anon_sym_i64] = ACTIONS(1688), + [anon_sym_u128] = ACTIONS(1688), + [anon_sym_i128] = ACTIONS(1688), + [anon_sym_isize] = ACTIONS(1688), + [anon_sym_usize] = ACTIONS(1688), + [anon_sym_f32] = ACTIONS(1688), + [anon_sym_f64] = ACTIONS(1688), + [anon_sym_bool] = ACTIONS(1688), + [anon_sym_str] = ACTIONS(1688), + [anon_sym_char] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_COLON_COLON] = ACTIONS(1686), + [anon_sym_BANG] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(1686), + [anon_sym_POUND] = ACTIONS(1686), + [anon_sym_LT] = ACTIONS(1686), + [anon_sym_PIPE] = ACTIONS(1686), + [anon_sym_SQUOTE] = ACTIONS(1688), + [anon_sym_async] = ACTIONS(1688), + [anon_sym_break] = ACTIONS(1688), + [anon_sym_const] = ACTIONS(1688), + [anon_sym_continue] = ACTIONS(1688), + [anon_sym_default] = ACTIONS(1688), + [anon_sym_enum] = ACTIONS(1688), + [anon_sym_fn] = ACTIONS(1688), + [anon_sym_for] = ACTIONS(1688), + [anon_sym_if] = ACTIONS(1688), + [anon_sym_impl] = ACTIONS(1688), + [anon_sym_let] = ACTIONS(1688), + [anon_sym_loop] = ACTIONS(1688), + [anon_sym_match] = ACTIONS(1688), + [anon_sym_mod] = ACTIONS(1688), + [anon_sym_pub] = ACTIONS(1688), + [anon_sym_return] = ACTIONS(1688), + [anon_sym_static] = ACTIONS(1688), + [anon_sym_struct] = ACTIONS(1688), + [anon_sym_trait] = ACTIONS(1688), + [anon_sym_type] = ACTIONS(1688), + [anon_sym_union] = ACTIONS(1688), + [anon_sym_unsafe] = ACTIONS(1688), + [anon_sym_use] = ACTIONS(1688), + [anon_sym_while] = ACTIONS(1688), + [anon_sym_extern] = ACTIONS(1688), + [anon_sym_DOT_DOT] = ACTIONS(1686), + [anon_sym_yield] = ACTIONS(1688), + [anon_sym_move] = ACTIONS(1688), + [anon_sym_try] = ACTIONS(1688), + [sym_integer_literal] = ACTIONS(1686), + [aux_sym_string_literal_token1] = ACTIONS(1686), + [sym_char_literal] = ACTIONS(1686), + [anon_sym_true] = ACTIONS(1688), + [anon_sym_false] = ACTIONS(1688), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1688), + [sym_super] = ACTIONS(1688), + [sym_crate] = ACTIONS(1688), + [sym_metavariable] = ACTIONS(1686), + [sym_raw_string_literal] = ACTIONS(1686), + [sym_float_literal] = ACTIONS(1686), }, [477] = { [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(946), - [anon_sym_LPAREN] = ACTIONS(944), - [anon_sym_LBRACK] = ACTIONS(944), - [anon_sym_RBRACE] = ACTIONS(944), - [anon_sym_PLUS] = ACTIONS(946), - [anon_sym_STAR] = ACTIONS(946), - [anon_sym_QMARK] = ACTIONS(944), - [anon_sym_u8] = ACTIONS(946), - [anon_sym_i8] = ACTIONS(946), - [anon_sym_u16] = ACTIONS(946), - [anon_sym_i16] = ACTIONS(946), - [anon_sym_u32] = ACTIONS(946), - [anon_sym_i32] = ACTIONS(946), - [anon_sym_u64] = ACTIONS(946), - [anon_sym_i64] = ACTIONS(946), - [anon_sym_u128] = ACTIONS(946), - [anon_sym_i128] = ACTIONS(946), - [anon_sym_isize] = ACTIONS(946), - [anon_sym_usize] = ACTIONS(946), - [anon_sym_f32] = ACTIONS(946), - [anon_sym_f64] = ACTIONS(946), - [anon_sym_bool] = ACTIONS(946), - [anon_sym_str] = ACTIONS(946), - [anon_sym_char] = ACTIONS(946), - [anon_sym_SLASH] = ACTIONS(946), - [anon_sym__] = ACTIONS(946), - [anon_sym_DASH] = ACTIONS(946), - [anon_sym_EQ] = ACTIONS(946), - [anon_sym_COMMA] = ACTIONS(944), - [anon_sym_COLON_COLON] = ACTIONS(944), - [anon_sym_DOT] = ACTIONS(946), - [anon_sym_AMP] = ACTIONS(946), - [anon_sym_POUND] = ACTIONS(944), - [anon_sym_PERCENT] = ACTIONS(946), - [anon_sym_CARET] = ACTIONS(946), - [anon_sym_LT] = ACTIONS(946), - [anon_sym_GT] = ACTIONS(946), - [anon_sym_PIPE] = ACTIONS(946), - [anon_sym_as] = ACTIONS(946), - [anon_sym_const] = ACTIONS(946), - [anon_sym_default] = ACTIONS(946), - [anon_sym_static] = ACTIONS(946), - [anon_sym_union] = ACTIONS(946), - [anon_sym_ref] = ACTIONS(946), - [anon_sym_DOT_DOT_DOT] = ACTIONS(944), - [sym_mutable_specifier] = ACTIONS(946), - [anon_sym_DOT_DOT] = ACTIONS(946), - [anon_sym_DOT_DOT_EQ] = ACTIONS(944), - [anon_sym_AMP_AMP] = ACTIONS(944), - [anon_sym_PIPE_PIPE] = ACTIONS(944), - [anon_sym_EQ_EQ] = ACTIONS(944), - [anon_sym_BANG_EQ] = ACTIONS(944), - [anon_sym_LT_EQ] = ACTIONS(944), - [anon_sym_GT_EQ] = ACTIONS(944), - [anon_sym_LT_LT] = ACTIONS(946), - [anon_sym_GT_GT] = ACTIONS(946), - [anon_sym_PLUS_EQ] = ACTIONS(944), - [anon_sym_DASH_EQ] = ACTIONS(944), - [anon_sym_STAR_EQ] = ACTIONS(944), - [anon_sym_SLASH_EQ] = ACTIONS(944), - [anon_sym_PERCENT_EQ] = ACTIONS(944), - [anon_sym_AMP_EQ] = ACTIONS(944), - [anon_sym_PIPE_EQ] = ACTIONS(944), - [anon_sym_CARET_EQ] = ACTIONS(944), - [anon_sym_LT_LT_EQ] = ACTIONS(944), - [anon_sym_GT_GT_EQ] = ACTIONS(944), - [anon_sym_move] = ACTIONS(946), - [sym_integer_literal] = ACTIONS(944), - [aux_sym_string_literal_token1] = ACTIONS(944), - [sym_char_literal] = ACTIONS(944), - [anon_sym_true] = ACTIONS(946), - [anon_sym_false] = ACTIONS(946), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(946), - [sym_super] = ACTIONS(946), - [sym_crate] = ACTIONS(946), - [sym_metavariable] = ACTIONS(944), - [sym_raw_string_literal] = ACTIONS(944), - [sym_float_literal] = ACTIONS(944), + [ts_builtin_sym_end] = ACTIONS(1690), + [sym_identifier] = ACTIONS(1692), + [anon_sym_SEMI] = ACTIONS(1690), + [anon_sym_macro_rules_BANG] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_LBRACK] = ACTIONS(1690), + [anon_sym_LBRACE] = ACTIONS(1690), + [anon_sym_RBRACE] = ACTIONS(1690), + [anon_sym_STAR] = ACTIONS(1690), + [anon_sym_u8] = ACTIONS(1692), + [anon_sym_i8] = ACTIONS(1692), + [anon_sym_u16] = ACTIONS(1692), + [anon_sym_i16] = ACTIONS(1692), + [anon_sym_u32] = ACTIONS(1692), + [anon_sym_i32] = ACTIONS(1692), + [anon_sym_u64] = ACTIONS(1692), + [anon_sym_i64] = ACTIONS(1692), + [anon_sym_u128] = ACTIONS(1692), + [anon_sym_i128] = ACTIONS(1692), + [anon_sym_isize] = ACTIONS(1692), + [anon_sym_usize] = ACTIONS(1692), + [anon_sym_f32] = ACTIONS(1692), + [anon_sym_f64] = ACTIONS(1692), + [anon_sym_bool] = ACTIONS(1692), + [anon_sym_str] = ACTIONS(1692), + [anon_sym_char] = ACTIONS(1692), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_COLON_COLON] = ACTIONS(1690), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_AMP] = ACTIONS(1690), + [anon_sym_POUND] = ACTIONS(1690), + [anon_sym_LT] = ACTIONS(1690), + [anon_sym_PIPE] = ACTIONS(1690), + [anon_sym_SQUOTE] = ACTIONS(1692), + [anon_sym_async] = ACTIONS(1692), + [anon_sym_break] = ACTIONS(1692), + [anon_sym_const] = ACTIONS(1692), + [anon_sym_continue] = ACTIONS(1692), + [anon_sym_default] = ACTIONS(1692), + [anon_sym_enum] = ACTIONS(1692), + [anon_sym_fn] = ACTIONS(1692), + [anon_sym_for] = ACTIONS(1692), + [anon_sym_if] = ACTIONS(1692), + [anon_sym_impl] = ACTIONS(1692), + [anon_sym_let] = ACTIONS(1692), + [anon_sym_loop] = ACTIONS(1692), + [anon_sym_match] = ACTIONS(1692), + [anon_sym_mod] = ACTIONS(1692), + [anon_sym_pub] = ACTIONS(1692), + [anon_sym_return] = ACTIONS(1692), + [anon_sym_static] = ACTIONS(1692), + [anon_sym_struct] = ACTIONS(1692), + [anon_sym_trait] = ACTIONS(1692), + [anon_sym_type] = ACTIONS(1692), + [anon_sym_union] = ACTIONS(1692), + [anon_sym_unsafe] = ACTIONS(1692), + [anon_sym_use] = ACTIONS(1692), + [anon_sym_while] = ACTIONS(1692), + [anon_sym_extern] = ACTIONS(1692), + [anon_sym_DOT_DOT] = ACTIONS(1690), + [anon_sym_yield] = ACTIONS(1692), + [anon_sym_move] = ACTIONS(1692), + [anon_sym_try] = ACTIONS(1692), + [sym_integer_literal] = ACTIONS(1690), + [aux_sym_string_literal_token1] = ACTIONS(1690), + [sym_char_literal] = ACTIONS(1690), + [anon_sym_true] = ACTIONS(1692), + [anon_sym_false] = ACTIONS(1692), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1692), + [sym_super] = ACTIONS(1692), + [sym_crate] = ACTIONS(1692), + [sym_metavariable] = ACTIONS(1690), + [sym_raw_string_literal] = ACTIONS(1690), + [sym_float_literal] = ACTIONS(1690), }, [478] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_match_arm] = STATE(1065), - [sym_last_match_arm] = STATE(3394), - [sym_match_pattern] = STATE(3288), - [sym_const_block] = STATE(2719), - [sym_closure_expression] = STATE(3210), - [sym_closure_parameters] = STATE(143), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [aux_sym_enum_variant_list_repeat1] = STATE(769), - [aux_sym_match_block_repeat1] = STATE(493), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1592), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [ts_builtin_sym_end] = ACTIONS(1694), + [sym_identifier] = ACTIONS(1696), + [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_macro_rules_BANG] = ACTIONS(1694), + [anon_sym_LPAREN] = ACTIONS(1694), + [anon_sym_LBRACK] = ACTIONS(1694), + [anon_sym_LBRACE] = ACTIONS(1694), + [anon_sym_RBRACE] = ACTIONS(1694), + [anon_sym_STAR] = ACTIONS(1694), + [anon_sym_u8] = ACTIONS(1696), + [anon_sym_i8] = ACTIONS(1696), + [anon_sym_u16] = ACTIONS(1696), + [anon_sym_i16] = ACTIONS(1696), + [anon_sym_u32] = ACTIONS(1696), + [anon_sym_i32] = ACTIONS(1696), + [anon_sym_u64] = ACTIONS(1696), + [anon_sym_i64] = ACTIONS(1696), + [anon_sym_u128] = ACTIONS(1696), + [anon_sym_i128] = ACTIONS(1696), + [anon_sym_isize] = ACTIONS(1696), + [anon_sym_usize] = ACTIONS(1696), + [anon_sym_f32] = ACTIONS(1696), + [anon_sym_f64] = ACTIONS(1696), + [anon_sym_bool] = ACTIONS(1696), + [anon_sym_str] = ACTIONS(1696), + [anon_sym_char] = ACTIONS(1696), + [anon_sym_DASH] = ACTIONS(1694), + [anon_sym_COLON_COLON] = ACTIONS(1694), + [anon_sym_BANG] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(1694), + [anon_sym_POUND] = ACTIONS(1694), + [anon_sym_LT] = ACTIONS(1694), + [anon_sym_PIPE] = ACTIONS(1694), + [anon_sym_SQUOTE] = ACTIONS(1696), + [anon_sym_async] = ACTIONS(1696), + [anon_sym_break] = ACTIONS(1696), + [anon_sym_const] = ACTIONS(1696), + [anon_sym_continue] = ACTIONS(1696), + [anon_sym_default] = ACTIONS(1696), + [anon_sym_enum] = ACTIONS(1696), + [anon_sym_fn] = ACTIONS(1696), + [anon_sym_for] = ACTIONS(1696), + [anon_sym_if] = ACTIONS(1696), + [anon_sym_impl] = ACTIONS(1696), + [anon_sym_let] = ACTIONS(1696), + [anon_sym_loop] = ACTIONS(1696), + [anon_sym_match] = ACTIONS(1696), + [anon_sym_mod] = ACTIONS(1696), + [anon_sym_pub] = ACTIONS(1696), + [anon_sym_return] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1696), + [anon_sym_struct] = ACTIONS(1696), + [anon_sym_trait] = ACTIONS(1696), + [anon_sym_type] = ACTIONS(1696), + [anon_sym_union] = ACTIONS(1696), + [anon_sym_unsafe] = ACTIONS(1696), + [anon_sym_use] = ACTIONS(1696), + [anon_sym_while] = ACTIONS(1696), + [anon_sym_extern] = ACTIONS(1696), + [anon_sym_DOT_DOT] = ACTIONS(1694), + [anon_sym_yield] = ACTIONS(1696), + [anon_sym_move] = ACTIONS(1696), + [anon_sym_try] = ACTIONS(1696), + [sym_integer_literal] = ACTIONS(1694), + [aux_sym_string_literal_token1] = ACTIONS(1694), + [sym_char_literal] = ACTIONS(1694), + [anon_sym_true] = ACTIONS(1696), + [anon_sym_false] = ACTIONS(1696), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1696), + [sym_super] = ACTIONS(1696), + [sym_crate] = ACTIONS(1696), + [sym_metavariable] = ACTIONS(1694), + [sym_raw_string_literal] = ACTIONS(1694), + [sym_float_literal] = ACTIONS(1694), }, [479] = { [sym_line_comment] = STATE(479), [sym_block_comment] = STATE(479), - [sym_identifier] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_PLUS] = ACTIONS(972), - [anon_sym_STAR] = ACTIONS(972), - [anon_sym_QMARK] = ACTIONS(970), - [anon_sym_u8] = ACTIONS(972), - [anon_sym_i8] = ACTIONS(972), - [anon_sym_u16] = ACTIONS(972), - [anon_sym_i16] = ACTIONS(972), - [anon_sym_u32] = ACTIONS(972), - [anon_sym_i32] = ACTIONS(972), - [anon_sym_u64] = ACTIONS(972), - [anon_sym_i64] = ACTIONS(972), - [anon_sym_u128] = ACTIONS(972), - [anon_sym_i128] = ACTIONS(972), - [anon_sym_isize] = ACTIONS(972), - [anon_sym_usize] = ACTIONS(972), - [anon_sym_f32] = ACTIONS(972), - [anon_sym_f64] = ACTIONS(972), - [anon_sym_bool] = ACTIONS(972), - [anon_sym_str] = ACTIONS(972), - [anon_sym_char] = ACTIONS(972), - [anon_sym_SLASH] = ACTIONS(972), - [anon_sym__] = ACTIONS(972), - [anon_sym_DASH] = ACTIONS(972), - [anon_sym_EQ] = ACTIONS(972), - [anon_sym_COMMA] = ACTIONS(970), - [anon_sym_COLON_COLON] = ACTIONS(970), - [anon_sym_DOT] = ACTIONS(972), - [anon_sym_AMP] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(970), - [anon_sym_PERCENT] = ACTIONS(972), - [anon_sym_CARET] = ACTIONS(972), - [anon_sym_LT] = ACTIONS(972), - [anon_sym_GT] = ACTIONS(972), - [anon_sym_PIPE] = ACTIONS(972), - [anon_sym_as] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [anon_sym_default] = ACTIONS(972), - [anon_sym_static] = ACTIONS(972), - [anon_sym_union] = ACTIONS(972), - [anon_sym_ref] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT] = ACTIONS(970), - [sym_mutable_specifier] = ACTIONS(972), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(970), - [anon_sym_AMP_AMP] = ACTIONS(970), - [anon_sym_PIPE_PIPE] = ACTIONS(970), - [anon_sym_EQ_EQ] = ACTIONS(970), - [anon_sym_BANG_EQ] = ACTIONS(970), - [anon_sym_LT_EQ] = ACTIONS(970), - [anon_sym_GT_EQ] = ACTIONS(970), - [anon_sym_LT_LT] = ACTIONS(972), - [anon_sym_GT_GT] = ACTIONS(972), - [anon_sym_PLUS_EQ] = ACTIONS(970), - [anon_sym_DASH_EQ] = ACTIONS(970), - [anon_sym_STAR_EQ] = ACTIONS(970), - [anon_sym_SLASH_EQ] = ACTIONS(970), - [anon_sym_PERCENT_EQ] = ACTIONS(970), - [anon_sym_AMP_EQ] = ACTIONS(970), - [anon_sym_PIPE_EQ] = ACTIONS(970), - [anon_sym_CARET_EQ] = ACTIONS(970), - [anon_sym_LT_LT_EQ] = ACTIONS(970), - [anon_sym_GT_GT_EQ] = ACTIONS(970), - [anon_sym_move] = ACTIONS(972), - [sym_integer_literal] = ACTIONS(970), - [aux_sym_string_literal_token1] = ACTIONS(970), - [sym_char_literal] = ACTIONS(970), - [anon_sym_true] = ACTIONS(972), - [anon_sym_false] = ACTIONS(972), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(972), - [sym_super] = ACTIONS(972), - [sym_crate] = ACTIONS(972), - [sym_metavariable] = ACTIONS(970), - [sym_raw_string_literal] = ACTIONS(970), - [sym_float_literal] = ACTIONS(970), + [ts_builtin_sym_end] = ACTIONS(1698), + [sym_identifier] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_macro_rules_BANG] = ACTIONS(1698), + [anon_sym_LPAREN] = ACTIONS(1698), + [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_LBRACE] = ACTIONS(1698), + [anon_sym_RBRACE] = ACTIONS(1698), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_u8] = ACTIONS(1700), + [anon_sym_i8] = ACTIONS(1700), + [anon_sym_u16] = ACTIONS(1700), + [anon_sym_i16] = ACTIONS(1700), + [anon_sym_u32] = ACTIONS(1700), + [anon_sym_i32] = ACTIONS(1700), + [anon_sym_u64] = ACTIONS(1700), + [anon_sym_i64] = ACTIONS(1700), + [anon_sym_u128] = ACTIONS(1700), + [anon_sym_i128] = ACTIONS(1700), + [anon_sym_isize] = ACTIONS(1700), + [anon_sym_usize] = ACTIONS(1700), + [anon_sym_f32] = ACTIONS(1700), + [anon_sym_f64] = ACTIONS(1700), + [anon_sym_bool] = ACTIONS(1700), + [anon_sym_str] = ACTIONS(1700), + [anon_sym_char] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1698), + [anon_sym_COLON_COLON] = ACTIONS(1698), + [anon_sym_BANG] = ACTIONS(1698), + [anon_sym_AMP] = ACTIONS(1698), + [anon_sym_POUND] = ACTIONS(1698), + [anon_sym_LT] = ACTIONS(1698), + [anon_sym_PIPE] = ACTIONS(1698), + [anon_sym_SQUOTE] = ACTIONS(1700), + [anon_sym_async] = ACTIONS(1700), + [anon_sym_break] = ACTIONS(1700), + [anon_sym_const] = ACTIONS(1700), + [anon_sym_continue] = ACTIONS(1700), + [anon_sym_default] = ACTIONS(1700), + [anon_sym_enum] = ACTIONS(1700), + [anon_sym_fn] = ACTIONS(1700), + [anon_sym_for] = ACTIONS(1700), + [anon_sym_if] = ACTIONS(1700), + [anon_sym_impl] = ACTIONS(1700), + [anon_sym_let] = ACTIONS(1700), + [anon_sym_loop] = ACTIONS(1700), + [anon_sym_match] = ACTIONS(1700), + [anon_sym_mod] = ACTIONS(1700), + [anon_sym_pub] = ACTIONS(1700), + [anon_sym_return] = ACTIONS(1700), + [anon_sym_static] = ACTIONS(1700), + [anon_sym_struct] = ACTIONS(1700), + [anon_sym_trait] = ACTIONS(1700), + [anon_sym_type] = ACTIONS(1700), + [anon_sym_union] = ACTIONS(1700), + [anon_sym_unsafe] = ACTIONS(1700), + [anon_sym_use] = ACTIONS(1700), + [anon_sym_while] = ACTIONS(1700), + [anon_sym_extern] = ACTIONS(1700), + [anon_sym_DOT_DOT] = ACTIONS(1698), + [anon_sym_yield] = ACTIONS(1700), + [anon_sym_move] = ACTIONS(1700), + [anon_sym_try] = ACTIONS(1700), + [sym_integer_literal] = ACTIONS(1698), + [aux_sym_string_literal_token1] = ACTIONS(1698), + [sym_char_literal] = ACTIONS(1698), + [anon_sym_true] = ACTIONS(1700), + [anon_sym_false] = ACTIONS(1700), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1700), + [sym_super] = ACTIONS(1700), + [sym_crate] = ACTIONS(1700), + [sym_metavariable] = ACTIONS(1698), + [sym_raw_string_literal] = ACTIONS(1698), + [sym_float_literal] = ACTIONS(1698), }, [480] = { [sym_line_comment] = STATE(480), [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1012), - [anon_sym_LPAREN] = ACTIONS(1010), - [anon_sym_LBRACK] = ACTIONS(1010), - [anon_sym_RBRACE] = ACTIONS(1010), - [anon_sym_PLUS] = ACTIONS(1012), - [anon_sym_STAR] = ACTIONS(1012), - [anon_sym_QMARK] = ACTIONS(1010), - [anon_sym_u8] = ACTIONS(1012), - [anon_sym_i8] = ACTIONS(1012), - [anon_sym_u16] = ACTIONS(1012), - [anon_sym_i16] = ACTIONS(1012), - [anon_sym_u32] = ACTIONS(1012), - [anon_sym_i32] = ACTIONS(1012), - [anon_sym_u64] = ACTIONS(1012), - [anon_sym_i64] = ACTIONS(1012), - [anon_sym_u128] = ACTIONS(1012), - [anon_sym_i128] = ACTIONS(1012), - [anon_sym_isize] = ACTIONS(1012), - [anon_sym_usize] = ACTIONS(1012), - [anon_sym_f32] = ACTIONS(1012), - [anon_sym_f64] = ACTIONS(1012), - [anon_sym_bool] = ACTIONS(1012), - [anon_sym_str] = ACTIONS(1012), - [anon_sym_char] = ACTIONS(1012), - [anon_sym_SLASH] = ACTIONS(1012), - [anon_sym__] = ACTIONS(1012), - [anon_sym_DASH] = ACTIONS(1012), - [anon_sym_EQ] = ACTIONS(1012), - [anon_sym_COMMA] = ACTIONS(1010), - [anon_sym_COLON_COLON] = ACTIONS(1010), - [anon_sym_DOT] = ACTIONS(1012), - [anon_sym_AMP] = ACTIONS(1012), - [anon_sym_POUND] = ACTIONS(1010), - [anon_sym_PERCENT] = ACTIONS(1012), - [anon_sym_CARET] = ACTIONS(1012), - [anon_sym_LT] = ACTIONS(1012), - [anon_sym_GT] = ACTIONS(1012), - [anon_sym_PIPE] = ACTIONS(1012), - [anon_sym_as] = ACTIONS(1012), - [anon_sym_const] = ACTIONS(1012), - [anon_sym_default] = ACTIONS(1012), - [anon_sym_static] = ACTIONS(1012), - [anon_sym_union] = ACTIONS(1012), - [anon_sym_ref] = ACTIONS(1012), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1010), - [sym_mutable_specifier] = ACTIONS(1012), - [anon_sym_DOT_DOT] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1010), - [anon_sym_AMP_AMP] = ACTIONS(1010), - [anon_sym_PIPE_PIPE] = ACTIONS(1010), - [anon_sym_EQ_EQ] = ACTIONS(1010), - [anon_sym_BANG_EQ] = ACTIONS(1010), - [anon_sym_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_EQ] = ACTIONS(1010), - [anon_sym_LT_LT] = ACTIONS(1012), - [anon_sym_GT_GT] = ACTIONS(1012), - [anon_sym_PLUS_EQ] = ACTIONS(1010), - [anon_sym_DASH_EQ] = ACTIONS(1010), - [anon_sym_STAR_EQ] = ACTIONS(1010), - [anon_sym_SLASH_EQ] = ACTIONS(1010), - [anon_sym_PERCENT_EQ] = ACTIONS(1010), - [anon_sym_AMP_EQ] = ACTIONS(1010), - [anon_sym_PIPE_EQ] = ACTIONS(1010), - [anon_sym_CARET_EQ] = ACTIONS(1010), - [anon_sym_LT_LT_EQ] = ACTIONS(1010), - [anon_sym_GT_GT_EQ] = ACTIONS(1010), - [anon_sym_move] = ACTIONS(1012), - [sym_integer_literal] = ACTIONS(1010), - [aux_sym_string_literal_token1] = ACTIONS(1010), - [sym_char_literal] = ACTIONS(1010), - [anon_sym_true] = ACTIONS(1012), - [anon_sym_false] = ACTIONS(1012), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1012), - [sym_super] = ACTIONS(1012), - [sym_crate] = ACTIONS(1012), - [sym_metavariable] = ACTIONS(1010), - [sym_raw_string_literal] = ACTIONS(1010), - [sym_float_literal] = ACTIONS(1010), + [ts_builtin_sym_end] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1704), + [anon_sym_SEMI] = ACTIONS(1702), + [anon_sym_macro_rules_BANG] = ACTIONS(1702), + [anon_sym_LPAREN] = ACTIONS(1702), + [anon_sym_LBRACK] = ACTIONS(1702), + [anon_sym_LBRACE] = ACTIONS(1702), + [anon_sym_RBRACE] = ACTIONS(1702), + [anon_sym_STAR] = ACTIONS(1702), + [anon_sym_u8] = ACTIONS(1704), + [anon_sym_i8] = ACTIONS(1704), + [anon_sym_u16] = ACTIONS(1704), + [anon_sym_i16] = ACTIONS(1704), + [anon_sym_u32] = ACTIONS(1704), + [anon_sym_i32] = ACTIONS(1704), + [anon_sym_u64] = ACTIONS(1704), + [anon_sym_i64] = ACTIONS(1704), + [anon_sym_u128] = ACTIONS(1704), + [anon_sym_i128] = ACTIONS(1704), + [anon_sym_isize] = ACTIONS(1704), + [anon_sym_usize] = ACTIONS(1704), + [anon_sym_f32] = ACTIONS(1704), + [anon_sym_f64] = ACTIONS(1704), + [anon_sym_bool] = ACTIONS(1704), + [anon_sym_str] = ACTIONS(1704), + [anon_sym_char] = ACTIONS(1704), + [anon_sym_DASH] = ACTIONS(1702), + [anon_sym_COLON_COLON] = ACTIONS(1702), + [anon_sym_BANG] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(1702), + [anon_sym_POUND] = ACTIONS(1702), + [anon_sym_LT] = ACTIONS(1702), + [anon_sym_PIPE] = ACTIONS(1702), + [anon_sym_SQUOTE] = ACTIONS(1704), + [anon_sym_async] = ACTIONS(1704), + [anon_sym_break] = ACTIONS(1704), + [anon_sym_const] = ACTIONS(1704), + [anon_sym_continue] = ACTIONS(1704), + [anon_sym_default] = ACTIONS(1704), + [anon_sym_enum] = ACTIONS(1704), + [anon_sym_fn] = ACTIONS(1704), + [anon_sym_for] = ACTIONS(1704), + [anon_sym_if] = ACTIONS(1704), + [anon_sym_impl] = ACTIONS(1704), + [anon_sym_let] = ACTIONS(1704), + [anon_sym_loop] = ACTIONS(1704), + [anon_sym_match] = ACTIONS(1704), + [anon_sym_mod] = ACTIONS(1704), + [anon_sym_pub] = ACTIONS(1704), + [anon_sym_return] = ACTIONS(1704), + [anon_sym_static] = ACTIONS(1704), + [anon_sym_struct] = ACTIONS(1704), + [anon_sym_trait] = ACTIONS(1704), + [anon_sym_type] = ACTIONS(1704), + [anon_sym_union] = ACTIONS(1704), + [anon_sym_unsafe] = ACTIONS(1704), + [anon_sym_use] = ACTIONS(1704), + [anon_sym_while] = ACTIONS(1704), + [anon_sym_extern] = ACTIONS(1704), + [anon_sym_DOT_DOT] = ACTIONS(1702), + [anon_sym_yield] = ACTIONS(1704), + [anon_sym_move] = ACTIONS(1704), + [anon_sym_try] = ACTIONS(1704), + [sym_integer_literal] = ACTIONS(1702), + [aux_sym_string_literal_token1] = ACTIONS(1702), + [sym_char_literal] = ACTIONS(1702), + [anon_sym_true] = ACTIONS(1704), + [anon_sym_false] = ACTIONS(1704), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1704), + [sym_super] = ACTIONS(1704), + [sym_crate] = ACTIONS(1704), + [sym_metavariable] = ACTIONS(1702), + [sym_raw_string_literal] = ACTIONS(1702), + [sym_float_literal] = ACTIONS(1702), }, [481] = { [sym_line_comment] = STATE(481), [sym_block_comment] = STATE(481), - [sym_identifier] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_STAR] = ACTIONS(954), - [anon_sym_QMARK] = ACTIONS(952), - [anon_sym_u8] = ACTIONS(954), - [anon_sym_i8] = ACTIONS(954), - [anon_sym_u16] = ACTIONS(954), - [anon_sym_i16] = ACTIONS(954), - [anon_sym_u32] = ACTIONS(954), - [anon_sym_i32] = ACTIONS(954), - [anon_sym_u64] = ACTIONS(954), - [anon_sym_i64] = ACTIONS(954), - [anon_sym_u128] = ACTIONS(954), - [anon_sym_i128] = ACTIONS(954), - [anon_sym_isize] = ACTIONS(954), - [anon_sym_usize] = ACTIONS(954), - [anon_sym_f32] = ACTIONS(954), - [anon_sym_f64] = ACTIONS(954), - [anon_sym_bool] = ACTIONS(954), - [anon_sym_str] = ACTIONS(954), - [anon_sym_char] = ACTIONS(954), - [anon_sym_SLASH] = ACTIONS(954), - [anon_sym__] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_EQ] = ACTIONS(954), - [anon_sym_COMMA] = ACTIONS(952), - [anon_sym_COLON_COLON] = ACTIONS(952), - [anon_sym_DOT] = ACTIONS(954), - [anon_sym_AMP] = ACTIONS(954), - [anon_sym_POUND] = ACTIONS(952), - [anon_sym_PERCENT] = ACTIONS(954), - [anon_sym_CARET] = ACTIONS(954), - [anon_sym_LT] = ACTIONS(954), - [anon_sym_GT] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_as] = ACTIONS(954), - [anon_sym_const] = ACTIONS(954), - [anon_sym_default] = ACTIONS(954), - [anon_sym_static] = ACTIONS(954), - [anon_sym_union] = ACTIONS(954), - [anon_sym_ref] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT] = ACTIONS(952), - [sym_mutable_specifier] = ACTIONS(954), - [anon_sym_DOT_DOT] = ACTIONS(954), - [anon_sym_DOT_DOT_EQ] = ACTIONS(952), - [anon_sym_AMP_AMP] = ACTIONS(952), - [anon_sym_PIPE_PIPE] = ACTIONS(952), - [anon_sym_EQ_EQ] = ACTIONS(952), - [anon_sym_BANG_EQ] = ACTIONS(952), - [anon_sym_LT_EQ] = ACTIONS(952), - [anon_sym_GT_EQ] = ACTIONS(952), - [anon_sym_LT_LT] = ACTIONS(954), - [anon_sym_GT_GT] = ACTIONS(954), - [anon_sym_PLUS_EQ] = ACTIONS(952), - [anon_sym_DASH_EQ] = ACTIONS(952), - [anon_sym_STAR_EQ] = ACTIONS(952), - [anon_sym_SLASH_EQ] = ACTIONS(952), - [anon_sym_PERCENT_EQ] = ACTIONS(952), - [anon_sym_AMP_EQ] = ACTIONS(952), - [anon_sym_PIPE_EQ] = ACTIONS(952), - [anon_sym_CARET_EQ] = ACTIONS(952), - [anon_sym_LT_LT_EQ] = ACTIONS(952), - [anon_sym_GT_GT_EQ] = ACTIONS(952), - [anon_sym_move] = ACTIONS(954), - [sym_integer_literal] = ACTIONS(952), - [aux_sym_string_literal_token1] = ACTIONS(952), - [sym_char_literal] = ACTIONS(952), - [anon_sym_true] = ACTIONS(954), - [anon_sym_false] = ACTIONS(954), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(954), - [sym_super] = ACTIONS(954), - [sym_crate] = ACTIONS(954), - [sym_metavariable] = ACTIONS(952), - [sym_raw_string_literal] = ACTIONS(952), - [sym_float_literal] = ACTIONS(952), + [ts_builtin_sym_end] = ACTIONS(1706), + [sym_identifier] = ACTIONS(1708), + [anon_sym_SEMI] = ACTIONS(1706), + [anon_sym_macro_rules_BANG] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1706), + [anon_sym_LBRACK] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1706), + [anon_sym_RBRACE] = ACTIONS(1706), + [anon_sym_STAR] = ACTIONS(1706), + [anon_sym_u8] = ACTIONS(1708), + [anon_sym_i8] = ACTIONS(1708), + [anon_sym_u16] = ACTIONS(1708), + [anon_sym_i16] = ACTIONS(1708), + [anon_sym_u32] = ACTIONS(1708), + [anon_sym_i32] = ACTIONS(1708), + [anon_sym_u64] = ACTIONS(1708), + [anon_sym_i64] = ACTIONS(1708), + [anon_sym_u128] = ACTIONS(1708), + [anon_sym_i128] = ACTIONS(1708), + [anon_sym_isize] = ACTIONS(1708), + [anon_sym_usize] = ACTIONS(1708), + [anon_sym_f32] = ACTIONS(1708), + [anon_sym_f64] = ACTIONS(1708), + [anon_sym_bool] = ACTIONS(1708), + [anon_sym_str] = ACTIONS(1708), + [anon_sym_char] = ACTIONS(1708), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_COLON_COLON] = ACTIONS(1706), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_AMP] = ACTIONS(1706), + [anon_sym_POUND] = ACTIONS(1706), + [anon_sym_LT] = ACTIONS(1706), + [anon_sym_PIPE] = ACTIONS(1706), + [anon_sym_SQUOTE] = ACTIONS(1708), + [anon_sym_async] = ACTIONS(1708), + [anon_sym_break] = ACTIONS(1708), + [anon_sym_const] = ACTIONS(1708), + [anon_sym_continue] = ACTIONS(1708), + [anon_sym_default] = ACTIONS(1708), + [anon_sym_enum] = ACTIONS(1708), + [anon_sym_fn] = ACTIONS(1708), + [anon_sym_for] = ACTIONS(1708), + [anon_sym_if] = ACTIONS(1708), + [anon_sym_impl] = ACTIONS(1708), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_loop] = ACTIONS(1708), + [anon_sym_match] = ACTIONS(1708), + [anon_sym_mod] = ACTIONS(1708), + [anon_sym_pub] = ACTIONS(1708), + [anon_sym_return] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_struct] = ACTIONS(1708), + [anon_sym_trait] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1708), + [anon_sym_union] = ACTIONS(1708), + [anon_sym_unsafe] = ACTIONS(1708), + [anon_sym_use] = ACTIONS(1708), + [anon_sym_while] = ACTIONS(1708), + [anon_sym_extern] = ACTIONS(1708), + [anon_sym_DOT_DOT] = ACTIONS(1706), + [anon_sym_yield] = ACTIONS(1708), + [anon_sym_move] = ACTIONS(1708), + [anon_sym_try] = ACTIONS(1708), + [sym_integer_literal] = ACTIONS(1706), + [aux_sym_string_literal_token1] = ACTIONS(1706), + [sym_char_literal] = ACTIONS(1706), + [anon_sym_true] = ACTIONS(1708), + [anon_sym_false] = ACTIONS(1708), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1708), + [sym_super] = ACTIONS(1708), + [sym_crate] = ACTIONS(1708), + [sym_metavariable] = ACTIONS(1706), + [sym_raw_string_literal] = ACTIONS(1706), + [sym_float_literal] = ACTIONS(1706), }, [482] = { [sym_line_comment] = STATE(482), [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_PLUS] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(976), - [anon_sym_QMARK] = ACTIONS(974), - [anon_sym_u8] = ACTIONS(976), - [anon_sym_i8] = ACTIONS(976), - [anon_sym_u16] = ACTIONS(976), - [anon_sym_i16] = ACTIONS(976), - [anon_sym_u32] = ACTIONS(976), - [anon_sym_i32] = ACTIONS(976), - [anon_sym_u64] = ACTIONS(976), - [anon_sym_i64] = ACTIONS(976), - [anon_sym_u128] = ACTIONS(976), - [anon_sym_i128] = ACTIONS(976), - [anon_sym_isize] = ACTIONS(976), - [anon_sym_usize] = ACTIONS(976), - [anon_sym_f32] = ACTIONS(976), - [anon_sym_f64] = ACTIONS(976), - [anon_sym_bool] = ACTIONS(976), - [anon_sym_str] = ACTIONS(976), - [anon_sym_char] = ACTIONS(976), - [anon_sym_SLASH] = ACTIONS(976), - [anon_sym__] = ACTIONS(976), - [anon_sym_DASH] = ACTIONS(976), - [anon_sym_EQ] = ACTIONS(976), - [anon_sym_COMMA] = ACTIONS(974), - [anon_sym_COLON_COLON] = ACTIONS(974), - [anon_sym_DOT] = ACTIONS(976), - [anon_sym_AMP] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(974), - [anon_sym_PERCENT] = ACTIONS(976), - [anon_sym_CARET] = ACTIONS(976), - [anon_sym_LT] = ACTIONS(976), - [anon_sym_GT] = ACTIONS(976), - [anon_sym_PIPE] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [anon_sym_default] = ACTIONS(976), - [anon_sym_static] = ACTIONS(976), - [anon_sym_union] = ACTIONS(976), - [anon_sym_ref] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT] = ACTIONS(974), - [sym_mutable_specifier] = ACTIONS(976), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(974), - [anon_sym_AMP_AMP] = ACTIONS(974), - [anon_sym_PIPE_PIPE] = ACTIONS(974), - [anon_sym_EQ_EQ] = ACTIONS(974), - [anon_sym_BANG_EQ] = ACTIONS(974), - [anon_sym_LT_EQ] = ACTIONS(974), - [anon_sym_GT_EQ] = ACTIONS(974), - [anon_sym_LT_LT] = ACTIONS(976), - [anon_sym_GT_GT] = ACTIONS(976), - [anon_sym_PLUS_EQ] = ACTIONS(974), - [anon_sym_DASH_EQ] = ACTIONS(974), - [anon_sym_STAR_EQ] = ACTIONS(974), - [anon_sym_SLASH_EQ] = ACTIONS(974), - [anon_sym_PERCENT_EQ] = ACTIONS(974), - [anon_sym_AMP_EQ] = ACTIONS(974), - [anon_sym_PIPE_EQ] = ACTIONS(974), - [anon_sym_CARET_EQ] = ACTIONS(974), - [anon_sym_LT_LT_EQ] = ACTIONS(974), - [anon_sym_GT_GT_EQ] = ACTIONS(974), - [anon_sym_move] = ACTIONS(976), - [sym_integer_literal] = ACTIONS(974), - [aux_sym_string_literal_token1] = ACTIONS(974), - [sym_char_literal] = ACTIONS(974), - [anon_sym_true] = ACTIONS(976), - [anon_sym_false] = ACTIONS(976), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(976), - [sym_super] = ACTIONS(976), - [sym_crate] = ACTIONS(976), - [sym_metavariable] = ACTIONS(974), - [sym_raw_string_literal] = ACTIONS(974), - [sym_float_literal] = ACTIONS(974), + [ts_builtin_sym_end] = ACTIONS(1710), + [sym_identifier] = ACTIONS(1712), + [anon_sym_SEMI] = ACTIONS(1710), + [anon_sym_macro_rules_BANG] = ACTIONS(1710), + [anon_sym_LPAREN] = ACTIONS(1710), + [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1710), + [anon_sym_RBRACE] = ACTIONS(1710), + [anon_sym_STAR] = ACTIONS(1710), + [anon_sym_u8] = ACTIONS(1712), + [anon_sym_i8] = ACTIONS(1712), + [anon_sym_u16] = ACTIONS(1712), + [anon_sym_i16] = ACTIONS(1712), + [anon_sym_u32] = ACTIONS(1712), + [anon_sym_i32] = ACTIONS(1712), + [anon_sym_u64] = ACTIONS(1712), + [anon_sym_i64] = ACTIONS(1712), + [anon_sym_u128] = ACTIONS(1712), + [anon_sym_i128] = ACTIONS(1712), + [anon_sym_isize] = ACTIONS(1712), + [anon_sym_usize] = ACTIONS(1712), + [anon_sym_f32] = ACTIONS(1712), + [anon_sym_f64] = ACTIONS(1712), + [anon_sym_bool] = ACTIONS(1712), + [anon_sym_str] = ACTIONS(1712), + [anon_sym_char] = ACTIONS(1712), + [anon_sym_DASH] = ACTIONS(1710), + [anon_sym_COLON_COLON] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1710), + [anon_sym_AMP] = ACTIONS(1710), + [anon_sym_POUND] = ACTIONS(1710), + [anon_sym_LT] = ACTIONS(1710), + [anon_sym_PIPE] = ACTIONS(1710), + [anon_sym_SQUOTE] = ACTIONS(1712), + [anon_sym_async] = ACTIONS(1712), + [anon_sym_break] = ACTIONS(1712), + [anon_sym_const] = ACTIONS(1712), + [anon_sym_continue] = ACTIONS(1712), + [anon_sym_default] = ACTIONS(1712), + [anon_sym_enum] = ACTIONS(1712), + [anon_sym_fn] = ACTIONS(1712), + [anon_sym_for] = ACTIONS(1712), + [anon_sym_if] = ACTIONS(1712), + [anon_sym_impl] = ACTIONS(1712), + [anon_sym_let] = ACTIONS(1712), + [anon_sym_loop] = ACTIONS(1712), + [anon_sym_match] = ACTIONS(1712), + [anon_sym_mod] = ACTIONS(1712), + [anon_sym_pub] = ACTIONS(1712), + [anon_sym_return] = ACTIONS(1712), + [anon_sym_static] = ACTIONS(1712), + [anon_sym_struct] = ACTIONS(1712), + [anon_sym_trait] = ACTIONS(1712), + [anon_sym_type] = ACTIONS(1712), + [anon_sym_union] = ACTIONS(1712), + [anon_sym_unsafe] = ACTIONS(1712), + [anon_sym_use] = ACTIONS(1712), + [anon_sym_while] = ACTIONS(1712), + [anon_sym_extern] = ACTIONS(1712), + [anon_sym_DOT_DOT] = ACTIONS(1710), + [anon_sym_yield] = ACTIONS(1712), + [anon_sym_move] = ACTIONS(1712), + [anon_sym_try] = ACTIONS(1712), + [sym_integer_literal] = ACTIONS(1710), + [aux_sym_string_literal_token1] = ACTIONS(1710), + [sym_char_literal] = ACTIONS(1710), + [anon_sym_true] = ACTIONS(1712), + [anon_sym_false] = ACTIONS(1712), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1712), + [sym_super] = ACTIONS(1712), + [sym_crate] = ACTIONS(1712), + [sym_metavariable] = ACTIONS(1710), + [sym_raw_string_literal] = ACTIONS(1710), + [sym_float_literal] = ACTIONS(1710), }, [483] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_match_arm] = STATE(1065), - [sym_last_match_arm] = STATE(3325), - [sym_match_pattern] = STATE(3288), - [sym_const_block] = STATE(2719), - [sym_closure_expression] = STATE(3210), - [sym_closure_parameters] = STATE(143), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), [sym_line_comment] = STATE(483), [sym_block_comment] = STATE(483), - [aux_sym_enum_variant_list_repeat1] = STATE(769), - [aux_sym_match_block_repeat1] = STATE(492), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_RBRACE] = ACTIONS(1594), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [ts_builtin_sym_end] = ACTIONS(1714), + [sym_identifier] = ACTIONS(1716), + [anon_sym_SEMI] = ACTIONS(1714), + [anon_sym_macro_rules_BANG] = ACTIONS(1714), + [anon_sym_LPAREN] = ACTIONS(1714), + [anon_sym_LBRACK] = ACTIONS(1714), + [anon_sym_LBRACE] = ACTIONS(1714), + [anon_sym_RBRACE] = ACTIONS(1714), + [anon_sym_STAR] = ACTIONS(1714), + [anon_sym_u8] = ACTIONS(1716), + [anon_sym_i8] = ACTIONS(1716), + [anon_sym_u16] = ACTIONS(1716), + [anon_sym_i16] = ACTIONS(1716), + [anon_sym_u32] = ACTIONS(1716), + [anon_sym_i32] = ACTIONS(1716), + [anon_sym_u64] = ACTIONS(1716), + [anon_sym_i64] = ACTIONS(1716), + [anon_sym_u128] = ACTIONS(1716), + [anon_sym_i128] = ACTIONS(1716), + [anon_sym_isize] = ACTIONS(1716), + [anon_sym_usize] = ACTIONS(1716), + [anon_sym_f32] = ACTIONS(1716), + [anon_sym_f64] = ACTIONS(1716), + [anon_sym_bool] = ACTIONS(1716), + [anon_sym_str] = ACTIONS(1716), + [anon_sym_char] = ACTIONS(1716), + [anon_sym_DASH] = ACTIONS(1714), + [anon_sym_COLON_COLON] = ACTIONS(1714), + [anon_sym_BANG] = ACTIONS(1714), + [anon_sym_AMP] = ACTIONS(1714), + [anon_sym_POUND] = ACTIONS(1714), + [anon_sym_LT] = ACTIONS(1714), + [anon_sym_PIPE] = ACTIONS(1714), + [anon_sym_SQUOTE] = ACTIONS(1716), + [anon_sym_async] = ACTIONS(1716), + [anon_sym_break] = ACTIONS(1716), + [anon_sym_const] = ACTIONS(1716), + [anon_sym_continue] = ACTIONS(1716), + [anon_sym_default] = ACTIONS(1716), + [anon_sym_enum] = ACTIONS(1716), + [anon_sym_fn] = ACTIONS(1716), + [anon_sym_for] = ACTIONS(1716), + [anon_sym_if] = ACTIONS(1716), + [anon_sym_impl] = ACTIONS(1716), + [anon_sym_let] = ACTIONS(1716), + [anon_sym_loop] = ACTIONS(1716), + [anon_sym_match] = ACTIONS(1716), + [anon_sym_mod] = ACTIONS(1716), + [anon_sym_pub] = ACTIONS(1716), + [anon_sym_return] = ACTIONS(1716), + [anon_sym_static] = ACTIONS(1716), + [anon_sym_struct] = ACTIONS(1716), + [anon_sym_trait] = ACTIONS(1716), + [anon_sym_type] = ACTIONS(1716), + [anon_sym_union] = ACTIONS(1716), + [anon_sym_unsafe] = ACTIONS(1716), + [anon_sym_use] = ACTIONS(1716), + [anon_sym_while] = ACTIONS(1716), + [anon_sym_extern] = ACTIONS(1716), + [anon_sym_DOT_DOT] = ACTIONS(1714), + [anon_sym_yield] = ACTIONS(1716), + [anon_sym_move] = ACTIONS(1716), + [anon_sym_try] = ACTIONS(1716), + [sym_integer_literal] = ACTIONS(1714), + [aux_sym_string_literal_token1] = ACTIONS(1714), + [sym_char_literal] = ACTIONS(1714), + [anon_sym_true] = ACTIONS(1716), + [anon_sym_false] = ACTIONS(1716), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1716), + [sym_super] = ACTIONS(1716), + [sym_crate] = ACTIONS(1716), + [sym_metavariable] = ACTIONS(1714), + [sym_raw_string_literal] = ACTIONS(1714), + [sym_float_literal] = ACTIONS(1714), }, [484] = { [sym_line_comment] = STATE(484), [sym_block_comment] = STATE(484), - [sym_identifier] = ACTIONS(902), - [anon_sym_LPAREN] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(900), - [anon_sym_RBRACE] = ACTIONS(900), - [anon_sym_PLUS] = ACTIONS(902), - [anon_sym_STAR] = ACTIONS(902), - [anon_sym_QMARK] = ACTIONS(900), - [anon_sym_u8] = ACTIONS(902), - [anon_sym_i8] = ACTIONS(902), - [anon_sym_u16] = ACTIONS(902), - [anon_sym_i16] = ACTIONS(902), - [anon_sym_u32] = ACTIONS(902), - [anon_sym_i32] = ACTIONS(902), - [anon_sym_u64] = ACTIONS(902), - [anon_sym_i64] = ACTIONS(902), - [anon_sym_u128] = ACTIONS(902), - [anon_sym_i128] = ACTIONS(902), - [anon_sym_isize] = ACTIONS(902), - [anon_sym_usize] = ACTIONS(902), - [anon_sym_f32] = ACTIONS(902), - [anon_sym_f64] = ACTIONS(902), - [anon_sym_bool] = ACTIONS(902), - [anon_sym_str] = ACTIONS(902), - [anon_sym_char] = ACTIONS(902), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym__] = ACTIONS(902), - [anon_sym_DASH] = ACTIONS(902), - [anon_sym_EQ] = ACTIONS(902), - [anon_sym_COMMA] = ACTIONS(900), - [anon_sym_COLON_COLON] = ACTIONS(900), - [anon_sym_DOT] = ACTIONS(902), - [anon_sym_AMP] = ACTIONS(902), - [anon_sym_POUND] = ACTIONS(900), - [anon_sym_PERCENT] = ACTIONS(902), - [anon_sym_CARET] = ACTIONS(902), - [anon_sym_LT] = ACTIONS(902), - [anon_sym_GT] = ACTIONS(902), - [anon_sym_PIPE] = ACTIONS(902), - [anon_sym_as] = ACTIONS(902), - [anon_sym_const] = ACTIONS(902), - [anon_sym_default] = ACTIONS(902), - [anon_sym_static] = ACTIONS(902), - [anon_sym_union] = ACTIONS(902), - [anon_sym_ref] = ACTIONS(902), - [anon_sym_DOT_DOT_DOT] = ACTIONS(900), - [sym_mutable_specifier] = ACTIONS(902), - [anon_sym_DOT_DOT] = ACTIONS(902), - [anon_sym_DOT_DOT_EQ] = ACTIONS(900), - [anon_sym_AMP_AMP] = ACTIONS(900), - [anon_sym_PIPE_PIPE] = ACTIONS(900), - [anon_sym_EQ_EQ] = ACTIONS(900), - [anon_sym_BANG_EQ] = ACTIONS(900), - [anon_sym_LT_EQ] = ACTIONS(900), - [anon_sym_GT_EQ] = ACTIONS(900), - [anon_sym_LT_LT] = ACTIONS(902), - [anon_sym_GT_GT] = ACTIONS(902), - [anon_sym_PLUS_EQ] = ACTIONS(900), - [anon_sym_DASH_EQ] = ACTIONS(900), - [anon_sym_STAR_EQ] = ACTIONS(900), - [anon_sym_SLASH_EQ] = ACTIONS(900), - [anon_sym_PERCENT_EQ] = ACTIONS(900), - [anon_sym_AMP_EQ] = ACTIONS(900), - [anon_sym_PIPE_EQ] = ACTIONS(900), - [anon_sym_CARET_EQ] = ACTIONS(900), - [anon_sym_LT_LT_EQ] = ACTIONS(900), - [anon_sym_GT_GT_EQ] = ACTIONS(900), - [anon_sym_move] = ACTIONS(902), - [sym_integer_literal] = ACTIONS(900), - [aux_sym_string_literal_token1] = ACTIONS(900), - [sym_char_literal] = ACTIONS(900), - [anon_sym_true] = ACTIONS(902), - [anon_sym_false] = ACTIONS(902), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(902), - [sym_super] = ACTIONS(902), - [sym_crate] = ACTIONS(902), - [sym_metavariable] = ACTIONS(900), - [sym_raw_string_literal] = ACTIONS(900), - [sym_float_literal] = ACTIONS(900), + [ts_builtin_sym_end] = ACTIONS(1718), + [sym_identifier] = ACTIONS(1720), + [anon_sym_SEMI] = ACTIONS(1718), + [anon_sym_macro_rules_BANG] = ACTIONS(1718), + [anon_sym_LPAREN] = ACTIONS(1718), + [anon_sym_LBRACK] = ACTIONS(1718), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_RBRACE] = ACTIONS(1718), + [anon_sym_STAR] = ACTIONS(1718), + [anon_sym_u8] = ACTIONS(1720), + [anon_sym_i8] = ACTIONS(1720), + [anon_sym_u16] = ACTIONS(1720), + [anon_sym_i16] = ACTIONS(1720), + [anon_sym_u32] = ACTIONS(1720), + [anon_sym_i32] = ACTIONS(1720), + [anon_sym_u64] = ACTIONS(1720), + [anon_sym_i64] = ACTIONS(1720), + [anon_sym_u128] = ACTIONS(1720), + [anon_sym_i128] = ACTIONS(1720), + [anon_sym_isize] = ACTIONS(1720), + [anon_sym_usize] = ACTIONS(1720), + [anon_sym_f32] = ACTIONS(1720), + [anon_sym_f64] = ACTIONS(1720), + [anon_sym_bool] = ACTIONS(1720), + [anon_sym_str] = ACTIONS(1720), + [anon_sym_char] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1718), + [anon_sym_COLON_COLON] = ACTIONS(1718), + [anon_sym_BANG] = ACTIONS(1718), + [anon_sym_AMP] = ACTIONS(1718), + [anon_sym_POUND] = ACTIONS(1718), + [anon_sym_LT] = ACTIONS(1718), + [anon_sym_PIPE] = ACTIONS(1718), + [anon_sym_SQUOTE] = ACTIONS(1720), + [anon_sym_async] = ACTIONS(1720), + [anon_sym_break] = ACTIONS(1720), + [anon_sym_const] = ACTIONS(1720), + [anon_sym_continue] = ACTIONS(1720), + [anon_sym_default] = ACTIONS(1720), + [anon_sym_enum] = ACTIONS(1720), + [anon_sym_fn] = ACTIONS(1720), + [anon_sym_for] = ACTIONS(1720), + [anon_sym_if] = ACTIONS(1720), + [anon_sym_impl] = ACTIONS(1720), + [anon_sym_let] = ACTIONS(1720), + [anon_sym_loop] = ACTIONS(1720), + [anon_sym_match] = ACTIONS(1720), + [anon_sym_mod] = ACTIONS(1720), + [anon_sym_pub] = ACTIONS(1720), + [anon_sym_return] = ACTIONS(1720), + [anon_sym_static] = ACTIONS(1720), + [anon_sym_struct] = ACTIONS(1720), + [anon_sym_trait] = ACTIONS(1720), + [anon_sym_type] = ACTIONS(1720), + [anon_sym_union] = ACTIONS(1720), + [anon_sym_unsafe] = ACTIONS(1720), + [anon_sym_use] = ACTIONS(1720), + [anon_sym_while] = ACTIONS(1720), + [anon_sym_extern] = ACTIONS(1720), + [anon_sym_DOT_DOT] = ACTIONS(1718), + [anon_sym_yield] = ACTIONS(1720), + [anon_sym_move] = ACTIONS(1720), + [anon_sym_try] = ACTIONS(1720), + [sym_integer_literal] = ACTIONS(1718), + [aux_sym_string_literal_token1] = ACTIONS(1718), + [sym_char_literal] = ACTIONS(1718), + [anon_sym_true] = ACTIONS(1720), + [anon_sym_false] = ACTIONS(1720), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1720), + [sym_super] = ACTIONS(1720), + [sym_crate] = ACTIONS(1720), + [sym_metavariable] = ACTIONS(1718), + [sym_raw_string_literal] = ACTIONS(1718), + [sym_float_literal] = ACTIONS(1718), }, [485] = { [sym_line_comment] = STATE(485), [sym_block_comment] = STATE(485), - [sym_identifier] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(940), - [anon_sym_LBRACK] = ACTIONS(940), - [anon_sym_RBRACE] = ACTIONS(940), - [anon_sym_PLUS] = ACTIONS(942), - [anon_sym_STAR] = ACTIONS(942), - [anon_sym_QMARK] = ACTIONS(940), - [anon_sym_u8] = ACTIONS(942), - [anon_sym_i8] = ACTIONS(942), - [anon_sym_u16] = ACTIONS(942), - [anon_sym_i16] = ACTIONS(942), - [anon_sym_u32] = ACTIONS(942), - [anon_sym_i32] = ACTIONS(942), - [anon_sym_u64] = ACTIONS(942), - [anon_sym_i64] = ACTIONS(942), - [anon_sym_u128] = ACTIONS(942), - [anon_sym_i128] = ACTIONS(942), - [anon_sym_isize] = ACTIONS(942), - [anon_sym_usize] = ACTIONS(942), - [anon_sym_f32] = ACTIONS(942), - [anon_sym_f64] = ACTIONS(942), - [anon_sym_bool] = ACTIONS(942), - [anon_sym_str] = ACTIONS(942), - [anon_sym_char] = ACTIONS(942), - [anon_sym_SLASH] = ACTIONS(942), - [anon_sym__] = ACTIONS(942), - [anon_sym_DASH] = ACTIONS(942), - [anon_sym_EQ] = ACTIONS(942), - [anon_sym_COMMA] = ACTIONS(940), - [anon_sym_COLON_COLON] = ACTIONS(940), - [anon_sym_DOT] = ACTIONS(942), - [anon_sym_AMP] = ACTIONS(942), - [anon_sym_POUND] = ACTIONS(940), - [anon_sym_PERCENT] = ACTIONS(942), - [anon_sym_CARET] = ACTIONS(942), - [anon_sym_LT] = ACTIONS(942), - [anon_sym_GT] = ACTIONS(942), - [anon_sym_PIPE] = ACTIONS(942), - [anon_sym_as] = ACTIONS(942), - [anon_sym_const] = ACTIONS(942), - [anon_sym_default] = ACTIONS(942), - [anon_sym_static] = ACTIONS(942), - [anon_sym_union] = ACTIONS(942), - [anon_sym_ref] = ACTIONS(942), - [anon_sym_DOT_DOT_DOT] = ACTIONS(940), - [sym_mutable_specifier] = ACTIONS(942), - [anon_sym_DOT_DOT] = ACTIONS(942), - [anon_sym_DOT_DOT_EQ] = ACTIONS(940), - [anon_sym_AMP_AMP] = ACTIONS(940), - [anon_sym_PIPE_PIPE] = ACTIONS(940), - [anon_sym_EQ_EQ] = ACTIONS(940), - [anon_sym_BANG_EQ] = ACTIONS(940), - [anon_sym_LT_EQ] = ACTIONS(940), - [anon_sym_GT_EQ] = ACTIONS(940), - [anon_sym_LT_LT] = ACTIONS(942), - [anon_sym_GT_GT] = ACTIONS(942), - [anon_sym_PLUS_EQ] = ACTIONS(940), - [anon_sym_DASH_EQ] = ACTIONS(940), - [anon_sym_STAR_EQ] = ACTIONS(940), - [anon_sym_SLASH_EQ] = ACTIONS(940), - [anon_sym_PERCENT_EQ] = ACTIONS(940), - [anon_sym_AMP_EQ] = ACTIONS(940), - [anon_sym_PIPE_EQ] = ACTIONS(940), - [anon_sym_CARET_EQ] = ACTIONS(940), - [anon_sym_LT_LT_EQ] = ACTIONS(940), - [anon_sym_GT_GT_EQ] = ACTIONS(940), - [anon_sym_move] = ACTIONS(942), - [sym_integer_literal] = ACTIONS(940), - [aux_sym_string_literal_token1] = ACTIONS(940), - [sym_char_literal] = ACTIONS(940), - [anon_sym_true] = ACTIONS(942), - [anon_sym_false] = ACTIONS(942), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(942), - [sym_super] = ACTIONS(942), - [sym_crate] = ACTIONS(942), - [sym_metavariable] = ACTIONS(940), - [sym_raw_string_literal] = ACTIONS(940), - [sym_float_literal] = ACTIONS(940), + [ts_builtin_sym_end] = ACTIONS(1722), + [sym_identifier] = ACTIONS(1724), + [anon_sym_SEMI] = ACTIONS(1722), + [anon_sym_macro_rules_BANG] = ACTIONS(1722), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_LBRACE] = ACTIONS(1722), + [anon_sym_RBRACE] = ACTIONS(1722), + [anon_sym_STAR] = ACTIONS(1722), + [anon_sym_u8] = ACTIONS(1724), + [anon_sym_i8] = ACTIONS(1724), + [anon_sym_u16] = ACTIONS(1724), + [anon_sym_i16] = ACTIONS(1724), + [anon_sym_u32] = ACTIONS(1724), + [anon_sym_i32] = ACTIONS(1724), + [anon_sym_u64] = ACTIONS(1724), + [anon_sym_i64] = ACTIONS(1724), + [anon_sym_u128] = ACTIONS(1724), + [anon_sym_i128] = ACTIONS(1724), + [anon_sym_isize] = ACTIONS(1724), + [anon_sym_usize] = ACTIONS(1724), + [anon_sym_f32] = ACTIONS(1724), + [anon_sym_f64] = ACTIONS(1724), + [anon_sym_bool] = ACTIONS(1724), + [anon_sym_str] = ACTIONS(1724), + [anon_sym_char] = ACTIONS(1724), + [anon_sym_DASH] = ACTIONS(1722), + [anon_sym_COLON_COLON] = ACTIONS(1722), + [anon_sym_BANG] = ACTIONS(1722), + [anon_sym_AMP] = ACTIONS(1722), + [anon_sym_POUND] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1722), + [anon_sym_PIPE] = ACTIONS(1722), + [anon_sym_SQUOTE] = ACTIONS(1724), + [anon_sym_async] = ACTIONS(1724), + [anon_sym_break] = ACTIONS(1724), + [anon_sym_const] = ACTIONS(1724), + [anon_sym_continue] = ACTIONS(1724), + [anon_sym_default] = ACTIONS(1724), + [anon_sym_enum] = ACTIONS(1724), + [anon_sym_fn] = ACTIONS(1724), + [anon_sym_for] = ACTIONS(1724), + [anon_sym_if] = ACTIONS(1724), + [anon_sym_impl] = ACTIONS(1724), + [anon_sym_let] = ACTIONS(1724), + [anon_sym_loop] = ACTIONS(1724), + [anon_sym_match] = ACTIONS(1724), + [anon_sym_mod] = ACTIONS(1724), + [anon_sym_pub] = ACTIONS(1724), + [anon_sym_return] = ACTIONS(1724), + [anon_sym_static] = ACTIONS(1724), + [anon_sym_struct] = ACTIONS(1724), + [anon_sym_trait] = ACTIONS(1724), + [anon_sym_type] = ACTIONS(1724), + [anon_sym_union] = ACTIONS(1724), + [anon_sym_unsafe] = ACTIONS(1724), + [anon_sym_use] = ACTIONS(1724), + [anon_sym_while] = ACTIONS(1724), + [anon_sym_extern] = ACTIONS(1724), + [anon_sym_DOT_DOT] = ACTIONS(1722), + [anon_sym_yield] = ACTIONS(1724), + [anon_sym_move] = ACTIONS(1724), + [anon_sym_try] = ACTIONS(1724), + [sym_integer_literal] = ACTIONS(1722), + [aux_sym_string_literal_token1] = ACTIONS(1722), + [sym_char_literal] = ACTIONS(1722), + [anon_sym_true] = ACTIONS(1724), + [anon_sym_false] = ACTIONS(1724), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1724), + [sym_super] = ACTIONS(1724), + [sym_crate] = ACTIONS(1724), + [sym_metavariable] = ACTIONS(1722), + [sym_raw_string_literal] = ACTIONS(1722), + [sym_float_literal] = ACTIONS(1722), }, [486] = { [sym_line_comment] = STATE(486), [sym_block_comment] = STATE(486), - [sym_identifier] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_STAR] = ACTIONS(992), - [anon_sym_QMARK] = ACTIONS(990), - [anon_sym_u8] = ACTIONS(1596), - [anon_sym_i8] = ACTIONS(1596), - [anon_sym_u16] = ACTIONS(1596), - [anon_sym_i16] = ACTIONS(1596), - [anon_sym_u32] = ACTIONS(1596), - [anon_sym_i32] = ACTIONS(1596), - [anon_sym_u64] = ACTIONS(1596), - [anon_sym_i64] = ACTIONS(1596), - [anon_sym_u128] = ACTIONS(1596), - [anon_sym_i128] = ACTIONS(1596), - [anon_sym_isize] = ACTIONS(1596), - [anon_sym_usize] = ACTIONS(1596), - [anon_sym_f32] = ACTIONS(1596), - [anon_sym_f64] = ACTIONS(1596), - [anon_sym_bool] = ACTIONS(1596), - [anon_sym_str] = ACTIONS(1596), - [anon_sym_char] = ACTIONS(1596), - [anon_sym_SLASH] = ACTIONS(992), - [anon_sym__] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_EQ] = ACTIONS(992), - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_COLON_COLON] = ACTIONS(1598), - [anon_sym_DOT] = ACTIONS(992), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_PERCENT] = ACTIONS(992), - [anon_sym_CARET] = ACTIONS(992), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_GT] = ACTIONS(992), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_as] = ACTIONS(992), - [anon_sym_const] = ACTIONS(1596), - [anon_sym_default] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_union] = ACTIONS(1596), - [anon_sym_ref] = ACTIONS(1596), - [anon_sym_DOT_DOT_DOT] = ACTIONS(990), - [sym_mutable_specifier] = ACTIONS(1596), - [anon_sym_DOT_DOT] = ACTIONS(1596), - [anon_sym_DOT_DOT_EQ] = ACTIONS(990), - [anon_sym_AMP_AMP] = ACTIONS(990), - [anon_sym_PIPE_PIPE] = ACTIONS(990), - [anon_sym_EQ_EQ] = ACTIONS(990), - [anon_sym_BANG_EQ] = ACTIONS(990), - [anon_sym_LT_EQ] = ACTIONS(990), - [anon_sym_GT_EQ] = ACTIONS(990), - [anon_sym_LT_LT] = ACTIONS(992), - [anon_sym_GT_GT] = ACTIONS(992), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PERCENT_EQ] = ACTIONS(990), - [anon_sym_AMP_EQ] = ACTIONS(990), - [anon_sym_PIPE_EQ] = ACTIONS(990), - [anon_sym_CARET_EQ] = ACTIONS(990), - [anon_sym_LT_LT_EQ] = ACTIONS(990), - [anon_sym_GT_GT_EQ] = ACTIONS(990), - [anon_sym_move] = ACTIONS(1596), - [sym_integer_literal] = ACTIONS(1598), - [aux_sym_string_literal_token1] = ACTIONS(1598), - [sym_char_literal] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1596), - [sym_super] = ACTIONS(1596), - [sym_crate] = ACTIONS(1596), - [sym_metavariable] = ACTIONS(1598), - [sym_raw_string_literal] = ACTIONS(1598), - [sym_float_literal] = ACTIONS(1598), + [ts_builtin_sym_end] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1728), + [anon_sym_SEMI] = ACTIONS(1726), + [anon_sym_macro_rules_BANG] = ACTIONS(1726), + [anon_sym_LPAREN] = ACTIONS(1726), + [anon_sym_LBRACK] = ACTIONS(1726), + [anon_sym_LBRACE] = ACTIONS(1726), + [anon_sym_RBRACE] = ACTIONS(1726), + [anon_sym_STAR] = ACTIONS(1726), + [anon_sym_u8] = ACTIONS(1728), + [anon_sym_i8] = ACTIONS(1728), + [anon_sym_u16] = ACTIONS(1728), + [anon_sym_i16] = ACTIONS(1728), + [anon_sym_u32] = ACTIONS(1728), + [anon_sym_i32] = ACTIONS(1728), + [anon_sym_u64] = ACTIONS(1728), + [anon_sym_i64] = ACTIONS(1728), + [anon_sym_u128] = ACTIONS(1728), + [anon_sym_i128] = ACTIONS(1728), + [anon_sym_isize] = ACTIONS(1728), + [anon_sym_usize] = ACTIONS(1728), + [anon_sym_f32] = ACTIONS(1728), + [anon_sym_f64] = ACTIONS(1728), + [anon_sym_bool] = ACTIONS(1728), + [anon_sym_str] = ACTIONS(1728), + [anon_sym_char] = ACTIONS(1728), + [anon_sym_DASH] = ACTIONS(1726), + [anon_sym_COLON_COLON] = ACTIONS(1726), + [anon_sym_BANG] = ACTIONS(1726), + [anon_sym_AMP] = ACTIONS(1726), + [anon_sym_POUND] = ACTIONS(1726), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_PIPE] = ACTIONS(1726), + [anon_sym_SQUOTE] = ACTIONS(1728), + [anon_sym_async] = ACTIONS(1728), + [anon_sym_break] = ACTIONS(1728), + [anon_sym_const] = ACTIONS(1728), + [anon_sym_continue] = ACTIONS(1728), + [anon_sym_default] = ACTIONS(1728), + [anon_sym_enum] = ACTIONS(1728), + [anon_sym_fn] = ACTIONS(1728), + [anon_sym_for] = ACTIONS(1728), + [anon_sym_if] = ACTIONS(1728), + [anon_sym_impl] = ACTIONS(1728), + [anon_sym_let] = ACTIONS(1728), + [anon_sym_loop] = ACTIONS(1728), + [anon_sym_match] = ACTIONS(1728), + [anon_sym_mod] = ACTIONS(1728), + [anon_sym_pub] = ACTIONS(1728), + [anon_sym_return] = ACTIONS(1728), + [anon_sym_static] = ACTIONS(1728), + [anon_sym_struct] = ACTIONS(1728), + [anon_sym_trait] = ACTIONS(1728), + [anon_sym_type] = ACTIONS(1728), + [anon_sym_union] = ACTIONS(1728), + [anon_sym_unsafe] = ACTIONS(1728), + [anon_sym_use] = ACTIONS(1728), + [anon_sym_while] = ACTIONS(1728), + [anon_sym_extern] = ACTIONS(1728), + [anon_sym_DOT_DOT] = ACTIONS(1726), + [anon_sym_yield] = ACTIONS(1728), + [anon_sym_move] = ACTIONS(1728), + [anon_sym_try] = ACTIONS(1728), + [sym_integer_literal] = ACTIONS(1726), + [aux_sym_string_literal_token1] = ACTIONS(1726), + [sym_char_literal] = ACTIONS(1726), + [anon_sym_true] = ACTIONS(1728), + [anon_sym_false] = ACTIONS(1728), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1728), + [sym_super] = ACTIONS(1728), + [sym_crate] = ACTIONS(1728), + [sym_metavariable] = ACTIONS(1726), + [sym_raw_string_literal] = ACTIONS(1726), + [sym_float_literal] = ACTIONS(1726), }, [487] = { [sym_line_comment] = STATE(487), [sym_block_comment] = STATE(487), - [sym_identifier] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(936), - [anon_sym_RBRACE] = ACTIONS(936), - [anon_sym_PLUS] = ACTIONS(938), - [anon_sym_STAR] = ACTIONS(938), - [anon_sym_QMARK] = ACTIONS(936), - [anon_sym_u8] = ACTIONS(938), - [anon_sym_i8] = ACTIONS(938), - [anon_sym_u16] = ACTIONS(938), - [anon_sym_i16] = ACTIONS(938), - [anon_sym_u32] = ACTIONS(938), - [anon_sym_i32] = ACTIONS(938), - [anon_sym_u64] = ACTIONS(938), - [anon_sym_i64] = ACTIONS(938), - [anon_sym_u128] = ACTIONS(938), - [anon_sym_i128] = ACTIONS(938), - [anon_sym_isize] = ACTIONS(938), - [anon_sym_usize] = ACTIONS(938), - [anon_sym_f32] = ACTIONS(938), - [anon_sym_f64] = ACTIONS(938), - [anon_sym_bool] = ACTIONS(938), - [anon_sym_str] = ACTIONS(938), - [anon_sym_char] = ACTIONS(938), - [anon_sym_SLASH] = ACTIONS(938), - [anon_sym__] = ACTIONS(938), - [anon_sym_DASH] = ACTIONS(938), - [anon_sym_EQ] = ACTIONS(938), - [anon_sym_COMMA] = ACTIONS(936), - [anon_sym_COLON_COLON] = ACTIONS(936), - [anon_sym_DOT] = ACTIONS(938), - [anon_sym_AMP] = ACTIONS(938), - [anon_sym_POUND] = ACTIONS(936), - [anon_sym_PERCENT] = ACTIONS(938), - [anon_sym_CARET] = ACTIONS(938), - [anon_sym_LT] = ACTIONS(938), - [anon_sym_GT] = ACTIONS(938), - [anon_sym_PIPE] = ACTIONS(938), - [anon_sym_as] = ACTIONS(938), - [anon_sym_const] = ACTIONS(938), - [anon_sym_default] = ACTIONS(938), - [anon_sym_static] = ACTIONS(938), - [anon_sym_union] = ACTIONS(938), - [anon_sym_ref] = ACTIONS(938), - [anon_sym_DOT_DOT_DOT] = ACTIONS(936), - [sym_mutable_specifier] = ACTIONS(938), - [anon_sym_DOT_DOT] = ACTIONS(938), - [anon_sym_DOT_DOT_EQ] = ACTIONS(936), - [anon_sym_AMP_AMP] = ACTIONS(936), - [anon_sym_PIPE_PIPE] = ACTIONS(936), - [anon_sym_EQ_EQ] = ACTIONS(936), - [anon_sym_BANG_EQ] = ACTIONS(936), - [anon_sym_LT_EQ] = ACTIONS(936), - [anon_sym_GT_EQ] = ACTIONS(936), - [anon_sym_LT_LT] = ACTIONS(938), - [anon_sym_GT_GT] = ACTIONS(938), - [anon_sym_PLUS_EQ] = ACTIONS(936), - [anon_sym_DASH_EQ] = ACTIONS(936), - [anon_sym_STAR_EQ] = ACTIONS(936), - [anon_sym_SLASH_EQ] = ACTIONS(936), - [anon_sym_PERCENT_EQ] = ACTIONS(936), - [anon_sym_AMP_EQ] = ACTIONS(936), - [anon_sym_PIPE_EQ] = ACTIONS(936), - [anon_sym_CARET_EQ] = ACTIONS(936), - [anon_sym_LT_LT_EQ] = ACTIONS(936), - [anon_sym_GT_GT_EQ] = ACTIONS(936), - [anon_sym_move] = ACTIONS(938), - [sym_integer_literal] = ACTIONS(936), - [aux_sym_string_literal_token1] = ACTIONS(936), - [sym_char_literal] = ACTIONS(936), - [anon_sym_true] = ACTIONS(938), - [anon_sym_false] = ACTIONS(938), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(938), - [sym_super] = ACTIONS(938), - [sym_crate] = ACTIONS(938), - [sym_metavariable] = ACTIONS(936), - [sym_raw_string_literal] = ACTIONS(936), - [sym_float_literal] = ACTIONS(936), + [ts_builtin_sym_end] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1732), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_macro_rules_BANG] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_STAR] = ACTIONS(1730), + [anon_sym_u8] = ACTIONS(1732), + [anon_sym_i8] = ACTIONS(1732), + [anon_sym_u16] = ACTIONS(1732), + [anon_sym_i16] = ACTIONS(1732), + [anon_sym_u32] = ACTIONS(1732), + [anon_sym_i32] = ACTIONS(1732), + [anon_sym_u64] = ACTIONS(1732), + [anon_sym_i64] = ACTIONS(1732), + [anon_sym_u128] = ACTIONS(1732), + [anon_sym_i128] = ACTIONS(1732), + [anon_sym_isize] = ACTIONS(1732), + [anon_sym_usize] = ACTIONS(1732), + [anon_sym_f32] = ACTIONS(1732), + [anon_sym_f64] = ACTIONS(1732), + [anon_sym_bool] = ACTIONS(1732), + [anon_sym_str] = ACTIONS(1732), + [anon_sym_char] = ACTIONS(1732), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_COLON_COLON] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1730), + [anon_sym_POUND] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1730), + [anon_sym_PIPE] = ACTIONS(1730), + [anon_sym_SQUOTE] = ACTIONS(1732), + [anon_sym_async] = ACTIONS(1732), + [anon_sym_break] = ACTIONS(1732), + [anon_sym_const] = ACTIONS(1732), + [anon_sym_continue] = ACTIONS(1732), + [anon_sym_default] = ACTIONS(1732), + [anon_sym_enum] = ACTIONS(1732), + [anon_sym_fn] = ACTIONS(1732), + [anon_sym_for] = ACTIONS(1732), + [anon_sym_if] = ACTIONS(1732), + [anon_sym_impl] = ACTIONS(1732), + [anon_sym_let] = ACTIONS(1732), + [anon_sym_loop] = ACTIONS(1732), + [anon_sym_match] = ACTIONS(1732), + [anon_sym_mod] = ACTIONS(1732), + [anon_sym_pub] = ACTIONS(1732), + [anon_sym_return] = ACTIONS(1732), + [anon_sym_static] = ACTIONS(1732), + [anon_sym_struct] = ACTIONS(1732), + [anon_sym_trait] = ACTIONS(1732), + [anon_sym_type] = ACTIONS(1732), + [anon_sym_union] = ACTIONS(1732), + [anon_sym_unsafe] = ACTIONS(1732), + [anon_sym_use] = ACTIONS(1732), + [anon_sym_while] = ACTIONS(1732), + [anon_sym_extern] = ACTIONS(1732), + [anon_sym_DOT_DOT] = ACTIONS(1730), + [anon_sym_yield] = ACTIONS(1732), + [anon_sym_move] = ACTIONS(1732), + [anon_sym_try] = ACTIONS(1732), + [sym_integer_literal] = ACTIONS(1730), + [aux_sym_string_literal_token1] = ACTIONS(1730), + [sym_char_literal] = ACTIONS(1730), + [anon_sym_true] = ACTIONS(1732), + [anon_sym_false] = ACTIONS(1732), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1732), + [sym_super] = ACTIONS(1732), + [sym_crate] = ACTIONS(1732), + [sym_metavariable] = ACTIONS(1730), + [sym_raw_string_literal] = ACTIONS(1730), + [sym_float_literal] = ACTIONS(1730), }, [488] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2898), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2897), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_type_binding] = STATE(3090), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_label] = STATE(3501), - [sym_block] = STATE(3090), - [sym__literal] = STATE(3090), - [sym_string_literal] = STATE(3025), - [sym_boolean_literal] = STATE(3025), [sym_line_comment] = STATE(488), [sym_block_comment] = STATE(488), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_GT] = ACTIONS(1614), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1736), + [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_macro_rules_BANG] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1734), + [anon_sym_LBRACK] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1734), + [anon_sym_RBRACE] = ACTIONS(1734), + [anon_sym_STAR] = ACTIONS(1734), + [anon_sym_u8] = ACTIONS(1736), + [anon_sym_i8] = ACTIONS(1736), + [anon_sym_u16] = ACTIONS(1736), + [anon_sym_i16] = ACTIONS(1736), + [anon_sym_u32] = ACTIONS(1736), + [anon_sym_i32] = ACTIONS(1736), + [anon_sym_u64] = ACTIONS(1736), + [anon_sym_i64] = ACTIONS(1736), + [anon_sym_u128] = ACTIONS(1736), + [anon_sym_i128] = ACTIONS(1736), + [anon_sym_isize] = ACTIONS(1736), + [anon_sym_usize] = ACTIONS(1736), + [anon_sym_f32] = ACTIONS(1736), + [anon_sym_f64] = ACTIONS(1736), + [anon_sym_bool] = ACTIONS(1736), + [anon_sym_str] = ACTIONS(1736), + [anon_sym_char] = ACTIONS(1736), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1734), + [anon_sym_BANG] = ACTIONS(1734), + [anon_sym_AMP] = ACTIONS(1734), + [anon_sym_POUND] = ACTIONS(1734), + [anon_sym_LT] = ACTIONS(1734), + [anon_sym_PIPE] = ACTIONS(1734), + [anon_sym_SQUOTE] = ACTIONS(1736), + [anon_sym_async] = ACTIONS(1736), + [anon_sym_break] = ACTIONS(1736), + [anon_sym_const] = ACTIONS(1736), + [anon_sym_continue] = ACTIONS(1736), + [anon_sym_default] = ACTIONS(1736), + [anon_sym_enum] = ACTIONS(1736), + [anon_sym_fn] = ACTIONS(1736), + [anon_sym_for] = ACTIONS(1736), + [anon_sym_if] = ACTIONS(1736), + [anon_sym_impl] = ACTIONS(1736), + [anon_sym_let] = ACTIONS(1736), + [anon_sym_loop] = ACTIONS(1736), + [anon_sym_match] = ACTIONS(1736), + [anon_sym_mod] = ACTIONS(1736), + [anon_sym_pub] = ACTIONS(1736), + [anon_sym_return] = ACTIONS(1736), + [anon_sym_static] = ACTIONS(1736), + [anon_sym_struct] = ACTIONS(1736), + [anon_sym_trait] = ACTIONS(1736), + [anon_sym_type] = ACTIONS(1736), + [anon_sym_union] = ACTIONS(1736), + [anon_sym_unsafe] = ACTIONS(1736), + [anon_sym_use] = ACTIONS(1736), + [anon_sym_while] = ACTIONS(1736), + [anon_sym_extern] = ACTIONS(1736), + [anon_sym_DOT_DOT] = ACTIONS(1734), + [anon_sym_yield] = ACTIONS(1736), + [anon_sym_move] = ACTIONS(1736), + [anon_sym_try] = ACTIONS(1736), + [sym_integer_literal] = ACTIONS(1734), + [aux_sym_string_literal_token1] = ACTIONS(1734), + [sym_char_literal] = ACTIONS(1734), + [anon_sym_true] = ACTIONS(1736), + [anon_sym_false] = ACTIONS(1736), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1736), + [sym_super] = ACTIONS(1736), + [sym_crate] = ACTIONS(1736), + [sym_metavariable] = ACTIONS(1734), + [sym_raw_string_literal] = ACTIONS(1734), + [sym_float_literal] = ACTIONS(1734), }, [489] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_match_arm] = STATE(1065), - [sym_last_match_arm] = STATE(3321), - [sym_match_pattern] = STATE(3288), - [sym_const_block] = STATE(2719), - [sym_closure_expression] = STATE(3210), - [sym_closure_parameters] = STATE(143), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), [sym_line_comment] = STATE(489), [sym_block_comment] = STATE(489), - [aux_sym_enum_variant_list_repeat1] = STATE(769), - [aux_sym_match_block_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [ts_builtin_sym_end] = ACTIONS(1738), + [sym_identifier] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1738), + [anon_sym_macro_rules_BANG] = ACTIONS(1738), + [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_LBRACK] = ACTIONS(1738), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_RBRACE] = ACTIONS(1738), + [anon_sym_STAR] = ACTIONS(1738), + [anon_sym_u8] = ACTIONS(1740), + [anon_sym_i8] = ACTIONS(1740), + [anon_sym_u16] = ACTIONS(1740), + [anon_sym_i16] = ACTIONS(1740), + [anon_sym_u32] = ACTIONS(1740), + [anon_sym_i32] = ACTIONS(1740), + [anon_sym_u64] = ACTIONS(1740), + [anon_sym_i64] = ACTIONS(1740), + [anon_sym_u128] = ACTIONS(1740), + [anon_sym_i128] = ACTIONS(1740), + [anon_sym_isize] = ACTIONS(1740), + [anon_sym_usize] = ACTIONS(1740), + [anon_sym_f32] = ACTIONS(1740), + [anon_sym_f64] = ACTIONS(1740), + [anon_sym_bool] = ACTIONS(1740), + [anon_sym_str] = ACTIONS(1740), + [anon_sym_char] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1738), + [anon_sym_COLON_COLON] = ACTIONS(1738), + [anon_sym_BANG] = ACTIONS(1738), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_POUND] = ACTIONS(1738), + [anon_sym_LT] = ACTIONS(1738), + [anon_sym_PIPE] = ACTIONS(1738), + [anon_sym_SQUOTE] = ACTIONS(1740), + [anon_sym_async] = ACTIONS(1740), + [anon_sym_break] = ACTIONS(1740), + [anon_sym_const] = ACTIONS(1740), + [anon_sym_continue] = ACTIONS(1740), + [anon_sym_default] = ACTIONS(1740), + [anon_sym_enum] = ACTIONS(1740), + [anon_sym_fn] = ACTIONS(1740), + [anon_sym_for] = ACTIONS(1740), + [anon_sym_if] = ACTIONS(1740), + [anon_sym_impl] = ACTIONS(1740), + [anon_sym_let] = ACTIONS(1740), + [anon_sym_loop] = ACTIONS(1740), + [anon_sym_match] = ACTIONS(1740), + [anon_sym_mod] = ACTIONS(1740), + [anon_sym_pub] = ACTIONS(1740), + [anon_sym_return] = ACTIONS(1740), + [anon_sym_static] = ACTIONS(1740), + [anon_sym_struct] = ACTIONS(1740), + [anon_sym_trait] = ACTIONS(1740), + [anon_sym_type] = ACTIONS(1740), + [anon_sym_union] = ACTIONS(1740), + [anon_sym_unsafe] = ACTIONS(1740), + [anon_sym_use] = ACTIONS(1740), + [anon_sym_while] = ACTIONS(1740), + [anon_sym_extern] = ACTIONS(1740), + [anon_sym_DOT_DOT] = ACTIONS(1738), + [anon_sym_yield] = ACTIONS(1740), + [anon_sym_move] = ACTIONS(1740), + [anon_sym_try] = ACTIONS(1740), + [sym_integer_literal] = ACTIONS(1738), + [aux_sym_string_literal_token1] = ACTIONS(1738), + [sym_char_literal] = ACTIONS(1738), + [anon_sym_true] = ACTIONS(1740), + [anon_sym_false] = ACTIONS(1740), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1740), + [sym_super] = ACTIONS(1740), + [sym_crate] = ACTIONS(1740), + [sym_metavariable] = ACTIONS(1738), + [sym_raw_string_literal] = ACTIONS(1738), + [sym_float_literal] = ACTIONS(1738), }, [490] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2898), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2897), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_type_binding] = STATE(3090), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_label] = STATE(3501), - [sym_block] = STATE(3090), - [sym__literal] = STATE(3090), - [sym_string_literal] = STATE(3025), - [sym_boolean_literal] = STATE(3025), [sym_line_comment] = STATE(490), [sym_block_comment] = STATE(490), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_GT] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1742), + [sym_identifier] = ACTIONS(1744), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_macro_rules_BANG] = ACTIONS(1742), + [anon_sym_LPAREN] = ACTIONS(1742), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LBRACE] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(1742), + [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_u8] = ACTIONS(1744), + [anon_sym_i8] = ACTIONS(1744), + [anon_sym_u16] = ACTIONS(1744), + [anon_sym_i16] = ACTIONS(1744), + [anon_sym_u32] = ACTIONS(1744), + [anon_sym_i32] = ACTIONS(1744), + [anon_sym_u64] = ACTIONS(1744), + [anon_sym_i64] = ACTIONS(1744), + [anon_sym_u128] = ACTIONS(1744), + [anon_sym_i128] = ACTIONS(1744), + [anon_sym_isize] = ACTIONS(1744), + [anon_sym_usize] = ACTIONS(1744), + [anon_sym_f32] = ACTIONS(1744), + [anon_sym_f64] = ACTIONS(1744), + [anon_sym_bool] = ACTIONS(1744), + [anon_sym_str] = ACTIONS(1744), + [anon_sym_char] = ACTIONS(1744), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_COLON_COLON] = ACTIONS(1742), + [anon_sym_BANG] = ACTIONS(1742), + [anon_sym_AMP] = ACTIONS(1742), + [anon_sym_POUND] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1742), + [anon_sym_PIPE] = ACTIONS(1742), + [anon_sym_SQUOTE] = ACTIONS(1744), + [anon_sym_async] = ACTIONS(1744), + [anon_sym_break] = ACTIONS(1744), + [anon_sym_const] = ACTIONS(1744), + [anon_sym_continue] = ACTIONS(1744), + [anon_sym_default] = ACTIONS(1744), + [anon_sym_enum] = ACTIONS(1744), + [anon_sym_fn] = ACTIONS(1744), + [anon_sym_for] = ACTIONS(1744), + [anon_sym_if] = ACTIONS(1744), + [anon_sym_impl] = ACTIONS(1744), + [anon_sym_let] = ACTIONS(1744), + [anon_sym_loop] = ACTIONS(1744), + [anon_sym_match] = ACTIONS(1744), + [anon_sym_mod] = ACTIONS(1744), + [anon_sym_pub] = ACTIONS(1744), + [anon_sym_return] = ACTIONS(1744), + [anon_sym_static] = ACTIONS(1744), + [anon_sym_struct] = ACTIONS(1744), + [anon_sym_trait] = ACTIONS(1744), + [anon_sym_type] = ACTIONS(1744), + [anon_sym_union] = ACTIONS(1744), + [anon_sym_unsafe] = ACTIONS(1744), + [anon_sym_use] = ACTIONS(1744), + [anon_sym_while] = ACTIONS(1744), + [anon_sym_extern] = ACTIONS(1744), + [anon_sym_DOT_DOT] = ACTIONS(1742), + [anon_sym_yield] = ACTIONS(1744), + [anon_sym_move] = ACTIONS(1744), + [anon_sym_try] = ACTIONS(1744), + [sym_integer_literal] = ACTIONS(1742), + [aux_sym_string_literal_token1] = ACTIONS(1742), + [sym_char_literal] = ACTIONS(1742), + [anon_sym_true] = ACTIONS(1744), + [anon_sym_false] = ACTIONS(1744), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1744), + [sym_super] = ACTIONS(1744), + [sym_crate] = ACTIONS(1744), + [sym_metavariable] = ACTIONS(1742), + [sym_raw_string_literal] = ACTIONS(1742), + [sym_float_literal] = ACTIONS(1742), }, [491] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2898), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2897), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_type_binding] = STATE(3090), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_label] = STATE(3501), - [sym_block] = STATE(3090), - [sym__literal] = STATE(3090), - [sym_string_literal] = STATE(3025), - [sym_boolean_literal] = STATE(3025), [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_GT] = ACTIONS(1630), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1746), + [sym_identifier] = ACTIONS(1748), + [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_macro_rules_BANG] = ACTIONS(1746), + [anon_sym_LPAREN] = ACTIONS(1746), + [anon_sym_LBRACK] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_STAR] = ACTIONS(1746), + [anon_sym_u8] = ACTIONS(1748), + [anon_sym_i8] = ACTIONS(1748), + [anon_sym_u16] = ACTIONS(1748), + [anon_sym_i16] = ACTIONS(1748), + [anon_sym_u32] = ACTIONS(1748), + [anon_sym_i32] = ACTIONS(1748), + [anon_sym_u64] = ACTIONS(1748), + [anon_sym_i64] = ACTIONS(1748), + [anon_sym_u128] = ACTIONS(1748), + [anon_sym_i128] = ACTIONS(1748), + [anon_sym_isize] = ACTIONS(1748), + [anon_sym_usize] = ACTIONS(1748), + [anon_sym_f32] = ACTIONS(1748), + [anon_sym_f64] = ACTIONS(1748), + [anon_sym_bool] = ACTIONS(1748), + [anon_sym_str] = ACTIONS(1748), + [anon_sym_char] = ACTIONS(1748), + [anon_sym_DASH] = ACTIONS(1746), + [anon_sym_COLON_COLON] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1746), + [anon_sym_AMP] = ACTIONS(1746), + [anon_sym_POUND] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1746), + [anon_sym_PIPE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [anon_sym_async] = ACTIONS(1748), + [anon_sym_break] = ACTIONS(1748), + [anon_sym_const] = ACTIONS(1748), + [anon_sym_continue] = ACTIONS(1748), + [anon_sym_default] = ACTIONS(1748), + [anon_sym_enum] = ACTIONS(1748), + [anon_sym_fn] = ACTIONS(1748), + [anon_sym_for] = ACTIONS(1748), + [anon_sym_if] = ACTIONS(1748), + [anon_sym_impl] = ACTIONS(1748), + [anon_sym_let] = ACTIONS(1748), + [anon_sym_loop] = ACTIONS(1748), + [anon_sym_match] = ACTIONS(1748), + [anon_sym_mod] = ACTIONS(1748), + [anon_sym_pub] = ACTIONS(1748), + [anon_sym_return] = ACTIONS(1748), + [anon_sym_static] = ACTIONS(1748), + [anon_sym_struct] = ACTIONS(1748), + [anon_sym_trait] = ACTIONS(1748), + [anon_sym_type] = ACTIONS(1748), + [anon_sym_union] = ACTIONS(1748), + [anon_sym_unsafe] = ACTIONS(1748), + [anon_sym_use] = ACTIONS(1748), + [anon_sym_while] = ACTIONS(1748), + [anon_sym_extern] = ACTIONS(1748), + [anon_sym_DOT_DOT] = ACTIONS(1746), + [anon_sym_yield] = ACTIONS(1748), + [anon_sym_move] = ACTIONS(1748), + [anon_sym_try] = ACTIONS(1748), + [sym_integer_literal] = ACTIONS(1746), + [aux_sym_string_literal_token1] = ACTIONS(1746), + [sym_char_literal] = ACTIONS(1746), + [anon_sym_true] = ACTIONS(1748), + [anon_sym_false] = ACTIONS(1748), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1748), + [sym_super] = ACTIONS(1748), + [sym_crate] = ACTIONS(1748), + [sym_metavariable] = ACTIONS(1746), + [sym_raw_string_literal] = ACTIONS(1746), + [sym_float_literal] = ACTIONS(1746), }, [492] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_match_arm] = STATE(1065), - [sym_last_match_arm] = STATE(3304), - [sym_match_pattern] = STATE(3288), - [sym_const_block] = STATE(2719), - [sym_closure_expression] = STATE(3210), - [sym_closure_parameters] = STATE(143), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [aux_sym_enum_variant_list_repeat1] = STATE(769), - [aux_sym_match_block_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [ts_builtin_sym_end] = ACTIONS(1750), + [sym_identifier] = ACTIONS(1752), + [anon_sym_SEMI] = ACTIONS(1750), + [anon_sym_macro_rules_BANG] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(1750), + [anon_sym_LBRACK] = ACTIONS(1750), + [anon_sym_LBRACE] = ACTIONS(1750), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_STAR] = ACTIONS(1750), + [anon_sym_u8] = ACTIONS(1752), + [anon_sym_i8] = ACTIONS(1752), + [anon_sym_u16] = ACTIONS(1752), + [anon_sym_i16] = ACTIONS(1752), + [anon_sym_u32] = ACTIONS(1752), + [anon_sym_i32] = ACTIONS(1752), + [anon_sym_u64] = ACTIONS(1752), + [anon_sym_i64] = ACTIONS(1752), + [anon_sym_u128] = ACTIONS(1752), + [anon_sym_i128] = ACTIONS(1752), + [anon_sym_isize] = ACTIONS(1752), + [anon_sym_usize] = ACTIONS(1752), + [anon_sym_f32] = ACTIONS(1752), + [anon_sym_f64] = ACTIONS(1752), + [anon_sym_bool] = ACTIONS(1752), + [anon_sym_str] = ACTIONS(1752), + [anon_sym_char] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_COLON_COLON] = ACTIONS(1750), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1750), + [anon_sym_POUND] = ACTIONS(1750), + [anon_sym_LT] = ACTIONS(1750), + [anon_sym_PIPE] = ACTIONS(1750), + [anon_sym_SQUOTE] = ACTIONS(1752), + [anon_sym_async] = ACTIONS(1752), + [anon_sym_break] = ACTIONS(1752), + [anon_sym_const] = ACTIONS(1752), + [anon_sym_continue] = ACTIONS(1752), + [anon_sym_default] = ACTIONS(1752), + [anon_sym_enum] = ACTIONS(1752), + [anon_sym_fn] = ACTIONS(1752), + [anon_sym_for] = ACTIONS(1752), + [anon_sym_if] = ACTIONS(1752), + [anon_sym_impl] = ACTIONS(1752), + [anon_sym_let] = ACTIONS(1752), + [anon_sym_loop] = ACTIONS(1752), + [anon_sym_match] = ACTIONS(1752), + [anon_sym_mod] = ACTIONS(1752), + [anon_sym_pub] = ACTIONS(1752), + [anon_sym_return] = ACTIONS(1752), + [anon_sym_static] = ACTIONS(1752), + [anon_sym_struct] = ACTIONS(1752), + [anon_sym_trait] = ACTIONS(1752), + [anon_sym_type] = ACTIONS(1752), + [anon_sym_union] = ACTIONS(1752), + [anon_sym_unsafe] = ACTIONS(1752), + [anon_sym_use] = ACTIONS(1752), + [anon_sym_while] = ACTIONS(1752), + [anon_sym_extern] = ACTIONS(1752), + [anon_sym_DOT_DOT] = ACTIONS(1750), + [anon_sym_yield] = ACTIONS(1752), + [anon_sym_move] = ACTIONS(1752), + [anon_sym_try] = ACTIONS(1752), + [sym_integer_literal] = ACTIONS(1750), + [aux_sym_string_literal_token1] = ACTIONS(1750), + [sym_char_literal] = ACTIONS(1750), + [anon_sym_true] = ACTIONS(1752), + [anon_sym_false] = ACTIONS(1752), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1752), + [sym_super] = ACTIONS(1752), + [sym_crate] = ACTIONS(1752), + [sym_metavariable] = ACTIONS(1750), + [sym_raw_string_literal] = ACTIONS(1750), + [sym_float_literal] = ACTIONS(1750), }, [493] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_match_arm] = STATE(1065), - [sym_last_match_arm] = STATE(3365), - [sym_match_pattern] = STATE(3288), - [sym_const_block] = STATE(2719), - [sym_closure_expression] = STATE(3210), - [sym_closure_parameters] = STATE(143), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [aux_sym_enum_variant_list_repeat1] = STATE(769), - [aux_sym_match_block_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [ts_builtin_sym_end] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1756), + [anon_sym_SEMI] = ACTIONS(1754), + [anon_sym_macro_rules_BANG] = ACTIONS(1754), + [anon_sym_LPAREN] = ACTIONS(1754), + [anon_sym_LBRACK] = ACTIONS(1754), + [anon_sym_LBRACE] = ACTIONS(1754), + [anon_sym_RBRACE] = ACTIONS(1754), + [anon_sym_STAR] = ACTIONS(1754), + [anon_sym_u8] = ACTIONS(1756), + [anon_sym_i8] = ACTIONS(1756), + [anon_sym_u16] = ACTIONS(1756), + [anon_sym_i16] = ACTIONS(1756), + [anon_sym_u32] = ACTIONS(1756), + [anon_sym_i32] = ACTIONS(1756), + [anon_sym_u64] = ACTIONS(1756), + [anon_sym_i64] = ACTIONS(1756), + [anon_sym_u128] = ACTIONS(1756), + [anon_sym_i128] = ACTIONS(1756), + [anon_sym_isize] = ACTIONS(1756), + [anon_sym_usize] = ACTIONS(1756), + [anon_sym_f32] = ACTIONS(1756), + [anon_sym_f64] = ACTIONS(1756), + [anon_sym_bool] = ACTIONS(1756), + [anon_sym_str] = ACTIONS(1756), + [anon_sym_char] = ACTIONS(1756), + [anon_sym_DASH] = ACTIONS(1754), + [anon_sym_COLON_COLON] = ACTIONS(1754), + [anon_sym_BANG] = ACTIONS(1754), + [anon_sym_AMP] = ACTIONS(1754), + [anon_sym_POUND] = ACTIONS(1754), + [anon_sym_LT] = ACTIONS(1754), + [anon_sym_PIPE] = ACTIONS(1754), + [anon_sym_SQUOTE] = ACTIONS(1756), + [anon_sym_async] = ACTIONS(1756), + [anon_sym_break] = ACTIONS(1756), + [anon_sym_const] = ACTIONS(1756), + [anon_sym_continue] = ACTIONS(1756), + [anon_sym_default] = ACTIONS(1756), + [anon_sym_enum] = ACTIONS(1756), + [anon_sym_fn] = ACTIONS(1756), + [anon_sym_for] = ACTIONS(1756), + [anon_sym_if] = ACTIONS(1756), + [anon_sym_impl] = ACTIONS(1756), + [anon_sym_let] = ACTIONS(1756), + [anon_sym_loop] = ACTIONS(1756), + [anon_sym_match] = ACTIONS(1756), + [anon_sym_mod] = ACTIONS(1756), + [anon_sym_pub] = ACTIONS(1756), + [anon_sym_return] = ACTIONS(1756), + [anon_sym_static] = ACTIONS(1756), + [anon_sym_struct] = ACTIONS(1756), + [anon_sym_trait] = ACTIONS(1756), + [anon_sym_type] = ACTIONS(1756), + [anon_sym_union] = ACTIONS(1756), + [anon_sym_unsafe] = ACTIONS(1756), + [anon_sym_use] = ACTIONS(1756), + [anon_sym_while] = ACTIONS(1756), + [anon_sym_extern] = ACTIONS(1756), + [anon_sym_DOT_DOT] = ACTIONS(1754), + [anon_sym_yield] = ACTIONS(1756), + [anon_sym_move] = ACTIONS(1756), + [anon_sym_try] = ACTIONS(1756), + [sym_integer_literal] = ACTIONS(1754), + [aux_sym_string_literal_token1] = ACTIONS(1754), + [sym_char_literal] = ACTIONS(1754), + [anon_sym_true] = ACTIONS(1756), + [anon_sym_false] = ACTIONS(1756), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1756), + [sym_super] = ACTIONS(1756), + [sym_crate] = ACTIONS(1756), + [sym_metavariable] = ACTIONS(1754), + [sym_raw_string_literal] = ACTIONS(1754), + [sym_float_literal] = ACTIONS(1754), }, [494] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2898), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2897), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_type_binding] = STATE(3090), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_label] = STATE(3501), - [sym_block] = STATE(3090), - [sym__literal] = STATE(3090), - [sym_string_literal] = STATE(3025), - [sym_boolean_literal] = STATE(3025), [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_GT] = ACTIONS(1632), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1760), + [anon_sym_SEMI] = ACTIONS(1758), + [anon_sym_macro_rules_BANG] = ACTIONS(1758), + [anon_sym_LPAREN] = ACTIONS(1758), + [anon_sym_LBRACK] = ACTIONS(1758), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_STAR] = ACTIONS(1758), + [anon_sym_u8] = ACTIONS(1760), + [anon_sym_i8] = ACTIONS(1760), + [anon_sym_u16] = ACTIONS(1760), + [anon_sym_i16] = ACTIONS(1760), + [anon_sym_u32] = ACTIONS(1760), + [anon_sym_i32] = ACTIONS(1760), + [anon_sym_u64] = ACTIONS(1760), + [anon_sym_i64] = ACTIONS(1760), + [anon_sym_u128] = ACTIONS(1760), + [anon_sym_i128] = ACTIONS(1760), + [anon_sym_isize] = ACTIONS(1760), + [anon_sym_usize] = ACTIONS(1760), + [anon_sym_f32] = ACTIONS(1760), + [anon_sym_f64] = ACTIONS(1760), + [anon_sym_bool] = ACTIONS(1760), + [anon_sym_str] = ACTIONS(1760), + [anon_sym_char] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1758), + [anon_sym_COLON_COLON] = ACTIONS(1758), + [anon_sym_BANG] = ACTIONS(1758), + [anon_sym_AMP] = ACTIONS(1758), + [anon_sym_POUND] = ACTIONS(1758), + [anon_sym_LT] = ACTIONS(1758), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_SQUOTE] = ACTIONS(1760), + [anon_sym_async] = ACTIONS(1760), + [anon_sym_break] = ACTIONS(1760), + [anon_sym_const] = ACTIONS(1760), + [anon_sym_continue] = ACTIONS(1760), + [anon_sym_default] = ACTIONS(1760), + [anon_sym_enum] = ACTIONS(1760), + [anon_sym_fn] = ACTIONS(1760), + [anon_sym_for] = ACTIONS(1760), + [anon_sym_if] = ACTIONS(1760), + [anon_sym_impl] = ACTIONS(1760), + [anon_sym_let] = ACTIONS(1760), + [anon_sym_loop] = ACTIONS(1760), + [anon_sym_match] = ACTIONS(1760), + [anon_sym_mod] = ACTIONS(1760), + [anon_sym_pub] = ACTIONS(1760), + [anon_sym_return] = ACTIONS(1760), + [anon_sym_static] = ACTIONS(1760), + [anon_sym_struct] = ACTIONS(1760), + [anon_sym_trait] = ACTIONS(1760), + [anon_sym_type] = ACTIONS(1760), + [anon_sym_union] = ACTIONS(1760), + [anon_sym_unsafe] = ACTIONS(1760), + [anon_sym_use] = ACTIONS(1760), + [anon_sym_while] = ACTIONS(1760), + [anon_sym_extern] = ACTIONS(1760), + [anon_sym_DOT_DOT] = ACTIONS(1758), + [anon_sym_yield] = ACTIONS(1760), + [anon_sym_move] = ACTIONS(1760), + [anon_sym_try] = ACTIONS(1760), + [sym_integer_literal] = ACTIONS(1758), + [aux_sym_string_literal_token1] = ACTIONS(1758), + [sym_char_literal] = ACTIONS(1758), + [anon_sym_true] = ACTIONS(1760), + [anon_sym_false] = ACTIONS(1760), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1760), + [sym_super] = ACTIONS(1760), + [sym_crate] = ACTIONS(1760), + [sym_metavariable] = ACTIONS(1758), + [sym_raw_string_literal] = ACTIONS(1758), + [sym_float_literal] = ACTIONS(1758), }, [495] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2898), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2897), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_type_binding] = STATE(3090), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_label] = STATE(3501), - [sym_block] = STATE(3090), - [sym__literal] = STATE(3090), - [sym_string_literal] = STATE(3025), - [sym_boolean_literal] = STATE(3025), [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_GT] = ACTIONS(1634), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1764), + [anon_sym_SEMI] = ACTIONS(1762), + [anon_sym_macro_rules_BANG] = ACTIONS(1762), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_LBRACK] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_u8] = ACTIONS(1764), + [anon_sym_i8] = ACTIONS(1764), + [anon_sym_u16] = ACTIONS(1764), + [anon_sym_i16] = ACTIONS(1764), + [anon_sym_u32] = ACTIONS(1764), + [anon_sym_i32] = ACTIONS(1764), + [anon_sym_u64] = ACTIONS(1764), + [anon_sym_i64] = ACTIONS(1764), + [anon_sym_u128] = ACTIONS(1764), + [anon_sym_i128] = ACTIONS(1764), + [anon_sym_isize] = ACTIONS(1764), + [anon_sym_usize] = ACTIONS(1764), + [anon_sym_f32] = ACTIONS(1764), + [anon_sym_f64] = ACTIONS(1764), + [anon_sym_bool] = ACTIONS(1764), + [anon_sym_str] = ACTIONS(1764), + [anon_sym_char] = ACTIONS(1764), + [anon_sym_DASH] = ACTIONS(1762), + [anon_sym_COLON_COLON] = ACTIONS(1762), + [anon_sym_BANG] = ACTIONS(1762), + [anon_sym_AMP] = ACTIONS(1762), + [anon_sym_POUND] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1762), + [anon_sym_PIPE] = ACTIONS(1762), + [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_async] = ACTIONS(1764), + [anon_sym_break] = ACTIONS(1764), + [anon_sym_const] = ACTIONS(1764), + [anon_sym_continue] = ACTIONS(1764), + [anon_sym_default] = ACTIONS(1764), + [anon_sym_enum] = ACTIONS(1764), + [anon_sym_fn] = ACTIONS(1764), + [anon_sym_for] = ACTIONS(1764), + [anon_sym_if] = ACTIONS(1764), + [anon_sym_impl] = ACTIONS(1764), + [anon_sym_let] = ACTIONS(1764), + [anon_sym_loop] = ACTIONS(1764), + [anon_sym_match] = ACTIONS(1764), + [anon_sym_mod] = ACTIONS(1764), + [anon_sym_pub] = ACTIONS(1764), + [anon_sym_return] = ACTIONS(1764), + [anon_sym_static] = ACTIONS(1764), + [anon_sym_struct] = ACTIONS(1764), + [anon_sym_trait] = ACTIONS(1764), + [anon_sym_type] = ACTIONS(1764), + [anon_sym_union] = ACTIONS(1764), + [anon_sym_unsafe] = ACTIONS(1764), + [anon_sym_use] = ACTIONS(1764), + [anon_sym_while] = ACTIONS(1764), + [anon_sym_extern] = ACTIONS(1764), + [anon_sym_DOT_DOT] = ACTIONS(1762), + [anon_sym_yield] = ACTIONS(1764), + [anon_sym_move] = ACTIONS(1764), + [anon_sym_try] = ACTIONS(1764), + [sym_integer_literal] = ACTIONS(1762), + [aux_sym_string_literal_token1] = ACTIONS(1762), + [sym_char_literal] = ACTIONS(1762), + [anon_sym_true] = ACTIONS(1764), + [anon_sym_false] = ACTIONS(1764), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1764), + [sym_super] = ACTIONS(1764), + [sym_crate] = ACTIONS(1764), + [sym_metavariable] = ACTIONS(1762), + [sym_raw_string_literal] = ACTIONS(1762), + [sym_float_literal] = ACTIONS(1762), }, [496] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2898), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2897), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_type_binding] = STATE(3090), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_label] = STATE(3501), - [sym_block] = STATE(3090), - [sym__literal] = STATE(3090), - [sym_string_literal] = STATE(3025), - [sym_boolean_literal] = STATE(3025), [sym_line_comment] = STATE(496), [sym_block_comment] = STATE(496), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_GT] = ACTIONS(1636), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1768), + [anon_sym_SEMI] = ACTIONS(1766), + [anon_sym_macro_rules_BANG] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1766), + [anon_sym_u8] = ACTIONS(1768), + [anon_sym_i8] = ACTIONS(1768), + [anon_sym_u16] = ACTIONS(1768), + [anon_sym_i16] = ACTIONS(1768), + [anon_sym_u32] = ACTIONS(1768), + [anon_sym_i32] = ACTIONS(1768), + [anon_sym_u64] = ACTIONS(1768), + [anon_sym_i64] = ACTIONS(1768), + [anon_sym_u128] = ACTIONS(1768), + [anon_sym_i128] = ACTIONS(1768), + [anon_sym_isize] = ACTIONS(1768), + [anon_sym_usize] = ACTIONS(1768), + [anon_sym_f32] = ACTIONS(1768), + [anon_sym_f64] = ACTIONS(1768), + [anon_sym_bool] = ACTIONS(1768), + [anon_sym_str] = ACTIONS(1768), + [anon_sym_char] = ACTIONS(1768), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_COLON_COLON] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1766), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_SQUOTE] = ACTIONS(1768), + [anon_sym_async] = ACTIONS(1768), + [anon_sym_break] = ACTIONS(1768), + [anon_sym_const] = ACTIONS(1768), + [anon_sym_continue] = ACTIONS(1768), + [anon_sym_default] = ACTIONS(1768), + [anon_sym_enum] = ACTIONS(1768), + [anon_sym_fn] = ACTIONS(1768), + [anon_sym_for] = ACTIONS(1768), + [anon_sym_if] = ACTIONS(1768), + [anon_sym_impl] = ACTIONS(1768), + [anon_sym_let] = ACTIONS(1768), + [anon_sym_loop] = ACTIONS(1768), + [anon_sym_match] = ACTIONS(1768), + [anon_sym_mod] = ACTIONS(1768), + [anon_sym_pub] = ACTIONS(1768), + [anon_sym_return] = ACTIONS(1768), + [anon_sym_static] = ACTIONS(1768), + [anon_sym_struct] = ACTIONS(1768), + [anon_sym_trait] = ACTIONS(1768), + [anon_sym_type] = ACTIONS(1768), + [anon_sym_union] = ACTIONS(1768), + [anon_sym_unsafe] = ACTIONS(1768), + [anon_sym_use] = ACTIONS(1768), + [anon_sym_while] = ACTIONS(1768), + [anon_sym_extern] = ACTIONS(1768), + [anon_sym_DOT_DOT] = ACTIONS(1766), + [anon_sym_yield] = ACTIONS(1768), + [anon_sym_move] = ACTIONS(1768), + [anon_sym_try] = ACTIONS(1768), + [sym_integer_literal] = ACTIONS(1766), + [aux_sym_string_literal_token1] = ACTIONS(1766), + [sym_char_literal] = ACTIONS(1766), + [anon_sym_true] = ACTIONS(1768), + [anon_sym_false] = ACTIONS(1768), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1768), + [sym_super] = ACTIONS(1768), + [sym_crate] = ACTIONS(1768), + [sym_metavariable] = ACTIONS(1766), + [sym_raw_string_literal] = ACTIONS(1766), + [sym_float_literal] = ACTIONS(1766), }, [497] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_match_arm] = STATE(1065), - [sym_last_match_arm] = STATE(3485), - [sym_match_pattern] = STATE(3288), - [sym_const_block] = STATE(2719), - [sym_closure_expression] = STATE(3210), - [sym_closure_parameters] = STATE(143), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [aux_sym_enum_variant_list_repeat1] = STATE(769), - [aux_sym_match_block_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [ts_builtin_sym_end] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1772), + [anon_sym_SEMI] = ACTIONS(1770), + [anon_sym_macro_rules_BANG] = ACTIONS(1770), + [anon_sym_LPAREN] = ACTIONS(1770), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LBRACE] = ACTIONS(1770), + [anon_sym_RBRACE] = ACTIONS(1770), + [anon_sym_STAR] = ACTIONS(1770), + [anon_sym_u8] = ACTIONS(1772), + [anon_sym_i8] = ACTIONS(1772), + [anon_sym_u16] = ACTIONS(1772), + [anon_sym_i16] = ACTIONS(1772), + [anon_sym_u32] = ACTIONS(1772), + [anon_sym_i32] = ACTIONS(1772), + [anon_sym_u64] = ACTIONS(1772), + [anon_sym_i64] = ACTIONS(1772), + [anon_sym_u128] = ACTIONS(1772), + [anon_sym_i128] = ACTIONS(1772), + [anon_sym_isize] = ACTIONS(1772), + [anon_sym_usize] = ACTIONS(1772), + [anon_sym_f32] = ACTIONS(1772), + [anon_sym_f64] = ACTIONS(1772), + [anon_sym_bool] = ACTIONS(1772), + [anon_sym_str] = ACTIONS(1772), + [anon_sym_char] = ACTIONS(1772), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_BANG] = ACTIONS(1770), + [anon_sym_AMP] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1770), + [anon_sym_PIPE] = ACTIONS(1770), + [anon_sym_SQUOTE] = ACTIONS(1772), + [anon_sym_async] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_default] = ACTIONS(1772), + [anon_sym_enum] = ACTIONS(1772), + [anon_sym_fn] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_impl] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_mod] = ACTIONS(1772), + [anon_sym_pub] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_static] = ACTIONS(1772), + [anon_sym_struct] = ACTIONS(1772), + [anon_sym_trait] = ACTIONS(1772), + [anon_sym_type] = ACTIONS(1772), + [anon_sym_union] = ACTIONS(1772), + [anon_sym_unsafe] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_DOT_DOT] = ACTIONS(1770), + [anon_sym_yield] = ACTIONS(1772), + [anon_sym_move] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [sym_integer_literal] = ACTIONS(1770), + [aux_sym_string_literal_token1] = ACTIONS(1770), + [sym_char_literal] = ACTIONS(1770), + [anon_sym_true] = ACTIONS(1772), + [anon_sym_false] = ACTIONS(1772), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1772), + [sym_super] = ACTIONS(1772), + [sym_crate] = ACTIONS(1772), + [sym_metavariable] = ACTIONS(1770), + [sym_raw_string_literal] = ACTIONS(1770), + [sym_float_literal] = ACTIONS(1770), }, [498] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2513), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2514), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_type_binding] = STATE(2810), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_label] = STATE(3501), - [sym_block] = STATE(2810), - [sym__literal] = STATE(2810), - [sym_string_literal] = STATE(3025), - [sym_boolean_literal] = STATE(3025), [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1776), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_macro_rules_BANG] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_STAR] = ACTIONS(1774), + [anon_sym_u8] = ACTIONS(1776), + [anon_sym_i8] = ACTIONS(1776), + [anon_sym_u16] = ACTIONS(1776), + [anon_sym_i16] = ACTIONS(1776), + [anon_sym_u32] = ACTIONS(1776), + [anon_sym_i32] = ACTIONS(1776), + [anon_sym_u64] = ACTIONS(1776), + [anon_sym_i64] = ACTIONS(1776), + [anon_sym_u128] = ACTIONS(1776), + [anon_sym_i128] = ACTIONS(1776), + [anon_sym_isize] = ACTIONS(1776), + [anon_sym_usize] = ACTIONS(1776), + [anon_sym_f32] = ACTIONS(1776), + [anon_sym_f64] = ACTIONS(1776), + [anon_sym_bool] = ACTIONS(1776), + [anon_sym_str] = ACTIONS(1776), + [anon_sym_char] = ACTIONS(1776), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1774), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_SQUOTE] = ACTIONS(1776), + [anon_sym_async] = ACTIONS(1776), + [anon_sym_break] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1776), + [anon_sym_continue] = ACTIONS(1776), + [anon_sym_default] = ACTIONS(1776), + [anon_sym_enum] = ACTIONS(1776), + [anon_sym_fn] = ACTIONS(1776), + [anon_sym_for] = ACTIONS(1776), + [anon_sym_if] = ACTIONS(1776), + [anon_sym_impl] = ACTIONS(1776), + [anon_sym_let] = ACTIONS(1776), + [anon_sym_loop] = ACTIONS(1776), + [anon_sym_match] = ACTIONS(1776), + [anon_sym_mod] = ACTIONS(1776), + [anon_sym_pub] = ACTIONS(1776), + [anon_sym_return] = ACTIONS(1776), + [anon_sym_static] = ACTIONS(1776), + [anon_sym_struct] = ACTIONS(1776), + [anon_sym_trait] = ACTIONS(1776), + [anon_sym_type] = ACTIONS(1776), + [anon_sym_union] = ACTIONS(1776), + [anon_sym_unsafe] = ACTIONS(1776), + [anon_sym_use] = ACTIONS(1776), + [anon_sym_while] = ACTIONS(1776), + [anon_sym_extern] = ACTIONS(1776), + [anon_sym_DOT_DOT] = ACTIONS(1774), + [anon_sym_yield] = ACTIONS(1776), + [anon_sym_move] = ACTIONS(1776), + [anon_sym_try] = ACTIONS(1776), + [sym_integer_literal] = ACTIONS(1774), + [aux_sym_string_literal_token1] = ACTIONS(1774), + [sym_char_literal] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1776), + [anon_sym_false] = ACTIONS(1776), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1776), + [sym_super] = ACTIONS(1776), + [sym_crate] = ACTIONS(1776), + [sym_metavariable] = ACTIONS(1774), + [sym_raw_string_literal] = ACTIONS(1774), + [sym_float_literal] = ACTIONS(1774), }, [499] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2591), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2589), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_type_binding] = STATE(2927), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_label] = STATE(3501), - [sym_block] = STATE(2927), - [sym__literal] = STATE(2927), - [sym_string_literal] = STATE(3025), - [sym_boolean_literal] = STATE(3025), [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1780), + [anon_sym_SEMI] = ACTIONS(1778), + [anon_sym_macro_rules_BANG] = ACTIONS(1778), + [anon_sym_LPAREN] = ACTIONS(1778), + [anon_sym_LBRACK] = ACTIONS(1778), + [anon_sym_LBRACE] = ACTIONS(1778), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_STAR] = ACTIONS(1778), + [anon_sym_u8] = ACTIONS(1780), + [anon_sym_i8] = ACTIONS(1780), + [anon_sym_u16] = ACTIONS(1780), + [anon_sym_i16] = ACTIONS(1780), + [anon_sym_u32] = ACTIONS(1780), + [anon_sym_i32] = ACTIONS(1780), + [anon_sym_u64] = ACTIONS(1780), + [anon_sym_i64] = ACTIONS(1780), + [anon_sym_u128] = ACTIONS(1780), + [anon_sym_i128] = ACTIONS(1780), + [anon_sym_isize] = ACTIONS(1780), + [anon_sym_usize] = ACTIONS(1780), + [anon_sym_f32] = ACTIONS(1780), + [anon_sym_f64] = ACTIONS(1780), + [anon_sym_bool] = ACTIONS(1780), + [anon_sym_str] = ACTIONS(1780), + [anon_sym_char] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1778), + [anon_sym_COLON_COLON] = ACTIONS(1778), + [anon_sym_BANG] = ACTIONS(1778), + [anon_sym_AMP] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_LT] = ACTIONS(1778), + [anon_sym_PIPE] = ACTIONS(1778), + [anon_sym_SQUOTE] = ACTIONS(1780), + [anon_sym_async] = ACTIONS(1780), + [anon_sym_break] = ACTIONS(1780), + [anon_sym_const] = ACTIONS(1780), + [anon_sym_continue] = ACTIONS(1780), + [anon_sym_default] = ACTIONS(1780), + [anon_sym_enum] = ACTIONS(1780), + [anon_sym_fn] = ACTIONS(1780), + [anon_sym_for] = ACTIONS(1780), + [anon_sym_if] = ACTIONS(1780), + [anon_sym_impl] = ACTIONS(1780), + [anon_sym_let] = ACTIONS(1780), + [anon_sym_loop] = ACTIONS(1780), + [anon_sym_match] = ACTIONS(1780), + [anon_sym_mod] = ACTIONS(1780), + [anon_sym_pub] = ACTIONS(1780), + [anon_sym_return] = ACTIONS(1780), + [anon_sym_static] = ACTIONS(1780), + [anon_sym_struct] = ACTIONS(1780), + [anon_sym_trait] = ACTIONS(1780), + [anon_sym_type] = ACTIONS(1780), + [anon_sym_union] = ACTIONS(1780), + [anon_sym_unsafe] = ACTIONS(1780), + [anon_sym_use] = ACTIONS(1780), + [anon_sym_while] = ACTIONS(1780), + [anon_sym_extern] = ACTIONS(1780), + [anon_sym_DOT_DOT] = ACTIONS(1778), + [anon_sym_yield] = ACTIONS(1780), + [anon_sym_move] = ACTIONS(1780), + [anon_sym_try] = ACTIONS(1780), + [sym_integer_literal] = ACTIONS(1778), + [aux_sym_string_literal_token1] = ACTIONS(1778), + [sym_char_literal] = ACTIONS(1778), + [anon_sym_true] = ACTIONS(1780), + [anon_sym_false] = ACTIONS(1780), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1780), + [sym_super] = ACTIONS(1780), + [sym_crate] = ACTIONS(1780), + [sym_metavariable] = ACTIONS(1778), + [sym_raw_string_literal] = ACTIONS(1778), + [sym_float_literal] = ACTIONS(1778), }, [500] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2898), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2897), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_type_binding] = STATE(3090), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_label] = STATE(3501), - [sym_block] = STATE(3090), - [sym__literal] = STATE(3090), - [sym_string_literal] = STATE(3025), - [sym_boolean_literal] = STATE(3025), [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1784), + [anon_sym_SEMI] = ACTIONS(1782), + [anon_sym_macro_rules_BANG] = ACTIONS(1782), + [anon_sym_LPAREN] = ACTIONS(1782), + [anon_sym_LBRACK] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_RBRACE] = ACTIONS(1782), + [anon_sym_STAR] = ACTIONS(1782), + [anon_sym_u8] = ACTIONS(1784), + [anon_sym_i8] = ACTIONS(1784), + [anon_sym_u16] = ACTIONS(1784), + [anon_sym_i16] = ACTIONS(1784), + [anon_sym_u32] = ACTIONS(1784), + [anon_sym_i32] = ACTIONS(1784), + [anon_sym_u64] = ACTIONS(1784), + [anon_sym_i64] = ACTIONS(1784), + [anon_sym_u128] = ACTIONS(1784), + [anon_sym_i128] = ACTIONS(1784), + [anon_sym_isize] = ACTIONS(1784), + [anon_sym_usize] = ACTIONS(1784), + [anon_sym_f32] = ACTIONS(1784), + [anon_sym_f64] = ACTIONS(1784), + [anon_sym_bool] = ACTIONS(1784), + [anon_sym_str] = ACTIONS(1784), + [anon_sym_char] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_COLON_COLON] = ACTIONS(1782), + [anon_sym_BANG] = ACTIONS(1782), + [anon_sym_AMP] = ACTIONS(1782), + [anon_sym_POUND] = ACTIONS(1782), + [anon_sym_LT] = ACTIONS(1782), + [anon_sym_PIPE] = ACTIONS(1782), + [anon_sym_SQUOTE] = ACTIONS(1784), + [anon_sym_async] = ACTIONS(1784), + [anon_sym_break] = ACTIONS(1784), + [anon_sym_const] = ACTIONS(1784), + [anon_sym_continue] = ACTIONS(1784), + [anon_sym_default] = ACTIONS(1784), + [anon_sym_enum] = ACTIONS(1784), + [anon_sym_fn] = ACTIONS(1784), + [anon_sym_for] = ACTIONS(1784), + [anon_sym_if] = ACTIONS(1784), + [anon_sym_impl] = ACTIONS(1784), + [anon_sym_let] = ACTIONS(1784), + [anon_sym_loop] = ACTIONS(1784), + [anon_sym_match] = ACTIONS(1784), + [anon_sym_mod] = ACTIONS(1784), + [anon_sym_pub] = ACTIONS(1784), + [anon_sym_return] = ACTIONS(1784), + [anon_sym_static] = ACTIONS(1784), + [anon_sym_struct] = ACTIONS(1784), + [anon_sym_trait] = ACTIONS(1784), + [anon_sym_type] = ACTIONS(1784), + [anon_sym_union] = ACTIONS(1784), + [anon_sym_unsafe] = ACTIONS(1784), + [anon_sym_use] = ACTIONS(1784), + [anon_sym_while] = ACTIONS(1784), + [anon_sym_extern] = ACTIONS(1784), + [anon_sym_DOT_DOT] = ACTIONS(1782), + [anon_sym_yield] = ACTIONS(1784), + [anon_sym_move] = ACTIONS(1784), + [anon_sym_try] = ACTIONS(1784), + [sym_integer_literal] = ACTIONS(1782), + [aux_sym_string_literal_token1] = ACTIONS(1782), + [sym_char_literal] = ACTIONS(1782), + [anon_sym_true] = ACTIONS(1784), + [anon_sym_false] = ACTIONS(1784), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1784), + [sym_super] = ACTIONS(1784), + [sym_crate] = ACTIONS(1784), + [sym_metavariable] = ACTIONS(1782), + [sym_raw_string_literal] = ACTIONS(1782), + [sym_float_literal] = ACTIONS(1782), }, [501] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_match_arm] = STATE(1065), - [sym_match_pattern] = STATE(3286), - [sym_const_block] = STATE(2719), - [sym_closure_expression] = STATE(3210), - [sym_closure_parameters] = STATE(143), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), [sym_line_comment] = STATE(501), [sym_block_comment] = STATE(501), - [aux_sym_enum_variant_list_repeat1] = STATE(519), - [aux_sym_match_block_repeat1] = STATE(501), - [sym_identifier] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1641), - [anon_sym_LBRACK] = ACTIONS(1644), - [anon_sym_u8] = ACTIONS(1647), - [anon_sym_i8] = ACTIONS(1647), - [anon_sym_u16] = ACTIONS(1647), - [anon_sym_i16] = ACTIONS(1647), - [anon_sym_u32] = ACTIONS(1647), - [anon_sym_i32] = ACTIONS(1647), - [anon_sym_u64] = ACTIONS(1647), - [anon_sym_i64] = ACTIONS(1647), - [anon_sym_u128] = ACTIONS(1647), - [anon_sym_i128] = ACTIONS(1647), - [anon_sym_isize] = ACTIONS(1647), - [anon_sym_usize] = ACTIONS(1647), - [anon_sym_f32] = ACTIONS(1647), - [anon_sym_f64] = ACTIONS(1647), - [anon_sym_bool] = ACTIONS(1647), - [anon_sym_str] = ACTIONS(1647), - [anon_sym_char] = ACTIONS(1647), - [anon_sym__] = ACTIONS(1650), - [anon_sym_DASH] = ACTIONS(1653), - [anon_sym_COLON_COLON] = ACTIONS(1656), - [anon_sym_AMP] = ACTIONS(1659), - [anon_sym_POUND] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_const] = ACTIONS(1671), - [anon_sym_default] = ACTIONS(1674), - [anon_sym_static] = ACTIONS(1677), - [anon_sym_union] = ACTIONS(1674), - [anon_sym_ref] = ACTIONS(1680), - [sym_mutable_specifier] = ACTIONS(1683), - [anon_sym_DOT_DOT] = ACTIONS(1686), - [anon_sym_move] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1692), - [aux_sym_string_literal_token1] = ACTIONS(1695), - [sym_char_literal] = ACTIONS(1692), - [anon_sym_true] = ACTIONS(1698), - [anon_sym_false] = ACTIONS(1698), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_crate] = ACTIONS(1701), - [sym_metavariable] = ACTIONS(1704), - [sym_raw_string_literal] = ACTIONS(1692), - [sym_float_literal] = ACTIONS(1692), + [ts_builtin_sym_end] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1788), + [anon_sym_SEMI] = ACTIONS(1786), + [anon_sym_macro_rules_BANG] = ACTIONS(1786), + [anon_sym_LPAREN] = ACTIONS(1786), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LBRACE] = ACTIONS(1786), + [anon_sym_RBRACE] = ACTIONS(1786), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_u8] = ACTIONS(1788), + [anon_sym_i8] = ACTIONS(1788), + [anon_sym_u16] = ACTIONS(1788), + [anon_sym_i16] = ACTIONS(1788), + [anon_sym_u32] = ACTIONS(1788), + [anon_sym_i32] = ACTIONS(1788), + [anon_sym_u64] = ACTIONS(1788), + [anon_sym_i64] = ACTIONS(1788), + [anon_sym_u128] = ACTIONS(1788), + [anon_sym_i128] = ACTIONS(1788), + [anon_sym_isize] = ACTIONS(1788), + [anon_sym_usize] = ACTIONS(1788), + [anon_sym_f32] = ACTIONS(1788), + [anon_sym_f64] = ACTIONS(1788), + [anon_sym_bool] = ACTIONS(1788), + [anon_sym_str] = ACTIONS(1788), + [anon_sym_char] = ACTIONS(1788), + [anon_sym_DASH] = ACTIONS(1786), + [anon_sym_COLON_COLON] = ACTIONS(1786), + [anon_sym_BANG] = ACTIONS(1786), + [anon_sym_AMP] = ACTIONS(1786), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1786), + [anon_sym_PIPE] = ACTIONS(1786), + [anon_sym_SQUOTE] = ACTIONS(1788), + [anon_sym_async] = ACTIONS(1788), + [anon_sym_break] = ACTIONS(1788), + [anon_sym_const] = ACTIONS(1788), + [anon_sym_continue] = ACTIONS(1788), + [anon_sym_default] = ACTIONS(1788), + [anon_sym_enum] = ACTIONS(1788), + [anon_sym_fn] = ACTIONS(1788), + [anon_sym_for] = ACTIONS(1788), + [anon_sym_if] = ACTIONS(1788), + [anon_sym_impl] = ACTIONS(1788), + [anon_sym_let] = ACTIONS(1788), + [anon_sym_loop] = ACTIONS(1788), + [anon_sym_match] = ACTIONS(1788), + [anon_sym_mod] = ACTIONS(1788), + [anon_sym_pub] = ACTIONS(1788), + [anon_sym_return] = ACTIONS(1788), + [anon_sym_static] = ACTIONS(1788), + [anon_sym_struct] = ACTIONS(1788), + [anon_sym_trait] = ACTIONS(1788), + [anon_sym_type] = ACTIONS(1788), + [anon_sym_union] = ACTIONS(1788), + [anon_sym_unsafe] = ACTIONS(1788), + [anon_sym_use] = ACTIONS(1788), + [anon_sym_while] = ACTIONS(1788), + [anon_sym_extern] = ACTIONS(1788), + [anon_sym_DOT_DOT] = ACTIONS(1786), + [anon_sym_yield] = ACTIONS(1788), + [anon_sym_move] = ACTIONS(1788), + [anon_sym_try] = ACTIONS(1788), + [sym_integer_literal] = ACTIONS(1786), + [aux_sym_string_literal_token1] = ACTIONS(1786), + [sym_char_literal] = ACTIONS(1786), + [anon_sym_true] = ACTIONS(1788), + [anon_sym_false] = ACTIONS(1788), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1788), + [sym_super] = ACTIONS(1788), + [sym_crate] = ACTIONS(1788), + [sym_metavariable] = ACTIONS(1786), + [sym_raw_string_literal] = ACTIONS(1786), + [sym_float_literal] = ACTIONS(1786), }, [502] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2679), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2676), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_type_binding] = STATE(2726), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_label] = STATE(3501), - [sym_block] = STATE(2726), - [sym__literal] = STATE(2726), - [sym_string_literal] = STATE(3025), - [sym_boolean_literal] = STATE(3025), [sym_line_comment] = STATE(502), [sym_block_comment] = STATE(502), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_LBRACE] = ACTIONS(1606), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(1616), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_integer_literal] = ACTIONS(1622), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1622), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - [sym_raw_string_literal] = ACTIONS(1622), - [sym_float_literal] = ACTIONS(1622), + [ts_builtin_sym_end] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1792), + [anon_sym_SEMI] = ACTIONS(1790), + [anon_sym_macro_rules_BANG] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1790), + [anon_sym_LBRACK] = ACTIONS(1790), + [anon_sym_LBRACE] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1790), + [anon_sym_u8] = ACTIONS(1792), + [anon_sym_i8] = ACTIONS(1792), + [anon_sym_u16] = ACTIONS(1792), + [anon_sym_i16] = ACTIONS(1792), + [anon_sym_u32] = ACTIONS(1792), + [anon_sym_i32] = ACTIONS(1792), + [anon_sym_u64] = ACTIONS(1792), + [anon_sym_i64] = ACTIONS(1792), + [anon_sym_u128] = ACTIONS(1792), + [anon_sym_i128] = ACTIONS(1792), + [anon_sym_isize] = ACTIONS(1792), + [anon_sym_usize] = ACTIONS(1792), + [anon_sym_f32] = ACTIONS(1792), + [anon_sym_f64] = ACTIONS(1792), + [anon_sym_bool] = ACTIONS(1792), + [anon_sym_str] = ACTIONS(1792), + [anon_sym_char] = ACTIONS(1792), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1790), + [anon_sym_BANG] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_POUND] = ACTIONS(1790), + [anon_sym_LT] = ACTIONS(1790), + [anon_sym_PIPE] = ACTIONS(1790), + [anon_sym_SQUOTE] = ACTIONS(1792), + [anon_sym_async] = ACTIONS(1792), + [anon_sym_break] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1792), + [anon_sym_continue] = ACTIONS(1792), + [anon_sym_default] = ACTIONS(1792), + [anon_sym_enum] = ACTIONS(1792), + [anon_sym_fn] = ACTIONS(1792), + [anon_sym_for] = ACTIONS(1792), + [anon_sym_if] = ACTIONS(1792), + [anon_sym_impl] = ACTIONS(1792), + [anon_sym_let] = ACTIONS(1792), + [anon_sym_loop] = ACTIONS(1792), + [anon_sym_match] = ACTIONS(1792), + [anon_sym_mod] = ACTIONS(1792), + [anon_sym_pub] = ACTIONS(1792), + [anon_sym_return] = ACTIONS(1792), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_struct] = ACTIONS(1792), + [anon_sym_trait] = ACTIONS(1792), + [anon_sym_type] = ACTIONS(1792), + [anon_sym_union] = ACTIONS(1792), + [anon_sym_unsafe] = ACTIONS(1792), + [anon_sym_use] = ACTIONS(1792), + [anon_sym_while] = ACTIONS(1792), + [anon_sym_extern] = ACTIONS(1792), + [anon_sym_DOT_DOT] = ACTIONS(1790), + [anon_sym_yield] = ACTIONS(1792), + [anon_sym_move] = ACTIONS(1792), + [anon_sym_try] = ACTIONS(1792), + [sym_integer_literal] = ACTIONS(1790), + [aux_sym_string_literal_token1] = ACTIONS(1790), + [sym_char_literal] = ACTIONS(1790), + [anon_sym_true] = ACTIONS(1792), + [anon_sym_false] = ACTIONS(1792), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1792), + [sym_super] = ACTIONS(1792), + [sym_crate] = ACTIONS(1792), + [sym_metavariable] = ACTIONS(1790), + [sym_raw_string_literal] = ACTIONS(1790), + [sym_float_literal] = ACTIONS(1790), }, [503] = { [sym_line_comment] = STATE(503), [sym_block_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_macro_rules_BANG] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_u8] = ACTIONS(1709), - [anon_sym_i8] = ACTIONS(1709), - [anon_sym_u16] = ACTIONS(1709), - [anon_sym_i16] = ACTIONS(1709), - [anon_sym_u32] = ACTIONS(1709), - [anon_sym_i32] = ACTIONS(1709), - [anon_sym_u64] = ACTIONS(1709), - [anon_sym_i64] = ACTIONS(1709), - [anon_sym_u128] = ACTIONS(1709), - [anon_sym_i128] = ACTIONS(1709), - [anon_sym_isize] = ACTIONS(1709), - [anon_sym_usize] = ACTIONS(1709), - [anon_sym_f32] = ACTIONS(1709), - [anon_sym_f64] = ACTIONS(1709), - [anon_sym_bool] = ACTIONS(1709), - [anon_sym_str] = ACTIONS(1709), - [anon_sym_char] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_COLON_COLON] = ACTIONS(1707), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(1707), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_async] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_default] = ACTIONS(1709), - [anon_sym_enum] = ACTIONS(1709), - [anon_sym_fn] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_impl] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_mod] = ACTIONS(1709), - [anon_sym_pub] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1709), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_trait] = ACTIONS(1709), - [anon_sym_type] = ACTIONS(1709), - [anon_sym_union] = ACTIONS(1709), - [anon_sym_unsafe] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_yield] = ACTIONS(1709), - [anon_sym_move] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1709), - [sym_integer_literal] = ACTIONS(1707), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1709), - [sym_super] = ACTIONS(1709), - [sym_crate] = ACTIONS(1709), - [sym_metavariable] = ACTIONS(1707), - [sym_raw_string_literal] = ACTIONS(1707), - [sym_float_literal] = ACTIONS(1707), + [ts_builtin_sym_end] = ACTIONS(1794), + [sym_identifier] = ACTIONS(1796), + [anon_sym_SEMI] = ACTIONS(1794), + [anon_sym_macro_rules_BANG] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1794), + [anon_sym_LBRACK] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(1794), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_STAR] = ACTIONS(1794), + [anon_sym_u8] = ACTIONS(1796), + [anon_sym_i8] = ACTIONS(1796), + [anon_sym_u16] = ACTIONS(1796), + [anon_sym_i16] = ACTIONS(1796), + [anon_sym_u32] = ACTIONS(1796), + [anon_sym_i32] = ACTIONS(1796), + [anon_sym_u64] = ACTIONS(1796), + [anon_sym_i64] = ACTIONS(1796), + [anon_sym_u128] = ACTIONS(1796), + [anon_sym_i128] = ACTIONS(1796), + [anon_sym_isize] = ACTIONS(1796), + [anon_sym_usize] = ACTIONS(1796), + [anon_sym_f32] = ACTIONS(1796), + [anon_sym_f64] = ACTIONS(1796), + [anon_sym_bool] = ACTIONS(1796), + [anon_sym_str] = ACTIONS(1796), + [anon_sym_char] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_COLON_COLON] = ACTIONS(1794), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_AMP] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1794), + [anon_sym_LT] = ACTIONS(1794), + [anon_sym_PIPE] = ACTIONS(1794), + [anon_sym_SQUOTE] = ACTIONS(1796), + [anon_sym_async] = ACTIONS(1796), + [anon_sym_break] = ACTIONS(1796), + [anon_sym_const] = ACTIONS(1796), + [anon_sym_continue] = ACTIONS(1796), + [anon_sym_default] = ACTIONS(1796), + [anon_sym_enum] = ACTIONS(1796), + [anon_sym_fn] = ACTIONS(1796), + [anon_sym_for] = ACTIONS(1796), + [anon_sym_if] = ACTIONS(1796), + [anon_sym_impl] = ACTIONS(1796), + [anon_sym_let] = ACTIONS(1796), + [anon_sym_loop] = ACTIONS(1796), + [anon_sym_match] = ACTIONS(1796), + [anon_sym_mod] = ACTIONS(1796), + [anon_sym_pub] = ACTIONS(1796), + [anon_sym_return] = ACTIONS(1796), + [anon_sym_static] = ACTIONS(1796), + [anon_sym_struct] = ACTIONS(1796), + [anon_sym_trait] = ACTIONS(1796), + [anon_sym_type] = ACTIONS(1796), + [anon_sym_union] = ACTIONS(1796), + [anon_sym_unsafe] = ACTIONS(1796), + [anon_sym_use] = ACTIONS(1796), + [anon_sym_while] = ACTIONS(1796), + [anon_sym_extern] = ACTIONS(1796), + [anon_sym_DOT_DOT] = ACTIONS(1794), + [anon_sym_yield] = ACTIONS(1796), + [anon_sym_move] = ACTIONS(1796), + [anon_sym_try] = ACTIONS(1796), + [sym_integer_literal] = ACTIONS(1794), + [aux_sym_string_literal_token1] = ACTIONS(1794), + [sym_char_literal] = ACTIONS(1794), + [anon_sym_true] = ACTIONS(1796), + [anon_sym_false] = ACTIONS(1796), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1796), + [sym_super] = ACTIONS(1796), + [sym_crate] = ACTIONS(1796), + [sym_metavariable] = ACTIONS(1794), + [sym_raw_string_literal] = ACTIONS(1794), + [sym_float_literal] = ACTIONS(1794), }, [504] = { [sym_line_comment] = STATE(504), [sym_block_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1711), - [sym_identifier] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_macro_rules_BANG] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_u8] = ACTIONS(1713), - [anon_sym_i8] = ACTIONS(1713), - [anon_sym_u16] = ACTIONS(1713), - [anon_sym_i16] = ACTIONS(1713), - [anon_sym_u32] = ACTIONS(1713), - [anon_sym_i32] = ACTIONS(1713), - [anon_sym_u64] = ACTIONS(1713), - [anon_sym_i64] = ACTIONS(1713), - [anon_sym_u128] = ACTIONS(1713), - [anon_sym_i128] = ACTIONS(1713), - [anon_sym_isize] = ACTIONS(1713), - [anon_sym_usize] = ACTIONS(1713), - [anon_sym_f32] = ACTIONS(1713), - [anon_sym_f64] = ACTIONS(1713), - [anon_sym_bool] = ACTIONS(1713), - [anon_sym_str] = ACTIONS(1713), - [anon_sym_char] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_COLON_COLON] = ACTIONS(1711), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_SQUOTE] = ACTIONS(1713), - [anon_sym_async] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_fn] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_impl] = ACTIONS(1713), - [anon_sym_let] = ACTIONS(1713), - [anon_sym_loop] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_pub] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_trait] = ACTIONS(1713), - [anon_sym_type] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_unsafe] = ACTIONS(1713), - [anon_sym_use] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_yield] = ACTIONS(1713), - [anon_sym_move] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1713), - [sym_integer_literal] = ACTIONS(1711), - [aux_sym_string_literal_token1] = ACTIONS(1711), - [sym_char_literal] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1713), - [sym_super] = ACTIONS(1713), - [sym_crate] = ACTIONS(1713), - [sym_metavariable] = ACTIONS(1711), - [sym_raw_string_literal] = ACTIONS(1711), - [sym_float_literal] = ACTIONS(1711), + [ts_builtin_sym_end] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1800), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_macro_rules_BANG] = ACTIONS(1798), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_LBRACE] = ACTIONS(1798), + [anon_sym_RBRACE] = ACTIONS(1798), + [anon_sym_STAR] = ACTIONS(1798), + [anon_sym_u8] = ACTIONS(1800), + [anon_sym_i8] = ACTIONS(1800), + [anon_sym_u16] = ACTIONS(1800), + [anon_sym_i16] = ACTIONS(1800), + [anon_sym_u32] = ACTIONS(1800), + [anon_sym_i32] = ACTIONS(1800), + [anon_sym_u64] = ACTIONS(1800), + [anon_sym_i64] = ACTIONS(1800), + [anon_sym_u128] = ACTIONS(1800), + [anon_sym_i128] = ACTIONS(1800), + [anon_sym_isize] = ACTIONS(1800), + [anon_sym_usize] = ACTIONS(1800), + [anon_sym_f32] = ACTIONS(1800), + [anon_sym_f64] = ACTIONS(1800), + [anon_sym_bool] = ACTIONS(1800), + [anon_sym_str] = ACTIONS(1800), + [anon_sym_char] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_COLON_COLON] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1798), + [anon_sym_AMP] = ACTIONS(1798), + [anon_sym_POUND] = ACTIONS(1798), + [anon_sym_LT] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1798), + [anon_sym_SQUOTE] = ACTIONS(1800), + [anon_sym_async] = ACTIONS(1800), + [anon_sym_break] = ACTIONS(1800), + [anon_sym_const] = ACTIONS(1800), + [anon_sym_continue] = ACTIONS(1800), + [anon_sym_default] = ACTIONS(1800), + [anon_sym_enum] = ACTIONS(1800), + [anon_sym_fn] = ACTIONS(1800), + [anon_sym_for] = ACTIONS(1800), + [anon_sym_if] = ACTIONS(1800), + [anon_sym_impl] = ACTIONS(1800), + [anon_sym_let] = ACTIONS(1800), + [anon_sym_loop] = ACTIONS(1800), + [anon_sym_match] = ACTIONS(1800), + [anon_sym_mod] = ACTIONS(1800), + [anon_sym_pub] = ACTIONS(1800), + [anon_sym_return] = ACTIONS(1800), + [anon_sym_static] = ACTIONS(1800), + [anon_sym_struct] = ACTIONS(1800), + [anon_sym_trait] = ACTIONS(1800), + [anon_sym_type] = ACTIONS(1800), + [anon_sym_union] = ACTIONS(1800), + [anon_sym_unsafe] = ACTIONS(1800), + [anon_sym_use] = ACTIONS(1800), + [anon_sym_while] = ACTIONS(1800), + [anon_sym_extern] = ACTIONS(1800), + [anon_sym_DOT_DOT] = ACTIONS(1798), + [anon_sym_yield] = ACTIONS(1800), + [anon_sym_move] = ACTIONS(1800), + [anon_sym_try] = ACTIONS(1800), + [sym_integer_literal] = ACTIONS(1798), + [aux_sym_string_literal_token1] = ACTIONS(1798), + [sym_char_literal] = ACTIONS(1798), + [anon_sym_true] = ACTIONS(1800), + [anon_sym_false] = ACTIONS(1800), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1800), + [sym_super] = ACTIONS(1800), + [sym_crate] = ACTIONS(1800), + [sym_metavariable] = ACTIONS(1798), + [sym_raw_string_literal] = ACTIONS(1798), + [sym_float_literal] = ACTIONS(1798), }, [505] = { [sym_line_comment] = STATE(505), [sym_block_comment] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_macro_rules_BANG] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_u8] = ACTIONS(1717), - [anon_sym_i8] = ACTIONS(1717), - [anon_sym_u16] = ACTIONS(1717), - [anon_sym_i16] = ACTIONS(1717), - [anon_sym_u32] = ACTIONS(1717), - [anon_sym_i32] = ACTIONS(1717), - [anon_sym_u64] = ACTIONS(1717), - [anon_sym_i64] = ACTIONS(1717), - [anon_sym_u128] = ACTIONS(1717), - [anon_sym_i128] = ACTIONS(1717), - [anon_sym_isize] = ACTIONS(1717), - [anon_sym_usize] = ACTIONS(1717), - [anon_sym_f32] = ACTIONS(1717), - [anon_sym_f64] = ACTIONS(1717), - [anon_sym_bool] = ACTIONS(1717), - [anon_sym_str] = ACTIONS(1717), - [anon_sym_char] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_COLON_COLON] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_impl] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_pub] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_trait] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_unsafe] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_move] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [sym_integer_literal] = ACTIONS(1715), - [aux_sym_string_literal_token1] = ACTIONS(1715), - [sym_char_literal] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1717), - [sym_super] = ACTIONS(1717), - [sym_crate] = ACTIONS(1717), - [sym_metavariable] = ACTIONS(1715), - [sym_raw_string_literal] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1715), + [ts_builtin_sym_end] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1804), + [anon_sym_SEMI] = ACTIONS(1802), + [anon_sym_macro_rules_BANG] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1802), + [anon_sym_LBRACK] = ACTIONS(1802), + [anon_sym_LBRACE] = ACTIONS(1802), + [anon_sym_RBRACE] = ACTIONS(1802), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_u8] = ACTIONS(1804), + [anon_sym_i8] = ACTIONS(1804), + [anon_sym_u16] = ACTIONS(1804), + [anon_sym_i16] = ACTIONS(1804), + [anon_sym_u32] = ACTIONS(1804), + [anon_sym_i32] = ACTIONS(1804), + [anon_sym_u64] = ACTIONS(1804), + [anon_sym_i64] = ACTIONS(1804), + [anon_sym_u128] = ACTIONS(1804), + [anon_sym_i128] = ACTIONS(1804), + [anon_sym_isize] = ACTIONS(1804), + [anon_sym_usize] = ACTIONS(1804), + [anon_sym_f32] = ACTIONS(1804), + [anon_sym_f64] = ACTIONS(1804), + [anon_sym_bool] = ACTIONS(1804), + [anon_sym_str] = ACTIONS(1804), + [anon_sym_char] = ACTIONS(1804), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_COLON_COLON] = ACTIONS(1802), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_AMP] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(1802), + [anon_sym_LT] = ACTIONS(1802), + [anon_sym_PIPE] = ACTIONS(1802), + [anon_sym_SQUOTE] = ACTIONS(1804), + [anon_sym_async] = ACTIONS(1804), + [anon_sym_break] = ACTIONS(1804), + [anon_sym_const] = ACTIONS(1804), + [anon_sym_continue] = ACTIONS(1804), + [anon_sym_default] = ACTIONS(1804), + [anon_sym_enum] = ACTIONS(1804), + [anon_sym_fn] = ACTIONS(1804), + [anon_sym_for] = ACTIONS(1804), + [anon_sym_if] = ACTIONS(1804), + [anon_sym_impl] = ACTIONS(1804), + [anon_sym_let] = ACTIONS(1804), + [anon_sym_loop] = ACTIONS(1804), + [anon_sym_match] = ACTIONS(1804), + [anon_sym_mod] = ACTIONS(1804), + [anon_sym_pub] = ACTIONS(1804), + [anon_sym_return] = ACTIONS(1804), + [anon_sym_static] = ACTIONS(1804), + [anon_sym_struct] = ACTIONS(1804), + [anon_sym_trait] = ACTIONS(1804), + [anon_sym_type] = ACTIONS(1804), + [anon_sym_union] = ACTIONS(1804), + [anon_sym_unsafe] = ACTIONS(1804), + [anon_sym_use] = ACTIONS(1804), + [anon_sym_while] = ACTIONS(1804), + [anon_sym_extern] = ACTIONS(1804), + [anon_sym_DOT_DOT] = ACTIONS(1802), + [anon_sym_yield] = ACTIONS(1804), + [anon_sym_move] = ACTIONS(1804), + [anon_sym_try] = ACTIONS(1804), + [sym_integer_literal] = ACTIONS(1802), + [aux_sym_string_literal_token1] = ACTIONS(1802), + [sym_char_literal] = ACTIONS(1802), + [anon_sym_true] = ACTIONS(1804), + [anon_sym_false] = ACTIONS(1804), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1804), + [sym_super] = ACTIONS(1804), + [sym_crate] = ACTIONS(1804), + [sym_metavariable] = ACTIONS(1802), + [sym_raw_string_literal] = ACTIONS(1802), + [sym_float_literal] = ACTIONS(1802), }, [506] = { [sym_line_comment] = STATE(506), [sym_block_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_macro_rules_BANG] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_u8] = ACTIONS(1721), - [anon_sym_i8] = ACTIONS(1721), - [anon_sym_u16] = ACTIONS(1721), - [anon_sym_i16] = ACTIONS(1721), - [anon_sym_u32] = ACTIONS(1721), - [anon_sym_i32] = ACTIONS(1721), - [anon_sym_u64] = ACTIONS(1721), - [anon_sym_i64] = ACTIONS(1721), - [anon_sym_u128] = ACTIONS(1721), - [anon_sym_i128] = ACTIONS(1721), - [anon_sym_isize] = ACTIONS(1721), - [anon_sym_usize] = ACTIONS(1721), - [anon_sym_f32] = ACTIONS(1721), - [anon_sym_f64] = ACTIONS(1721), - [anon_sym_bool] = ACTIONS(1721), - [anon_sym_str] = ACTIONS(1721), - [anon_sym_char] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_SQUOTE] = ACTIONS(1721), - [anon_sym_async] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_default] = ACTIONS(1721), - [anon_sym_enum] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_impl] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_mod] = ACTIONS(1721), - [anon_sym_pub] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_static] = ACTIONS(1721), - [anon_sym_struct] = ACTIONS(1721), - [anon_sym_trait] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_union] = ACTIONS(1721), - [anon_sym_unsafe] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_yield] = ACTIONS(1721), - [anon_sym_move] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [sym_integer_literal] = ACTIONS(1719), - [aux_sym_string_literal_token1] = ACTIONS(1719), - [sym_char_literal] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1721), - [sym_super] = ACTIONS(1721), - [sym_crate] = ACTIONS(1721), - [sym_metavariable] = ACTIONS(1719), - [sym_raw_string_literal] = ACTIONS(1719), - [sym_float_literal] = ACTIONS(1719), + [ts_builtin_sym_end] = ACTIONS(1806), + [sym_identifier] = ACTIONS(1808), + [anon_sym_SEMI] = ACTIONS(1806), + [anon_sym_macro_rules_BANG] = ACTIONS(1806), + [anon_sym_LPAREN] = ACTIONS(1806), + [anon_sym_LBRACK] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_RBRACE] = ACTIONS(1806), + [anon_sym_STAR] = ACTIONS(1806), + [anon_sym_u8] = ACTIONS(1808), + [anon_sym_i8] = ACTIONS(1808), + [anon_sym_u16] = ACTIONS(1808), + [anon_sym_i16] = ACTIONS(1808), + [anon_sym_u32] = ACTIONS(1808), + [anon_sym_i32] = ACTIONS(1808), + [anon_sym_u64] = ACTIONS(1808), + [anon_sym_i64] = ACTIONS(1808), + [anon_sym_u128] = ACTIONS(1808), + [anon_sym_i128] = ACTIONS(1808), + [anon_sym_isize] = ACTIONS(1808), + [anon_sym_usize] = ACTIONS(1808), + [anon_sym_f32] = ACTIONS(1808), + [anon_sym_f64] = ACTIONS(1808), + [anon_sym_bool] = ACTIONS(1808), + [anon_sym_str] = ACTIONS(1808), + [anon_sym_char] = ACTIONS(1808), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_COLON_COLON] = ACTIONS(1806), + [anon_sym_BANG] = ACTIONS(1806), + [anon_sym_AMP] = ACTIONS(1806), + [anon_sym_POUND] = ACTIONS(1806), + [anon_sym_LT] = ACTIONS(1806), + [anon_sym_PIPE] = ACTIONS(1806), + [anon_sym_SQUOTE] = ACTIONS(1808), + [anon_sym_async] = ACTIONS(1808), + [anon_sym_break] = ACTIONS(1808), + [anon_sym_const] = ACTIONS(1808), + [anon_sym_continue] = ACTIONS(1808), + [anon_sym_default] = ACTIONS(1808), + [anon_sym_enum] = ACTIONS(1808), + [anon_sym_fn] = ACTIONS(1808), + [anon_sym_for] = ACTIONS(1808), + [anon_sym_if] = ACTIONS(1808), + [anon_sym_impl] = ACTIONS(1808), + [anon_sym_let] = ACTIONS(1808), + [anon_sym_loop] = ACTIONS(1808), + [anon_sym_match] = ACTIONS(1808), + [anon_sym_mod] = ACTIONS(1808), + [anon_sym_pub] = ACTIONS(1808), + [anon_sym_return] = ACTIONS(1808), + [anon_sym_static] = ACTIONS(1808), + [anon_sym_struct] = ACTIONS(1808), + [anon_sym_trait] = ACTIONS(1808), + [anon_sym_type] = ACTIONS(1808), + [anon_sym_union] = ACTIONS(1808), + [anon_sym_unsafe] = ACTIONS(1808), + [anon_sym_use] = ACTIONS(1808), + [anon_sym_while] = ACTIONS(1808), + [anon_sym_extern] = ACTIONS(1808), + [anon_sym_DOT_DOT] = ACTIONS(1806), + [anon_sym_yield] = ACTIONS(1808), + [anon_sym_move] = ACTIONS(1808), + [anon_sym_try] = ACTIONS(1808), + [sym_integer_literal] = ACTIONS(1806), + [aux_sym_string_literal_token1] = ACTIONS(1806), + [sym_char_literal] = ACTIONS(1806), + [anon_sym_true] = ACTIONS(1808), + [anon_sym_false] = ACTIONS(1808), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1808), + [sym_super] = ACTIONS(1808), + [sym_crate] = ACTIONS(1808), + [sym_metavariable] = ACTIONS(1806), + [sym_raw_string_literal] = ACTIONS(1806), + [sym_float_literal] = ACTIONS(1806), }, [507] = { [sym_line_comment] = STATE(507), [sym_block_comment] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1723), - [sym_identifier] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_macro_rules_BANG] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_u8] = ACTIONS(1725), - [anon_sym_i8] = ACTIONS(1725), - [anon_sym_u16] = ACTIONS(1725), - [anon_sym_i16] = ACTIONS(1725), - [anon_sym_u32] = ACTIONS(1725), - [anon_sym_i32] = ACTIONS(1725), - [anon_sym_u64] = ACTIONS(1725), - [anon_sym_i64] = ACTIONS(1725), - [anon_sym_u128] = ACTIONS(1725), - [anon_sym_i128] = ACTIONS(1725), - [anon_sym_isize] = ACTIONS(1725), - [anon_sym_usize] = ACTIONS(1725), - [anon_sym_f32] = ACTIONS(1725), - [anon_sym_f64] = ACTIONS(1725), - [anon_sym_bool] = ACTIONS(1725), - [anon_sym_str] = ACTIONS(1725), - [anon_sym_char] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_COLON_COLON] = ACTIONS(1723), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [anon_sym_fn] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_impl] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_mod] = ACTIONS(1725), - [anon_sym_pub] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1725), - [anon_sym_trait] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_union] = ACTIONS(1725), - [anon_sym_unsafe] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_move] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [sym_integer_literal] = ACTIONS(1723), - [aux_sym_string_literal_token1] = ACTIONS(1723), - [sym_char_literal] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_crate] = ACTIONS(1725), - [sym_metavariable] = ACTIONS(1723), - [sym_raw_string_literal] = ACTIONS(1723), - [sym_float_literal] = ACTIONS(1723), + [ts_builtin_sym_end] = ACTIONS(1810), + [sym_identifier] = ACTIONS(1812), + [anon_sym_SEMI] = ACTIONS(1810), + [anon_sym_macro_rules_BANG] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LBRACE] = ACTIONS(1810), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_STAR] = ACTIONS(1810), + [anon_sym_u8] = ACTIONS(1812), + [anon_sym_i8] = ACTIONS(1812), + [anon_sym_u16] = ACTIONS(1812), + [anon_sym_i16] = ACTIONS(1812), + [anon_sym_u32] = ACTIONS(1812), + [anon_sym_i32] = ACTIONS(1812), + [anon_sym_u64] = ACTIONS(1812), + [anon_sym_i64] = ACTIONS(1812), + [anon_sym_u128] = ACTIONS(1812), + [anon_sym_i128] = ACTIONS(1812), + [anon_sym_isize] = ACTIONS(1812), + [anon_sym_usize] = ACTIONS(1812), + [anon_sym_f32] = ACTIONS(1812), + [anon_sym_f64] = ACTIONS(1812), + [anon_sym_bool] = ACTIONS(1812), + [anon_sym_str] = ACTIONS(1812), + [anon_sym_char] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_COLON_COLON] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_AMP] = ACTIONS(1810), + [anon_sym_POUND] = ACTIONS(1810), + [anon_sym_LT] = ACTIONS(1810), + [anon_sym_PIPE] = ACTIONS(1810), + [anon_sym_SQUOTE] = ACTIONS(1812), + [anon_sym_async] = ACTIONS(1812), + [anon_sym_break] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(1812), + [anon_sym_continue] = ACTIONS(1812), + [anon_sym_default] = ACTIONS(1812), + [anon_sym_enum] = ACTIONS(1812), + [anon_sym_fn] = ACTIONS(1812), + [anon_sym_for] = ACTIONS(1812), + [anon_sym_if] = ACTIONS(1812), + [anon_sym_impl] = ACTIONS(1812), + [anon_sym_let] = ACTIONS(1812), + [anon_sym_loop] = ACTIONS(1812), + [anon_sym_match] = ACTIONS(1812), + [anon_sym_mod] = ACTIONS(1812), + [anon_sym_pub] = ACTIONS(1812), + [anon_sym_return] = ACTIONS(1812), + [anon_sym_static] = ACTIONS(1812), + [anon_sym_struct] = ACTIONS(1812), + [anon_sym_trait] = ACTIONS(1812), + [anon_sym_type] = ACTIONS(1812), + [anon_sym_union] = ACTIONS(1812), + [anon_sym_unsafe] = ACTIONS(1812), + [anon_sym_use] = ACTIONS(1812), + [anon_sym_while] = ACTIONS(1812), + [anon_sym_extern] = ACTIONS(1812), + [anon_sym_DOT_DOT] = ACTIONS(1810), + [anon_sym_yield] = ACTIONS(1812), + [anon_sym_move] = ACTIONS(1812), + [anon_sym_try] = ACTIONS(1812), + [sym_integer_literal] = ACTIONS(1810), + [aux_sym_string_literal_token1] = ACTIONS(1810), + [sym_char_literal] = ACTIONS(1810), + [anon_sym_true] = ACTIONS(1812), + [anon_sym_false] = ACTIONS(1812), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1812), + [sym_super] = ACTIONS(1812), + [sym_crate] = ACTIONS(1812), + [sym_metavariable] = ACTIONS(1810), + [sym_raw_string_literal] = ACTIONS(1810), + [sym_float_literal] = ACTIONS(1810), }, [508] = { [sym_line_comment] = STATE(508), [sym_block_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_macro_rules_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_u8] = ACTIONS(1729), - [anon_sym_i8] = ACTIONS(1729), - [anon_sym_u16] = ACTIONS(1729), - [anon_sym_i16] = ACTIONS(1729), - [anon_sym_u32] = ACTIONS(1729), - [anon_sym_i32] = ACTIONS(1729), - [anon_sym_u64] = ACTIONS(1729), - [anon_sym_i64] = ACTIONS(1729), - [anon_sym_u128] = ACTIONS(1729), - [anon_sym_i128] = ACTIONS(1729), - [anon_sym_isize] = ACTIONS(1729), - [anon_sym_usize] = ACTIONS(1729), - [anon_sym_f32] = ACTIONS(1729), - [anon_sym_f64] = ACTIONS(1729), - [anon_sym_bool] = ACTIONS(1729), - [anon_sym_str] = ACTIONS(1729), - [anon_sym_char] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1727), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_POUND] = ACTIONS(1727), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_fn] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_impl] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_mod] = ACTIONS(1729), - [anon_sym_pub] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_trait] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_unsafe] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_DOT_DOT] = ACTIONS(1727), - [anon_sym_yield] = ACTIONS(1729), - [anon_sym_move] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [sym_integer_literal] = ACTIONS(1727), - [aux_sym_string_literal_token1] = ACTIONS(1727), - [sym_char_literal] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1729), - [sym_super] = ACTIONS(1729), - [sym_crate] = ACTIONS(1729), - [sym_metavariable] = ACTIONS(1727), - [sym_raw_string_literal] = ACTIONS(1727), - [sym_float_literal] = ACTIONS(1727), + [ts_builtin_sym_end] = ACTIONS(1814), + [sym_identifier] = ACTIONS(1816), + [anon_sym_SEMI] = ACTIONS(1814), + [anon_sym_macro_rules_BANG] = ACTIONS(1814), + [anon_sym_LPAREN] = ACTIONS(1814), + [anon_sym_LBRACK] = ACTIONS(1814), + [anon_sym_LBRACE] = ACTIONS(1814), + [anon_sym_RBRACE] = ACTIONS(1814), + [anon_sym_STAR] = ACTIONS(1814), + [anon_sym_u8] = ACTIONS(1816), + [anon_sym_i8] = ACTIONS(1816), + [anon_sym_u16] = ACTIONS(1816), + [anon_sym_i16] = ACTIONS(1816), + [anon_sym_u32] = ACTIONS(1816), + [anon_sym_i32] = ACTIONS(1816), + [anon_sym_u64] = ACTIONS(1816), + [anon_sym_i64] = ACTIONS(1816), + [anon_sym_u128] = ACTIONS(1816), + [anon_sym_i128] = ACTIONS(1816), + [anon_sym_isize] = ACTIONS(1816), + [anon_sym_usize] = ACTIONS(1816), + [anon_sym_f32] = ACTIONS(1816), + [anon_sym_f64] = ACTIONS(1816), + [anon_sym_bool] = ACTIONS(1816), + [anon_sym_str] = ACTIONS(1816), + [anon_sym_char] = ACTIONS(1816), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_COLON_COLON] = ACTIONS(1814), + [anon_sym_BANG] = ACTIONS(1814), + [anon_sym_AMP] = ACTIONS(1814), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_LT] = ACTIONS(1814), + [anon_sym_PIPE] = ACTIONS(1814), + [anon_sym_SQUOTE] = ACTIONS(1816), + [anon_sym_async] = ACTIONS(1816), + [anon_sym_break] = ACTIONS(1816), + [anon_sym_const] = ACTIONS(1816), + [anon_sym_continue] = ACTIONS(1816), + [anon_sym_default] = ACTIONS(1816), + [anon_sym_enum] = ACTIONS(1816), + [anon_sym_fn] = ACTIONS(1816), + [anon_sym_for] = ACTIONS(1816), + [anon_sym_if] = ACTIONS(1816), + [anon_sym_impl] = ACTIONS(1816), + [anon_sym_let] = ACTIONS(1816), + [anon_sym_loop] = ACTIONS(1816), + [anon_sym_match] = ACTIONS(1816), + [anon_sym_mod] = ACTIONS(1816), + [anon_sym_pub] = ACTIONS(1816), + [anon_sym_return] = ACTIONS(1816), + [anon_sym_static] = ACTIONS(1816), + [anon_sym_struct] = ACTIONS(1816), + [anon_sym_trait] = ACTIONS(1816), + [anon_sym_type] = ACTIONS(1816), + [anon_sym_union] = ACTIONS(1816), + [anon_sym_unsafe] = ACTIONS(1816), + [anon_sym_use] = ACTIONS(1816), + [anon_sym_while] = ACTIONS(1816), + [anon_sym_extern] = ACTIONS(1816), + [anon_sym_DOT_DOT] = ACTIONS(1814), + [anon_sym_yield] = ACTIONS(1816), + [anon_sym_move] = ACTIONS(1816), + [anon_sym_try] = ACTIONS(1816), + [sym_integer_literal] = ACTIONS(1814), + [aux_sym_string_literal_token1] = ACTIONS(1814), + [sym_char_literal] = ACTIONS(1814), + [anon_sym_true] = ACTIONS(1816), + [anon_sym_false] = ACTIONS(1816), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1816), + [sym_super] = ACTIONS(1816), + [sym_crate] = ACTIONS(1816), + [sym_metavariable] = ACTIONS(1814), + [sym_raw_string_literal] = ACTIONS(1814), + [sym_float_literal] = ACTIONS(1814), }, [509] = { [sym_line_comment] = STATE(509), [sym_block_comment] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_macro_rules_BANG] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_COLON_COLON] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_POUND] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_SQUOTE] = ACTIONS(1733), - [anon_sym_async] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_default] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), - [anon_sym_fn] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_impl] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1733), - [anon_sym_pub] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_static] = ACTIONS(1733), - [anon_sym_struct] = ACTIONS(1733), - [anon_sym_trait] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_union] = ACTIONS(1733), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_DOT_DOT] = ACTIONS(1731), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_move] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [sym_integer_literal] = ACTIONS(1731), - [aux_sym_string_literal_token1] = ACTIONS(1731), - [sym_char_literal] = ACTIONS(1731), - [anon_sym_true] = ACTIONS(1733), - [anon_sym_false] = ACTIONS(1733), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1733), - [sym_super] = ACTIONS(1733), - [sym_crate] = ACTIONS(1733), - [sym_metavariable] = ACTIONS(1731), - [sym_raw_string_literal] = ACTIONS(1731), - [sym_float_literal] = ACTIONS(1731), + [ts_builtin_sym_end] = ACTIONS(1818), + [sym_identifier] = ACTIONS(1820), + [anon_sym_SEMI] = ACTIONS(1818), + [anon_sym_macro_rules_BANG] = ACTIONS(1818), + [anon_sym_LPAREN] = ACTIONS(1818), + [anon_sym_LBRACK] = ACTIONS(1818), + [anon_sym_LBRACE] = ACTIONS(1818), + [anon_sym_RBRACE] = ACTIONS(1818), + [anon_sym_STAR] = ACTIONS(1818), + [anon_sym_u8] = ACTIONS(1820), + [anon_sym_i8] = ACTIONS(1820), + [anon_sym_u16] = ACTIONS(1820), + [anon_sym_i16] = ACTIONS(1820), + [anon_sym_u32] = ACTIONS(1820), + [anon_sym_i32] = ACTIONS(1820), + [anon_sym_u64] = ACTIONS(1820), + [anon_sym_i64] = ACTIONS(1820), + [anon_sym_u128] = ACTIONS(1820), + [anon_sym_i128] = ACTIONS(1820), + [anon_sym_isize] = ACTIONS(1820), + [anon_sym_usize] = ACTIONS(1820), + [anon_sym_f32] = ACTIONS(1820), + [anon_sym_f64] = ACTIONS(1820), + [anon_sym_bool] = ACTIONS(1820), + [anon_sym_str] = ACTIONS(1820), + [anon_sym_char] = ACTIONS(1820), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_COLON_COLON] = ACTIONS(1818), + [anon_sym_BANG] = ACTIONS(1818), + [anon_sym_AMP] = ACTIONS(1818), + [anon_sym_POUND] = ACTIONS(1818), + [anon_sym_LT] = ACTIONS(1818), + [anon_sym_PIPE] = ACTIONS(1818), + [anon_sym_SQUOTE] = ACTIONS(1820), + [anon_sym_async] = ACTIONS(1820), + [anon_sym_break] = ACTIONS(1820), + [anon_sym_const] = ACTIONS(1820), + [anon_sym_continue] = ACTIONS(1820), + [anon_sym_default] = ACTIONS(1820), + [anon_sym_enum] = ACTIONS(1820), + [anon_sym_fn] = ACTIONS(1820), + [anon_sym_for] = ACTIONS(1820), + [anon_sym_if] = ACTIONS(1820), + [anon_sym_impl] = ACTIONS(1820), + [anon_sym_let] = ACTIONS(1820), + [anon_sym_loop] = ACTIONS(1820), + [anon_sym_match] = ACTIONS(1820), + [anon_sym_mod] = ACTIONS(1820), + [anon_sym_pub] = ACTIONS(1820), + [anon_sym_return] = ACTIONS(1820), + [anon_sym_static] = ACTIONS(1820), + [anon_sym_struct] = ACTIONS(1820), + [anon_sym_trait] = ACTIONS(1820), + [anon_sym_type] = ACTIONS(1820), + [anon_sym_union] = ACTIONS(1820), + [anon_sym_unsafe] = ACTIONS(1820), + [anon_sym_use] = ACTIONS(1820), + [anon_sym_while] = ACTIONS(1820), + [anon_sym_extern] = ACTIONS(1820), + [anon_sym_DOT_DOT] = ACTIONS(1818), + [anon_sym_yield] = ACTIONS(1820), + [anon_sym_move] = ACTIONS(1820), + [anon_sym_try] = ACTIONS(1820), + [sym_integer_literal] = ACTIONS(1818), + [aux_sym_string_literal_token1] = ACTIONS(1818), + [sym_char_literal] = ACTIONS(1818), + [anon_sym_true] = ACTIONS(1820), + [anon_sym_false] = ACTIONS(1820), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1820), + [sym_super] = ACTIONS(1820), + [sym_crate] = ACTIONS(1820), + [sym_metavariable] = ACTIONS(1818), + [sym_raw_string_literal] = ACTIONS(1818), + [sym_float_literal] = ACTIONS(1818), }, [510] = { [sym_line_comment] = STATE(510), [sym_block_comment] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_macro_rules_BANG] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_u8] = ACTIONS(1737), - [anon_sym_i8] = ACTIONS(1737), - [anon_sym_u16] = ACTIONS(1737), - [anon_sym_i16] = ACTIONS(1737), - [anon_sym_u32] = ACTIONS(1737), - [anon_sym_i32] = ACTIONS(1737), - [anon_sym_u64] = ACTIONS(1737), - [anon_sym_i64] = ACTIONS(1737), - [anon_sym_u128] = ACTIONS(1737), - [anon_sym_i128] = ACTIONS(1737), - [anon_sym_isize] = ACTIONS(1737), - [anon_sym_usize] = ACTIONS(1737), - [anon_sym_f32] = ACTIONS(1737), - [anon_sym_f64] = ACTIONS(1737), - [anon_sym_bool] = ACTIONS(1737), - [anon_sym_str] = ACTIONS(1737), - [anon_sym_char] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_fn] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_impl] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_loop] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), - [anon_sym_mod] = ACTIONS(1737), - [anon_sym_pub] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_trait] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), - [anon_sym_union] = ACTIONS(1737), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_use] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym_DOT_DOT] = ACTIONS(1735), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_move] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [sym_integer_literal] = ACTIONS(1735), - [aux_sym_string_literal_token1] = ACTIONS(1735), - [sym_char_literal] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_crate] = ACTIONS(1737), - [sym_metavariable] = ACTIONS(1735), - [sym_raw_string_literal] = ACTIONS(1735), - [sym_float_literal] = ACTIONS(1735), + [ts_builtin_sym_end] = ACTIONS(1822), + [sym_identifier] = ACTIONS(1824), + [anon_sym_SEMI] = ACTIONS(1822), + [anon_sym_macro_rules_BANG] = ACTIONS(1822), + [anon_sym_LPAREN] = ACTIONS(1822), + [anon_sym_LBRACK] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(1822), + [anon_sym_RBRACE] = ACTIONS(1822), + [anon_sym_STAR] = ACTIONS(1822), + [anon_sym_u8] = ACTIONS(1824), + [anon_sym_i8] = ACTIONS(1824), + [anon_sym_u16] = ACTIONS(1824), + [anon_sym_i16] = ACTIONS(1824), + [anon_sym_u32] = ACTIONS(1824), + [anon_sym_i32] = ACTIONS(1824), + [anon_sym_u64] = ACTIONS(1824), + [anon_sym_i64] = ACTIONS(1824), + [anon_sym_u128] = ACTIONS(1824), + [anon_sym_i128] = ACTIONS(1824), + [anon_sym_isize] = ACTIONS(1824), + [anon_sym_usize] = ACTIONS(1824), + [anon_sym_f32] = ACTIONS(1824), + [anon_sym_f64] = ACTIONS(1824), + [anon_sym_bool] = ACTIONS(1824), + [anon_sym_str] = ACTIONS(1824), + [anon_sym_char] = ACTIONS(1824), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_COLON_COLON] = ACTIONS(1822), + [anon_sym_BANG] = ACTIONS(1822), + [anon_sym_AMP] = ACTIONS(1822), + [anon_sym_POUND] = ACTIONS(1822), + [anon_sym_LT] = ACTIONS(1822), + [anon_sym_PIPE] = ACTIONS(1822), + [anon_sym_SQUOTE] = ACTIONS(1824), + [anon_sym_async] = ACTIONS(1824), + [anon_sym_break] = ACTIONS(1824), + [anon_sym_const] = ACTIONS(1824), + [anon_sym_continue] = ACTIONS(1824), + [anon_sym_default] = ACTIONS(1824), + [anon_sym_enum] = ACTIONS(1824), + [anon_sym_fn] = ACTIONS(1824), + [anon_sym_for] = ACTIONS(1824), + [anon_sym_if] = ACTIONS(1824), + [anon_sym_impl] = ACTIONS(1824), + [anon_sym_let] = ACTIONS(1824), + [anon_sym_loop] = ACTIONS(1824), + [anon_sym_match] = ACTIONS(1824), + [anon_sym_mod] = ACTIONS(1824), + [anon_sym_pub] = ACTIONS(1824), + [anon_sym_return] = ACTIONS(1824), + [anon_sym_static] = ACTIONS(1824), + [anon_sym_struct] = ACTIONS(1824), + [anon_sym_trait] = ACTIONS(1824), + [anon_sym_type] = ACTIONS(1824), + [anon_sym_union] = ACTIONS(1824), + [anon_sym_unsafe] = ACTIONS(1824), + [anon_sym_use] = ACTIONS(1824), + [anon_sym_while] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1824), + [anon_sym_DOT_DOT] = ACTIONS(1822), + [anon_sym_yield] = ACTIONS(1824), + [anon_sym_move] = ACTIONS(1824), + [anon_sym_try] = ACTIONS(1824), + [sym_integer_literal] = ACTIONS(1822), + [aux_sym_string_literal_token1] = ACTIONS(1822), + [sym_char_literal] = ACTIONS(1822), + [anon_sym_true] = ACTIONS(1824), + [anon_sym_false] = ACTIONS(1824), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1824), + [sym_super] = ACTIONS(1824), + [sym_crate] = ACTIONS(1824), + [sym_metavariable] = ACTIONS(1822), + [sym_raw_string_literal] = ACTIONS(1822), + [sym_float_literal] = ACTIONS(1822), }, [511] = { [sym_line_comment] = STATE(511), [sym_block_comment] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_macro_rules_BANG] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_u8] = ACTIONS(1741), - [anon_sym_i8] = ACTIONS(1741), - [anon_sym_u16] = ACTIONS(1741), - [anon_sym_i16] = ACTIONS(1741), - [anon_sym_u32] = ACTIONS(1741), - [anon_sym_i32] = ACTIONS(1741), - [anon_sym_u64] = ACTIONS(1741), - [anon_sym_i64] = ACTIONS(1741), - [anon_sym_u128] = ACTIONS(1741), - [anon_sym_i128] = ACTIONS(1741), - [anon_sym_isize] = ACTIONS(1741), - [anon_sym_usize] = ACTIONS(1741), - [anon_sym_f32] = ACTIONS(1741), - [anon_sym_f64] = ACTIONS(1741), - [anon_sym_bool] = ACTIONS(1741), - [anon_sym_str] = ACTIONS(1741), - [anon_sym_char] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), - [anon_sym_fn] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_impl] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_mod] = ACTIONS(1741), - [anon_sym_pub] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_struct] = ACTIONS(1741), - [anon_sym_trait] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_union] = ACTIONS(1741), - [anon_sym_unsafe] = ACTIONS(1741), - [anon_sym_use] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_extern] = ACTIONS(1741), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_move] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [sym_integer_literal] = ACTIONS(1739), - [aux_sym_string_literal_token1] = ACTIONS(1739), - [sym_char_literal] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_crate] = ACTIONS(1741), - [sym_metavariable] = ACTIONS(1739), - [sym_raw_string_literal] = ACTIONS(1739), - [sym_float_literal] = ACTIONS(1739), + [ts_builtin_sym_end] = ACTIONS(1826), + [sym_identifier] = ACTIONS(1828), + [anon_sym_SEMI] = ACTIONS(1826), + [anon_sym_macro_rules_BANG] = ACTIONS(1826), + [anon_sym_LPAREN] = ACTIONS(1826), + [anon_sym_LBRACK] = ACTIONS(1826), + [anon_sym_LBRACE] = ACTIONS(1826), + [anon_sym_RBRACE] = ACTIONS(1826), + [anon_sym_STAR] = ACTIONS(1826), + [anon_sym_u8] = ACTIONS(1828), + [anon_sym_i8] = ACTIONS(1828), + [anon_sym_u16] = ACTIONS(1828), + [anon_sym_i16] = ACTIONS(1828), + [anon_sym_u32] = ACTIONS(1828), + [anon_sym_i32] = ACTIONS(1828), + [anon_sym_u64] = ACTIONS(1828), + [anon_sym_i64] = ACTIONS(1828), + [anon_sym_u128] = ACTIONS(1828), + [anon_sym_i128] = ACTIONS(1828), + [anon_sym_isize] = ACTIONS(1828), + [anon_sym_usize] = ACTIONS(1828), + [anon_sym_f32] = ACTIONS(1828), + [anon_sym_f64] = ACTIONS(1828), + [anon_sym_bool] = ACTIONS(1828), + [anon_sym_str] = ACTIONS(1828), + [anon_sym_char] = ACTIONS(1828), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_COLON_COLON] = ACTIONS(1826), + [anon_sym_BANG] = ACTIONS(1826), + [anon_sym_AMP] = ACTIONS(1826), + [anon_sym_POUND] = ACTIONS(1826), + [anon_sym_LT] = ACTIONS(1826), + [anon_sym_PIPE] = ACTIONS(1826), + [anon_sym_SQUOTE] = ACTIONS(1828), + [anon_sym_async] = ACTIONS(1828), + [anon_sym_break] = ACTIONS(1828), + [anon_sym_const] = ACTIONS(1828), + [anon_sym_continue] = ACTIONS(1828), + [anon_sym_default] = ACTIONS(1828), + [anon_sym_enum] = ACTIONS(1828), + [anon_sym_fn] = ACTIONS(1828), + [anon_sym_for] = ACTIONS(1828), + [anon_sym_if] = ACTIONS(1828), + [anon_sym_impl] = ACTIONS(1828), + [anon_sym_let] = ACTIONS(1828), + [anon_sym_loop] = ACTIONS(1828), + [anon_sym_match] = ACTIONS(1828), + [anon_sym_mod] = ACTIONS(1828), + [anon_sym_pub] = ACTIONS(1828), + [anon_sym_return] = ACTIONS(1828), + [anon_sym_static] = ACTIONS(1828), + [anon_sym_struct] = ACTIONS(1828), + [anon_sym_trait] = ACTIONS(1828), + [anon_sym_type] = ACTIONS(1828), + [anon_sym_union] = ACTIONS(1828), + [anon_sym_unsafe] = ACTIONS(1828), + [anon_sym_use] = ACTIONS(1828), + [anon_sym_while] = ACTIONS(1828), + [anon_sym_extern] = ACTIONS(1828), + [anon_sym_DOT_DOT] = ACTIONS(1826), + [anon_sym_yield] = ACTIONS(1828), + [anon_sym_move] = ACTIONS(1828), + [anon_sym_try] = ACTIONS(1828), + [sym_integer_literal] = ACTIONS(1826), + [aux_sym_string_literal_token1] = ACTIONS(1826), + [sym_char_literal] = ACTIONS(1826), + [anon_sym_true] = ACTIONS(1828), + [anon_sym_false] = ACTIONS(1828), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1828), + [sym_super] = ACTIONS(1828), + [sym_crate] = ACTIONS(1828), + [sym_metavariable] = ACTIONS(1826), + [sym_raw_string_literal] = ACTIONS(1826), + [sym_float_literal] = ACTIONS(1826), }, [512] = { - [sym_empty_statement] = STATE(1433), - [sym_macro_definition] = STATE(1433), - [sym_attribute_item] = STATE(1433), - [sym_inner_attribute_item] = STATE(1433), - [sym_mod_item] = STATE(1433), - [sym_foreign_mod_item] = STATE(1433), - [sym_struct_item] = STATE(1433), - [sym_union_item] = STATE(1433), - [sym_enum_item] = STATE(1433), - [sym_extern_crate_declaration] = STATE(1433), - [sym_const_item] = STATE(1433), - [sym_static_item] = STATE(1433), - [sym_type_item] = STATE(1433), - [sym_function_item] = STATE(1433), - [sym_function_signature_item] = STATE(1433), - [sym_function_modifiers] = STATE(3512), - [sym_impl_item] = STATE(1433), - [sym_trait_item] = STATE(1433), - [sym_associated_type] = STATE(1433), - [sym_let_declaration] = STATE(1433), - [sym_use_declaration] = STATE(1433), - [sym_extern_modifier] = STATE(2123), - [sym_visibility_modifier] = STATE(1927), - [sym_bracketed_type] = STATE(3248), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_macro_invocation] = STATE(1433), - [sym_scoped_identifier] = STATE(3071), [sym_line_comment] = STATE(512), [sym_block_comment] = STATE(512), - [aux_sym_declaration_list_repeat1] = STATE(591), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_macro_rules_BANG] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1749), - [anon_sym_u8] = ACTIONS(1751), - [anon_sym_i8] = ACTIONS(1751), - [anon_sym_u16] = ACTIONS(1751), - [anon_sym_i16] = ACTIONS(1751), - [anon_sym_u32] = ACTIONS(1751), - [anon_sym_i32] = ACTIONS(1751), - [anon_sym_u64] = ACTIONS(1751), - [anon_sym_i64] = ACTIONS(1751), - [anon_sym_u128] = ACTIONS(1751), - [anon_sym_i128] = ACTIONS(1751), - [anon_sym_isize] = ACTIONS(1751), - [anon_sym_usize] = ACTIONS(1751), - [anon_sym_f32] = ACTIONS(1751), - [anon_sym_f64] = ACTIONS(1751), - [anon_sym_bool] = ACTIONS(1751), - [anon_sym_str] = ACTIONS(1751), - [anon_sym_char] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1753), - [anon_sym_POUND] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [anon_sym_fn] = ACTIONS(1763), - [anon_sym_impl] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(65), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_trait] = ACTIONS(1775), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1779), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1787), - [sym_super] = ACTIONS(1787), - [sym_crate] = ACTIONS(1789), - [sym_metavariable] = ACTIONS(1791), + [ts_builtin_sym_end] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1832), + [anon_sym_SEMI] = ACTIONS(1830), + [anon_sym_macro_rules_BANG] = ACTIONS(1830), + [anon_sym_LPAREN] = ACTIONS(1830), + [anon_sym_LBRACK] = ACTIONS(1830), + [anon_sym_LBRACE] = ACTIONS(1830), + [anon_sym_RBRACE] = ACTIONS(1830), + [anon_sym_STAR] = ACTIONS(1830), + [anon_sym_u8] = ACTIONS(1832), + [anon_sym_i8] = ACTIONS(1832), + [anon_sym_u16] = ACTIONS(1832), + [anon_sym_i16] = ACTIONS(1832), + [anon_sym_u32] = ACTIONS(1832), + [anon_sym_i32] = ACTIONS(1832), + [anon_sym_u64] = ACTIONS(1832), + [anon_sym_i64] = ACTIONS(1832), + [anon_sym_u128] = ACTIONS(1832), + [anon_sym_i128] = ACTIONS(1832), + [anon_sym_isize] = ACTIONS(1832), + [anon_sym_usize] = ACTIONS(1832), + [anon_sym_f32] = ACTIONS(1832), + [anon_sym_f64] = ACTIONS(1832), + [anon_sym_bool] = ACTIONS(1832), + [anon_sym_str] = ACTIONS(1832), + [anon_sym_char] = ACTIONS(1832), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_COLON_COLON] = ACTIONS(1830), + [anon_sym_BANG] = ACTIONS(1830), + [anon_sym_AMP] = ACTIONS(1830), + [anon_sym_POUND] = ACTIONS(1830), + [anon_sym_LT] = ACTIONS(1830), + [anon_sym_PIPE] = ACTIONS(1830), + [anon_sym_SQUOTE] = ACTIONS(1832), + [anon_sym_async] = ACTIONS(1832), + [anon_sym_break] = ACTIONS(1832), + [anon_sym_const] = ACTIONS(1832), + [anon_sym_continue] = ACTIONS(1832), + [anon_sym_default] = ACTIONS(1832), + [anon_sym_enum] = ACTIONS(1832), + [anon_sym_fn] = ACTIONS(1832), + [anon_sym_for] = ACTIONS(1832), + [anon_sym_if] = ACTIONS(1832), + [anon_sym_impl] = ACTIONS(1832), + [anon_sym_let] = ACTIONS(1832), + [anon_sym_loop] = ACTIONS(1832), + [anon_sym_match] = ACTIONS(1832), + [anon_sym_mod] = ACTIONS(1832), + [anon_sym_pub] = ACTIONS(1832), + [anon_sym_return] = ACTIONS(1832), + [anon_sym_static] = ACTIONS(1832), + [anon_sym_struct] = ACTIONS(1832), + [anon_sym_trait] = ACTIONS(1832), + [anon_sym_type] = ACTIONS(1832), + [anon_sym_union] = ACTIONS(1832), + [anon_sym_unsafe] = ACTIONS(1832), + [anon_sym_use] = ACTIONS(1832), + [anon_sym_while] = ACTIONS(1832), + [anon_sym_extern] = ACTIONS(1832), + [anon_sym_DOT_DOT] = ACTIONS(1830), + [anon_sym_yield] = ACTIONS(1832), + [anon_sym_move] = ACTIONS(1832), + [anon_sym_try] = ACTIONS(1832), + [sym_integer_literal] = ACTIONS(1830), + [aux_sym_string_literal_token1] = ACTIONS(1830), + [sym_char_literal] = ACTIONS(1830), + [anon_sym_true] = ACTIONS(1832), + [anon_sym_false] = ACTIONS(1832), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1832), + [sym_super] = ACTIONS(1832), + [sym_crate] = ACTIONS(1832), + [sym_metavariable] = ACTIONS(1830), + [sym_raw_string_literal] = ACTIONS(1830), + [sym_float_literal] = ACTIONS(1830), }, [513] = { [sym_line_comment] = STATE(513), [sym_block_comment] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(876), - [sym_identifier] = ACTIONS(878), - [anon_sym_SEMI] = ACTIONS(876), - [anon_sym_macro_rules_BANG] = ACTIONS(876), - [anon_sym_LPAREN] = ACTIONS(876), - [anon_sym_LBRACK] = ACTIONS(876), - [anon_sym_LBRACE] = ACTIONS(876), - [anon_sym_RBRACE] = ACTIONS(876), - [anon_sym_STAR] = ACTIONS(876), - [anon_sym_u8] = ACTIONS(878), - [anon_sym_i8] = ACTIONS(878), - [anon_sym_u16] = ACTIONS(878), - [anon_sym_i16] = ACTIONS(878), - [anon_sym_u32] = ACTIONS(878), - [anon_sym_i32] = ACTIONS(878), - [anon_sym_u64] = ACTIONS(878), - [anon_sym_i64] = ACTIONS(878), - [anon_sym_u128] = ACTIONS(878), - [anon_sym_i128] = ACTIONS(878), - [anon_sym_isize] = ACTIONS(878), - [anon_sym_usize] = ACTIONS(878), - [anon_sym_f32] = ACTIONS(878), - [anon_sym_f64] = ACTIONS(878), - [anon_sym_bool] = ACTIONS(878), - [anon_sym_str] = ACTIONS(878), - [anon_sym_char] = ACTIONS(878), - [anon_sym_DASH] = ACTIONS(876), - [anon_sym_COLON_COLON] = ACTIONS(876), - [anon_sym_BANG] = ACTIONS(876), - [anon_sym_AMP] = ACTIONS(876), - [anon_sym_POUND] = ACTIONS(876), - [anon_sym_LT] = ACTIONS(876), - [anon_sym_PIPE] = ACTIONS(876), - [anon_sym_SQUOTE] = ACTIONS(878), - [anon_sym_async] = ACTIONS(878), - [anon_sym_break] = ACTIONS(878), - [anon_sym_const] = ACTIONS(878), - [anon_sym_continue] = ACTIONS(878), - [anon_sym_default] = ACTIONS(878), - [anon_sym_enum] = ACTIONS(878), - [anon_sym_fn] = ACTIONS(878), - [anon_sym_for] = ACTIONS(878), - [anon_sym_if] = ACTIONS(878), - [anon_sym_impl] = ACTIONS(878), - [anon_sym_let] = ACTIONS(878), - [anon_sym_loop] = ACTIONS(878), - [anon_sym_match] = ACTIONS(878), - [anon_sym_mod] = ACTIONS(878), - [anon_sym_pub] = ACTIONS(878), - [anon_sym_return] = ACTIONS(878), - [anon_sym_static] = ACTIONS(878), - [anon_sym_struct] = ACTIONS(878), - [anon_sym_trait] = ACTIONS(878), - [anon_sym_type] = ACTIONS(878), - [anon_sym_union] = ACTIONS(878), - [anon_sym_unsafe] = ACTIONS(878), - [anon_sym_use] = ACTIONS(878), - [anon_sym_while] = ACTIONS(878), - [anon_sym_extern] = ACTIONS(878), - [anon_sym_DOT_DOT] = ACTIONS(876), - [anon_sym_yield] = ACTIONS(878), - [anon_sym_move] = ACTIONS(878), - [anon_sym_try] = ACTIONS(878), - [sym_integer_literal] = ACTIONS(876), - [aux_sym_string_literal_token1] = ACTIONS(876), - [sym_char_literal] = ACTIONS(876), - [anon_sym_true] = ACTIONS(878), - [anon_sym_false] = ACTIONS(878), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(878), - [sym_super] = ACTIONS(878), - [sym_crate] = ACTIONS(878), - [sym_metavariable] = ACTIONS(876), - [sym_raw_string_literal] = ACTIONS(876), - [sym_float_literal] = ACTIONS(876), + [ts_builtin_sym_end] = ACTIONS(1834), + [sym_identifier] = ACTIONS(1836), + [anon_sym_SEMI] = ACTIONS(1834), + [anon_sym_macro_rules_BANG] = ACTIONS(1834), + [anon_sym_LPAREN] = ACTIONS(1834), + [anon_sym_LBRACK] = ACTIONS(1834), + [anon_sym_LBRACE] = ACTIONS(1834), + [anon_sym_RBRACE] = ACTIONS(1834), + [anon_sym_STAR] = ACTIONS(1834), + [anon_sym_u8] = ACTIONS(1836), + [anon_sym_i8] = ACTIONS(1836), + [anon_sym_u16] = ACTIONS(1836), + [anon_sym_i16] = ACTIONS(1836), + [anon_sym_u32] = ACTIONS(1836), + [anon_sym_i32] = ACTIONS(1836), + [anon_sym_u64] = ACTIONS(1836), + [anon_sym_i64] = ACTIONS(1836), + [anon_sym_u128] = ACTIONS(1836), + [anon_sym_i128] = ACTIONS(1836), + [anon_sym_isize] = ACTIONS(1836), + [anon_sym_usize] = ACTIONS(1836), + [anon_sym_f32] = ACTIONS(1836), + [anon_sym_f64] = ACTIONS(1836), + [anon_sym_bool] = ACTIONS(1836), + [anon_sym_str] = ACTIONS(1836), + [anon_sym_char] = ACTIONS(1836), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_COLON_COLON] = ACTIONS(1834), + [anon_sym_BANG] = ACTIONS(1834), + [anon_sym_AMP] = ACTIONS(1834), + [anon_sym_POUND] = ACTIONS(1834), + [anon_sym_LT] = ACTIONS(1834), + [anon_sym_PIPE] = ACTIONS(1834), + [anon_sym_SQUOTE] = ACTIONS(1836), + [anon_sym_async] = ACTIONS(1836), + [anon_sym_break] = ACTIONS(1836), + [anon_sym_const] = ACTIONS(1836), + [anon_sym_continue] = ACTIONS(1836), + [anon_sym_default] = ACTIONS(1836), + [anon_sym_enum] = ACTIONS(1836), + [anon_sym_fn] = ACTIONS(1836), + [anon_sym_for] = ACTIONS(1836), + [anon_sym_if] = ACTIONS(1836), + [anon_sym_impl] = ACTIONS(1836), + [anon_sym_let] = ACTIONS(1836), + [anon_sym_loop] = ACTIONS(1836), + [anon_sym_match] = ACTIONS(1836), + [anon_sym_mod] = ACTIONS(1836), + [anon_sym_pub] = ACTIONS(1836), + [anon_sym_return] = ACTIONS(1836), + [anon_sym_static] = ACTIONS(1836), + [anon_sym_struct] = ACTIONS(1836), + [anon_sym_trait] = ACTIONS(1836), + [anon_sym_type] = ACTIONS(1836), + [anon_sym_union] = ACTIONS(1836), + [anon_sym_unsafe] = ACTIONS(1836), + [anon_sym_use] = ACTIONS(1836), + [anon_sym_while] = ACTIONS(1836), + [anon_sym_extern] = ACTIONS(1836), + [anon_sym_DOT_DOT] = ACTIONS(1834), + [anon_sym_yield] = ACTIONS(1836), + [anon_sym_move] = ACTIONS(1836), + [anon_sym_try] = ACTIONS(1836), + [sym_integer_literal] = ACTIONS(1834), + [aux_sym_string_literal_token1] = ACTIONS(1834), + [sym_char_literal] = ACTIONS(1834), + [anon_sym_true] = ACTIONS(1836), + [anon_sym_false] = ACTIONS(1836), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1836), + [sym_super] = ACTIONS(1836), + [sym_crate] = ACTIONS(1836), + [sym_metavariable] = ACTIONS(1834), + [sym_raw_string_literal] = ACTIONS(1834), + [sym_float_literal] = ACTIONS(1834), }, [514] = { [sym_line_comment] = STATE(514), [sym_block_comment] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1793), - [sym_identifier] = ACTIONS(1795), - [anon_sym_SEMI] = ACTIONS(1793), - [anon_sym_macro_rules_BANG] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1793), - [anon_sym_LBRACK] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_RBRACE] = ACTIONS(1793), - [anon_sym_STAR] = ACTIONS(1793), - [anon_sym_u8] = ACTIONS(1795), - [anon_sym_i8] = ACTIONS(1795), - [anon_sym_u16] = ACTIONS(1795), - [anon_sym_i16] = ACTIONS(1795), - [anon_sym_u32] = ACTIONS(1795), - [anon_sym_i32] = ACTIONS(1795), - [anon_sym_u64] = ACTIONS(1795), - [anon_sym_i64] = ACTIONS(1795), - [anon_sym_u128] = ACTIONS(1795), - [anon_sym_i128] = ACTIONS(1795), - [anon_sym_isize] = ACTIONS(1795), - [anon_sym_usize] = ACTIONS(1795), - [anon_sym_f32] = ACTIONS(1795), - [anon_sym_f64] = ACTIONS(1795), - [anon_sym_bool] = ACTIONS(1795), - [anon_sym_str] = ACTIONS(1795), - [anon_sym_char] = ACTIONS(1795), - [anon_sym_DASH] = ACTIONS(1793), - [anon_sym_COLON_COLON] = ACTIONS(1793), - [anon_sym_BANG] = ACTIONS(1793), - [anon_sym_AMP] = ACTIONS(1793), - [anon_sym_POUND] = ACTIONS(1793), - [anon_sym_LT] = ACTIONS(1793), - [anon_sym_PIPE] = ACTIONS(1793), - [anon_sym_SQUOTE] = ACTIONS(1795), - [anon_sym_async] = ACTIONS(1795), - [anon_sym_break] = ACTIONS(1795), - [anon_sym_const] = ACTIONS(1795), - [anon_sym_continue] = ACTIONS(1795), - [anon_sym_default] = ACTIONS(1795), - [anon_sym_enum] = ACTIONS(1795), - [anon_sym_fn] = ACTIONS(1795), - [anon_sym_for] = ACTIONS(1795), - [anon_sym_if] = ACTIONS(1795), - [anon_sym_impl] = ACTIONS(1795), - [anon_sym_let] = ACTIONS(1795), - [anon_sym_loop] = ACTIONS(1795), - [anon_sym_match] = ACTIONS(1795), - [anon_sym_mod] = ACTIONS(1795), - [anon_sym_pub] = ACTIONS(1795), - [anon_sym_return] = ACTIONS(1795), - [anon_sym_static] = ACTIONS(1795), - [anon_sym_struct] = ACTIONS(1795), - [anon_sym_trait] = ACTIONS(1795), - [anon_sym_type] = ACTIONS(1795), - [anon_sym_union] = ACTIONS(1795), - [anon_sym_unsafe] = ACTIONS(1795), - [anon_sym_use] = ACTIONS(1795), - [anon_sym_while] = ACTIONS(1795), - [anon_sym_extern] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1793), - [anon_sym_yield] = ACTIONS(1795), - [anon_sym_move] = ACTIONS(1795), - [anon_sym_try] = ACTIONS(1795), - [sym_integer_literal] = ACTIONS(1793), - [aux_sym_string_literal_token1] = ACTIONS(1793), - [sym_char_literal] = ACTIONS(1793), - [anon_sym_true] = ACTIONS(1795), - [anon_sym_false] = ACTIONS(1795), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1795), - [sym_super] = ACTIONS(1795), - [sym_crate] = ACTIONS(1795), - [sym_metavariable] = ACTIONS(1793), - [sym_raw_string_literal] = ACTIONS(1793), - [sym_float_literal] = ACTIONS(1793), + [ts_builtin_sym_end] = ACTIONS(1838), + [sym_identifier] = ACTIONS(1840), + [anon_sym_SEMI] = ACTIONS(1838), + [anon_sym_macro_rules_BANG] = ACTIONS(1838), + [anon_sym_LPAREN] = ACTIONS(1838), + [anon_sym_LBRACK] = ACTIONS(1838), + [anon_sym_LBRACE] = ACTIONS(1838), + [anon_sym_RBRACE] = ACTIONS(1838), + [anon_sym_STAR] = ACTIONS(1838), + [anon_sym_u8] = ACTIONS(1840), + [anon_sym_i8] = ACTIONS(1840), + [anon_sym_u16] = ACTIONS(1840), + [anon_sym_i16] = ACTIONS(1840), + [anon_sym_u32] = ACTIONS(1840), + [anon_sym_i32] = ACTIONS(1840), + [anon_sym_u64] = ACTIONS(1840), + [anon_sym_i64] = ACTIONS(1840), + [anon_sym_u128] = ACTIONS(1840), + [anon_sym_i128] = ACTIONS(1840), + [anon_sym_isize] = ACTIONS(1840), + [anon_sym_usize] = ACTIONS(1840), + [anon_sym_f32] = ACTIONS(1840), + [anon_sym_f64] = ACTIONS(1840), + [anon_sym_bool] = ACTIONS(1840), + [anon_sym_str] = ACTIONS(1840), + [anon_sym_char] = ACTIONS(1840), + [anon_sym_DASH] = ACTIONS(1838), + [anon_sym_COLON_COLON] = ACTIONS(1838), + [anon_sym_BANG] = ACTIONS(1838), + [anon_sym_AMP] = ACTIONS(1838), + [anon_sym_POUND] = ACTIONS(1838), + [anon_sym_LT] = ACTIONS(1838), + [anon_sym_PIPE] = ACTIONS(1838), + [anon_sym_SQUOTE] = ACTIONS(1840), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_break] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1840), + [anon_sym_continue] = ACTIONS(1840), + [anon_sym_default] = ACTIONS(1840), + [anon_sym_enum] = ACTIONS(1840), + [anon_sym_fn] = ACTIONS(1840), + [anon_sym_for] = ACTIONS(1840), + [anon_sym_if] = ACTIONS(1840), + [anon_sym_impl] = ACTIONS(1840), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_loop] = ACTIONS(1840), + [anon_sym_match] = ACTIONS(1840), + [anon_sym_mod] = ACTIONS(1840), + [anon_sym_pub] = ACTIONS(1840), + [anon_sym_return] = ACTIONS(1840), + [anon_sym_static] = ACTIONS(1840), + [anon_sym_struct] = ACTIONS(1840), + [anon_sym_trait] = ACTIONS(1840), + [anon_sym_type] = ACTIONS(1840), + [anon_sym_union] = ACTIONS(1840), + [anon_sym_unsafe] = ACTIONS(1840), + [anon_sym_use] = ACTIONS(1840), + [anon_sym_while] = ACTIONS(1840), + [anon_sym_extern] = ACTIONS(1840), + [anon_sym_DOT_DOT] = ACTIONS(1838), + [anon_sym_yield] = ACTIONS(1840), + [anon_sym_move] = ACTIONS(1840), + [anon_sym_try] = ACTIONS(1840), + [sym_integer_literal] = ACTIONS(1838), + [aux_sym_string_literal_token1] = ACTIONS(1838), + [sym_char_literal] = ACTIONS(1838), + [anon_sym_true] = ACTIONS(1840), + [anon_sym_false] = ACTIONS(1840), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1840), + [sym_super] = ACTIONS(1840), + [sym_crate] = ACTIONS(1840), + [sym_metavariable] = ACTIONS(1838), + [sym_raw_string_literal] = ACTIONS(1838), + [sym_float_literal] = ACTIONS(1838), }, [515] = { [sym_line_comment] = STATE(515), [sym_block_comment] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(896), - [sym_identifier] = ACTIONS(898), - [anon_sym_SEMI] = ACTIONS(896), - [anon_sym_macro_rules_BANG] = ACTIONS(896), - [anon_sym_LPAREN] = ACTIONS(896), - [anon_sym_LBRACK] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(896), - [anon_sym_RBRACE] = ACTIONS(896), - [anon_sym_STAR] = ACTIONS(896), - [anon_sym_u8] = ACTIONS(898), - [anon_sym_i8] = ACTIONS(898), - [anon_sym_u16] = ACTIONS(898), - [anon_sym_i16] = ACTIONS(898), - [anon_sym_u32] = ACTIONS(898), - [anon_sym_i32] = ACTIONS(898), - [anon_sym_u64] = ACTIONS(898), - [anon_sym_i64] = ACTIONS(898), - [anon_sym_u128] = ACTIONS(898), - [anon_sym_i128] = ACTIONS(898), - [anon_sym_isize] = ACTIONS(898), - [anon_sym_usize] = ACTIONS(898), - [anon_sym_f32] = ACTIONS(898), - [anon_sym_f64] = ACTIONS(898), - [anon_sym_bool] = ACTIONS(898), - [anon_sym_str] = ACTIONS(898), - [anon_sym_char] = ACTIONS(898), - [anon_sym_DASH] = ACTIONS(896), - [anon_sym_COLON_COLON] = ACTIONS(896), - [anon_sym_BANG] = ACTIONS(896), - [anon_sym_AMP] = ACTIONS(896), - [anon_sym_POUND] = ACTIONS(896), - [anon_sym_LT] = ACTIONS(896), - [anon_sym_PIPE] = ACTIONS(896), - [anon_sym_SQUOTE] = ACTIONS(898), - [anon_sym_async] = ACTIONS(898), - [anon_sym_break] = ACTIONS(898), - [anon_sym_const] = ACTIONS(898), - [anon_sym_continue] = ACTIONS(898), - [anon_sym_default] = ACTIONS(898), - [anon_sym_enum] = ACTIONS(898), - [anon_sym_fn] = ACTIONS(898), - [anon_sym_for] = ACTIONS(898), - [anon_sym_if] = ACTIONS(898), - [anon_sym_impl] = ACTIONS(898), - [anon_sym_let] = ACTIONS(898), - [anon_sym_loop] = ACTIONS(898), - [anon_sym_match] = ACTIONS(898), - [anon_sym_mod] = ACTIONS(898), - [anon_sym_pub] = ACTIONS(898), - [anon_sym_return] = ACTIONS(898), - [anon_sym_static] = ACTIONS(898), - [anon_sym_struct] = ACTIONS(898), - [anon_sym_trait] = ACTIONS(898), - [anon_sym_type] = ACTIONS(898), - [anon_sym_union] = ACTIONS(898), - [anon_sym_unsafe] = ACTIONS(898), - [anon_sym_use] = ACTIONS(898), - [anon_sym_while] = ACTIONS(898), - [anon_sym_extern] = ACTIONS(898), - [anon_sym_DOT_DOT] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_move] = ACTIONS(898), - [anon_sym_try] = ACTIONS(898), - [sym_integer_literal] = ACTIONS(896), - [aux_sym_string_literal_token1] = ACTIONS(896), - [sym_char_literal] = ACTIONS(896), - [anon_sym_true] = ACTIONS(898), - [anon_sym_false] = ACTIONS(898), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(898), - [sym_super] = ACTIONS(898), - [sym_crate] = ACTIONS(898), - [sym_metavariable] = ACTIONS(896), - [sym_raw_string_literal] = ACTIONS(896), - [sym_float_literal] = ACTIONS(896), + [ts_builtin_sym_end] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1844), + [anon_sym_SEMI] = ACTIONS(1842), + [anon_sym_macro_rules_BANG] = ACTIONS(1842), + [anon_sym_LPAREN] = ACTIONS(1842), + [anon_sym_LBRACK] = ACTIONS(1842), + [anon_sym_LBRACE] = ACTIONS(1842), + [anon_sym_RBRACE] = ACTIONS(1842), + [anon_sym_STAR] = ACTIONS(1842), + [anon_sym_u8] = ACTIONS(1844), + [anon_sym_i8] = ACTIONS(1844), + [anon_sym_u16] = ACTIONS(1844), + [anon_sym_i16] = ACTIONS(1844), + [anon_sym_u32] = ACTIONS(1844), + [anon_sym_i32] = ACTIONS(1844), + [anon_sym_u64] = ACTIONS(1844), + [anon_sym_i64] = ACTIONS(1844), + [anon_sym_u128] = ACTIONS(1844), + [anon_sym_i128] = ACTIONS(1844), + [anon_sym_isize] = ACTIONS(1844), + [anon_sym_usize] = ACTIONS(1844), + [anon_sym_f32] = ACTIONS(1844), + [anon_sym_f64] = ACTIONS(1844), + [anon_sym_bool] = ACTIONS(1844), + [anon_sym_str] = ACTIONS(1844), + [anon_sym_char] = ACTIONS(1844), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_COLON_COLON] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1842), + [anon_sym_AMP] = ACTIONS(1842), + [anon_sym_POUND] = ACTIONS(1842), + [anon_sym_LT] = ACTIONS(1842), + [anon_sym_PIPE] = ACTIONS(1842), + [anon_sym_SQUOTE] = ACTIONS(1844), + [anon_sym_async] = ACTIONS(1844), + [anon_sym_break] = ACTIONS(1844), + [anon_sym_const] = ACTIONS(1844), + [anon_sym_continue] = ACTIONS(1844), + [anon_sym_default] = ACTIONS(1844), + [anon_sym_enum] = ACTIONS(1844), + [anon_sym_fn] = ACTIONS(1844), + [anon_sym_for] = ACTIONS(1844), + [anon_sym_if] = ACTIONS(1844), + [anon_sym_impl] = ACTIONS(1844), + [anon_sym_let] = ACTIONS(1844), + [anon_sym_loop] = ACTIONS(1844), + [anon_sym_match] = ACTIONS(1844), + [anon_sym_mod] = ACTIONS(1844), + [anon_sym_pub] = ACTIONS(1844), + [anon_sym_return] = ACTIONS(1844), + [anon_sym_static] = ACTIONS(1844), + [anon_sym_struct] = ACTIONS(1844), + [anon_sym_trait] = ACTIONS(1844), + [anon_sym_type] = ACTIONS(1844), + [anon_sym_union] = ACTIONS(1844), + [anon_sym_unsafe] = ACTIONS(1844), + [anon_sym_use] = ACTIONS(1844), + [anon_sym_while] = ACTIONS(1844), + [anon_sym_extern] = ACTIONS(1844), + [anon_sym_DOT_DOT] = ACTIONS(1842), + [anon_sym_yield] = ACTIONS(1844), + [anon_sym_move] = ACTIONS(1844), + [anon_sym_try] = ACTIONS(1844), + [sym_integer_literal] = ACTIONS(1842), + [aux_sym_string_literal_token1] = ACTIONS(1842), + [sym_char_literal] = ACTIONS(1842), + [anon_sym_true] = ACTIONS(1844), + [anon_sym_false] = ACTIONS(1844), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1844), + [sym_super] = ACTIONS(1844), + [sym_crate] = ACTIONS(1844), + [sym_metavariable] = ACTIONS(1842), + [sym_raw_string_literal] = ACTIONS(1842), + [sym_float_literal] = ACTIONS(1842), }, [516] = { [sym_line_comment] = STATE(516), [sym_block_comment] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1797), - [sym_identifier] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1797), - [anon_sym_macro_rules_BANG] = ACTIONS(1797), - [anon_sym_LPAREN] = ACTIONS(1797), - [anon_sym_LBRACK] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(1797), - [anon_sym_RBRACE] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1797), - [anon_sym_u8] = ACTIONS(1799), - [anon_sym_i8] = ACTIONS(1799), - [anon_sym_u16] = ACTIONS(1799), - [anon_sym_i16] = ACTIONS(1799), - [anon_sym_u32] = ACTIONS(1799), - [anon_sym_i32] = ACTIONS(1799), - [anon_sym_u64] = ACTIONS(1799), - [anon_sym_i64] = ACTIONS(1799), - [anon_sym_u128] = ACTIONS(1799), - [anon_sym_i128] = ACTIONS(1799), - [anon_sym_isize] = ACTIONS(1799), - [anon_sym_usize] = ACTIONS(1799), - [anon_sym_f32] = ACTIONS(1799), - [anon_sym_f64] = ACTIONS(1799), - [anon_sym_bool] = ACTIONS(1799), - [anon_sym_str] = ACTIONS(1799), - [anon_sym_char] = ACTIONS(1799), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_COLON_COLON] = ACTIONS(1797), - [anon_sym_BANG] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1797), - [anon_sym_POUND] = ACTIONS(1797), - [anon_sym_LT] = ACTIONS(1797), - [anon_sym_PIPE] = ACTIONS(1797), - [anon_sym_SQUOTE] = ACTIONS(1799), - [anon_sym_async] = ACTIONS(1799), - [anon_sym_break] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1799), - [anon_sym_continue] = ACTIONS(1799), - [anon_sym_default] = ACTIONS(1799), - [anon_sym_enum] = ACTIONS(1799), - [anon_sym_fn] = ACTIONS(1799), - [anon_sym_for] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(1799), - [anon_sym_impl] = ACTIONS(1799), - [anon_sym_let] = ACTIONS(1799), - [anon_sym_loop] = ACTIONS(1799), - [anon_sym_match] = ACTIONS(1799), - [anon_sym_mod] = ACTIONS(1799), - [anon_sym_pub] = ACTIONS(1799), - [anon_sym_return] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1799), - [anon_sym_trait] = ACTIONS(1799), - [anon_sym_type] = ACTIONS(1799), - [anon_sym_union] = ACTIONS(1799), - [anon_sym_unsafe] = ACTIONS(1799), - [anon_sym_use] = ACTIONS(1799), - [anon_sym_while] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1799), - [anon_sym_DOT_DOT] = ACTIONS(1797), - [anon_sym_yield] = ACTIONS(1799), - [anon_sym_move] = ACTIONS(1799), - [anon_sym_try] = ACTIONS(1799), - [sym_integer_literal] = ACTIONS(1797), - [aux_sym_string_literal_token1] = ACTIONS(1797), - [sym_char_literal] = ACTIONS(1797), - [anon_sym_true] = ACTIONS(1799), - [anon_sym_false] = ACTIONS(1799), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1799), - [sym_super] = ACTIONS(1799), - [sym_crate] = ACTIONS(1799), - [sym_metavariable] = ACTIONS(1797), - [sym_raw_string_literal] = ACTIONS(1797), - [sym_float_literal] = ACTIONS(1797), + [ts_builtin_sym_end] = ACTIONS(1846), + [sym_identifier] = ACTIONS(1848), + [anon_sym_SEMI] = ACTIONS(1846), + [anon_sym_macro_rules_BANG] = ACTIONS(1846), + [anon_sym_LPAREN] = ACTIONS(1846), + [anon_sym_LBRACK] = ACTIONS(1846), + [anon_sym_LBRACE] = ACTIONS(1846), + [anon_sym_RBRACE] = ACTIONS(1846), + [anon_sym_STAR] = ACTIONS(1846), + [anon_sym_u8] = ACTIONS(1848), + [anon_sym_i8] = ACTIONS(1848), + [anon_sym_u16] = ACTIONS(1848), + [anon_sym_i16] = ACTIONS(1848), + [anon_sym_u32] = ACTIONS(1848), + [anon_sym_i32] = ACTIONS(1848), + [anon_sym_u64] = ACTIONS(1848), + [anon_sym_i64] = ACTIONS(1848), + [anon_sym_u128] = ACTIONS(1848), + [anon_sym_i128] = ACTIONS(1848), + [anon_sym_isize] = ACTIONS(1848), + [anon_sym_usize] = ACTIONS(1848), + [anon_sym_f32] = ACTIONS(1848), + [anon_sym_f64] = ACTIONS(1848), + [anon_sym_bool] = ACTIONS(1848), + [anon_sym_str] = ACTIONS(1848), + [anon_sym_char] = ACTIONS(1848), + [anon_sym_DASH] = ACTIONS(1846), + [anon_sym_COLON_COLON] = ACTIONS(1846), + [anon_sym_BANG] = ACTIONS(1846), + [anon_sym_AMP] = ACTIONS(1846), + [anon_sym_POUND] = ACTIONS(1846), + [anon_sym_LT] = ACTIONS(1846), + [anon_sym_PIPE] = ACTIONS(1846), + [anon_sym_SQUOTE] = ACTIONS(1848), + [anon_sym_async] = ACTIONS(1848), + [anon_sym_break] = ACTIONS(1848), + [anon_sym_const] = ACTIONS(1848), + [anon_sym_continue] = ACTIONS(1848), + [anon_sym_default] = ACTIONS(1848), + [anon_sym_enum] = ACTIONS(1848), + [anon_sym_fn] = ACTIONS(1848), + [anon_sym_for] = ACTIONS(1848), + [anon_sym_if] = ACTIONS(1848), + [anon_sym_impl] = ACTIONS(1848), + [anon_sym_let] = ACTIONS(1848), + [anon_sym_loop] = ACTIONS(1848), + [anon_sym_match] = ACTIONS(1848), + [anon_sym_mod] = ACTIONS(1848), + [anon_sym_pub] = ACTIONS(1848), + [anon_sym_return] = ACTIONS(1848), + [anon_sym_static] = ACTIONS(1848), + [anon_sym_struct] = ACTIONS(1848), + [anon_sym_trait] = ACTIONS(1848), + [anon_sym_type] = ACTIONS(1848), + [anon_sym_union] = ACTIONS(1848), + [anon_sym_unsafe] = ACTIONS(1848), + [anon_sym_use] = ACTIONS(1848), + [anon_sym_while] = ACTIONS(1848), + [anon_sym_extern] = ACTIONS(1848), + [anon_sym_DOT_DOT] = ACTIONS(1846), + [anon_sym_yield] = ACTIONS(1848), + [anon_sym_move] = ACTIONS(1848), + [anon_sym_try] = ACTIONS(1848), + [sym_integer_literal] = ACTIONS(1846), + [aux_sym_string_literal_token1] = ACTIONS(1846), + [sym_char_literal] = ACTIONS(1846), + [anon_sym_true] = ACTIONS(1848), + [anon_sym_false] = ACTIONS(1848), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1848), + [sym_super] = ACTIONS(1848), + [sym_crate] = ACTIONS(1848), + [sym_metavariable] = ACTIONS(1846), + [sym_raw_string_literal] = ACTIONS(1846), + [sym_float_literal] = ACTIONS(1846), }, [517] = { [sym_line_comment] = STATE(517), [sym_block_comment] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1803), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_macro_rules_BANG] = ACTIONS(1801), - [anon_sym_LPAREN] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1801), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_u8] = ACTIONS(1803), - [anon_sym_i8] = ACTIONS(1803), - [anon_sym_u16] = ACTIONS(1803), - [anon_sym_i16] = ACTIONS(1803), - [anon_sym_u32] = ACTIONS(1803), - [anon_sym_i32] = ACTIONS(1803), - [anon_sym_u64] = ACTIONS(1803), - [anon_sym_i64] = ACTIONS(1803), - [anon_sym_u128] = ACTIONS(1803), - [anon_sym_i128] = ACTIONS(1803), - [anon_sym_isize] = ACTIONS(1803), - [anon_sym_usize] = ACTIONS(1803), - [anon_sym_f32] = ACTIONS(1803), - [anon_sym_f64] = ACTIONS(1803), - [anon_sym_bool] = ACTIONS(1803), - [anon_sym_str] = ACTIONS(1803), - [anon_sym_char] = ACTIONS(1803), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_COLON_COLON] = ACTIONS(1801), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_POUND] = ACTIONS(1801), - [anon_sym_LT] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_SQUOTE] = ACTIONS(1803), - [anon_sym_async] = ACTIONS(1803), - [anon_sym_break] = ACTIONS(1803), - [anon_sym_const] = ACTIONS(1803), - [anon_sym_continue] = ACTIONS(1803), - [anon_sym_default] = ACTIONS(1803), - [anon_sym_enum] = ACTIONS(1803), - [anon_sym_fn] = ACTIONS(1803), - [anon_sym_for] = ACTIONS(1803), - [anon_sym_if] = ACTIONS(1803), - [anon_sym_impl] = ACTIONS(1803), - [anon_sym_let] = ACTIONS(1803), - [anon_sym_loop] = ACTIONS(1803), - [anon_sym_match] = ACTIONS(1803), - [anon_sym_mod] = ACTIONS(1803), - [anon_sym_pub] = ACTIONS(1803), - [anon_sym_return] = ACTIONS(1803), - [anon_sym_static] = ACTIONS(1803), - [anon_sym_struct] = ACTIONS(1803), - [anon_sym_trait] = ACTIONS(1803), - [anon_sym_type] = ACTIONS(1803), - [anon_sym_union] = ACTIONS(1803), - [anon_sym_unsafe] = ACTIONS(1803), - [anon_sym_use] = ACTIONS(1803), - [anon_sym_while] = ACTIONS(1803), - [anon_sym_extern] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1801), - [anon_sym_yield] = ACTIONS(1803), - [anon_sym_move] = ACTIONS(1803), - [anon_sym_try] = ACTIONS(1803), - [sym_integer_literal] = ACTIONS(1801), - [aux_sym_string_literal_token1] = ACTIONS(1801), - [sym_char_literal] = ACTIONS(1801), - [anon_sym_true] = ACTIONS(1803), - [anon_sym_false] = ACTIONS(1803), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1803), - [sym_super] = ACTIONS(1803), - [sym_crate] = ACTIONS(1803), - [sym_metavariable] = ACTIONS(1801), - [sym_raw_string_literal] = ACTIONS(1801), - [sym_float_literal] = ACTIONS(1801), + [ts_builtin_sym_end] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1852), + [anon_sym_SEMI] = ACTIONS(1850), + [anon_sym_macro_rules_BANG] = ACTIONS(1850), + [anon_sym_LPAREN] = ACTIONS(1850), + [anon_sym_LBRACK] = ACTIONS(1850), + [anon_sym_LBRACE] = ACTIONS(1850), + [anon_sym_RBRACE] = ACTIONS(1850), + [anon_sym_STAR] = ACTIONS(1850), + [anon_sym_u8] = ACTIONS(1852), + [anon_sym_i8] = ACTIONS(1852), + [anon_sym_u16] = ACTIONS(1852), + [anon_sym_i16] = ACTIONS(1852), + [anon_sym_u32] = ACTIONS(1852), + [anon_sym_i32] = ACTIONS(1852), + [anon_sym_u64] = ACTIONS(1852), + [anon_sym_i64] = ACTIONS(1852), + [anon_sym_u128] = ACTIONS(1852), + [anon_sym_i128] = ACTIONS(1852), + [anon_sym_isize] = ACTIONS(1852), + [anon_sym_usize] = ACTIONS(1852), + [anon_sym_f32] = ACTIONS(1852), + [anon_sym_f64] = ACTIONS(1852), + [anon_sym_bool] = ACTIONS(1852), + [anon_sym_str] = ACTIONS(1852), + [anon_sym_char] = ACTIONS(1852), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_COLON_COLON] = ACTIONS(1850), + [anon_sym_BANG] = ACTIONS(1850), + [anon_sym_AMP] = ACTIONS(1850), + [anon_sym_POUND] = ACTIONS(1850), + [anon_sym_LT] = ACTIONS(1850), + [anon_sym_PIPE] = ACTIONS(1850), + [anon_sym_SQUOTE] = ACTIONS(1852), + [anon_sym_async] = ACTIONS(1852), + [anon_sym_break] = ACTIONS(1852), + [anon_sym_const] = ACTIONS(1852), + [anon_sym_continue] = ACTIONS(1852), + [anon_sym_default] = ACTIONS(1852), + [anon_sym_enum] = ACTIONS(1852), + [anon_sym_fn] = ACTIONS(1852), + [anon_sym_for] = ACTIONS(1852), + [anon_sym_if] = ACTIONS(1852), + [anon_sym_impl] = ACTIONS(1852), + [anon_sym_let] = ACTIONS(1852), + [anon_sym_loop] = ACTIONS(1852), + [anon_sym_match] = ACTIONS(1852), + [anon_sym_mod] = ACTIONS(1852), + [anon_sym_pub] = ACTIONS(1852), + [anon_sym_return] = ACTIONS(1852), + [anon_sym_static] = ACTIONS(1852), + [anon_sym_struct] = ACTIONS(1852), + [anon_sym_trait] = ACTIONS(1852), + [anon_sym_type] = ACTIONS(1852), + [anon_sym_union] = ACTIONS(1852), + [anon_sym_unsafe] = ACTIONS(1852), + [anon_sym_use] = ACTIONS(1852), + [anon_sym_while] = ACTIONS(1852), + [anon_sym_extern] = ACTIONS(1852), + [anon_sym_DOT_DOT] = ACTIONS(1850), + [anon_sym_yield] = ACTIONS(1852), + [anon_sym_move] = ACTIONS(1852), + [anon_sym_try] = ACTIONS(1852), + [sym_integer_literal] = ACTIONS(1850), + [aux_sym_string_literal_token1] = ACTIONS(1850), + [sym_char_literal] = ACTIONS(1850), + [anon_sym_true] = ACTIONS(1852), + [anon_sym_false] = ACTIONS(1852), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1852), + [sym_super] = ACTIONS(1852), + [sym_crate] = ACTIONS(1852), + [sym_metavariable] = ACTIONS(1850), + [sym_raw_string_literal] = ACTIONS(1850), + [sym_float_literal] = ACTIONS(1850), }, [518] = { [sym_line_comment] = STATE(518), [sym_block_comment] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1807), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_macro_rules_BANG] = ACTIONS(1805), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1805), - [anon_sym_u8] = ACTIONS(1807), - [anon_sym_i8] = ACTIONS(1807), - [anon_sym_u16] = ACTIONS(1807), - [anon_sym_i16] = ACTIONS(1807), - [anon_sym_u32] = ACTIONS(1807), - [anon_sym_i32] = ACTIONS(1807), - [anon_sym_u64] = ACTIONS(1807), - [anon_sym_i64] = ACTIONS(1807), - [anon_sym_u128] = ACTIONS(1807), - [anon_sym_i128] = ACTIONS(1807), - [anon_sym_isize] = ACTIONS(1807), - [anon_sym_usize] = ACTIONS(1807), - [anon_sym_f32] = ACTIONS(1807), - [anon_sym_f64] = ACTIONS(1807), - [anon_sym_bool] = ACTIONS(1807), - [anon_sym_str] = ACTIONS(1807), - [anon_sym_char] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1805), - [anon_sym_COLON_COLON] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1805), - [anon_sym_POUND] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1805), - [anon_sym_SQUOTE] = ACTIONS(1807), - [anon_sym_async] = ACTIONS(1807), - [anon_sym_break] = ACTIONS(1807), - [anon_sym_const] = ACTIONS(1807), - [anon_sym_continue] = ACTIONS(1807), - [anon_sym_default] = ACTIONS(1807), - [anon_sym_enum] = ACTIONS(1807), - [anon_sym_fn] = ACTIONS(1807), - [anon_sym_for] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(1807), - [anon_sym_impl] = ACTIONS(1807), - [anon_sym_let] = ACTIONS(1807), - [anon_sym_loop] = ACTIONS(1807), - [anon_sym_match] = ACTIONS(1807), - [anon_sym_mod] = ACTIONS(1807), - [anon_sym_pub] = ACTIONS(1807), - [anon_sym_return] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1807), - [anon_sym_struct] = ACTIONS(1807), - [anon_sym_trait] = ACTIONS(1807), - [anon_sym_type] = ACTIONS(1807), - [anon_sym_union] = ACTIONS(1807), - [anon_sym_unsafe] = ACTIONS(1807), - [anon_sym_use] = ACTIONS(1807), - [anon_sym_while] = ACTIONS(1807), - [anon_sym_extern] = ACTIONS(1807), - [anon_sym_DOT_DOT] = ACTIONS(1805), - [anon_sym_yield] = ACTIONS(1807), - [anon_sym_move] = ACTIONS(1807), - [anon_sym_try] = ACTIONS(1807), - [sym_integer_literal] = ACTIONS(1805), - [aux_sym_string_literal_token1] = ACTIONS(1805), - [sym_char_literal] = ACTIONS(1805), - [anon_sym_true] = ACTIONS(1807), - [anon_sym_false] = ACTIONS(1807), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1807), - [sym_super] = ACTIONS(1807), - [sym_crate] = ACTIONS(1807), - [sym_metavariable] = ACTIONS(1805), - [sym_raw_string_literal] = ACTIONS(1805), - [sym_float_literal] = ACTIONS(1805), + [ts_builtin_sym_end] = ACTIONS(1854), + [sym_identifier] = ACTIONS(1856), + [anon_sym_SEMI] = ACTIONS(1854), + [anon_sym_macro_rules_BANG] = ACTIONS(1854), + [anon_sym_LPAREN] = ACTIONS(1854), + [anon_sym_LBRACK] = ACTIONS(1854), + [anon_sym_LBRACE] = ACTIONS(1854), + [anon_sym_RBRACE] = ACTIONS(1854), + [anon_sym_STAR] = ACTIONS(1854), + [anon_sym_u8] = ACTIONS(1856), + [anon_sym_i8] = ACTIONS(1856), + [anon_sym_u16] = ACTIONS(1856), + [anon_sym_i16] = ACTIONS(1856), + [anon_sym_u32] = ACTIONS(1856), + [anon_sym_i32] = ACTIONS(1856), + [anon_sym_u64] = ACTIONS(1856), + [anon_sym_i64] = ACTIONS(1856), + [anon_sym_u128] = ACTIONS(1856), + [anon_sym_i128] = ACTIONS(1856), + [anon_sym_isize] = ACTIONS(1856), + [anon_sym_usize] = ACTIONS(1856), + [anon_sym_f32] = ACTIONS(1856), + [anon_sym_f64] = ACTIONS(1856), + [anon_sym_bool] = ACTIONS(1856), + [anon_sym_str] = ACTIONS(1856), + [anon_sym_char] = ACTIONS(1856), + [anon_sym_DASH] = ACTIONS(1854), + [anon_sym_COLON_COLON] = ACTIONS(1854), + [anon_sym_BANG] = ACTIONS(1854), + [anon_sym_AMP] = ACTIONS(1854), + [anon_sym_POUND] = ACTIONS(1854), + [anon_sym_LT] = ACTIONS(1854), + [anon_sym_PIPE] = ACTIONS(1854), + [anon_sym_SQUOTE] = ACTIONS(1856), + [anon_sym_async] = ACTIONS(1856), + [anon_sym_break] = ACTIONS(1856), + [anon_sym_const] = ACTIONS(1856), + [anon_sym_continue] = ACTIONS(1856), + [anon_sym_default] = ACTIONS(1856), + [anon_sym_enum] = ACTIONS(1856), + [anon_sym_fn] = ACTIONS(1856), + [anon_sym_for] = ACTIONS(1856), + [anon_sym_if] = ACTIONS(1856), + [anon_sym_impl] = ACTIONS(1856), + [anon_sym_let] = ACTIONS(1856), + [anon_sym_loop] = ACTIONS(1856), + [anon_sym_match] = ACTIONS(1856), + [anon_sym_mod] = ACTIONS(1856), + [anon_sym_pub] = ACTIONS(1856), + [anon_sym_return] = ACTIONS(1856), + [anon_sym_static] = ACTIONS(1856), + [anon_sym_struct] = ACTIONS(1856), + [anon_sym_trait] = ACTIONS(1856), + [anon_sym_type] = ACTIONS(1856), + [anon_sym_union] = ACTIONS(1856), + [anon_sym_unsafe] = ACTIONS(1856), + [anon_sym_use] = ACTIONS(1856), + [anon_sym_while] = ACTIONS(1856), + [anon_sym_extern] = ACTIONS(1856), + [anon_sym_DOT_DOT] = ACTIONS(1854), + [anon_sym_yield] = ACTIONS(1856), + [anon_sym_move] = ACTIONS(1856), + [anon_sym_try] = ACTIONS(1856), + [sym_integer_literal] = ACTIONS(1854), + [aux_sym_string_literal_token1] = ACTIONS(1854), + [sym_char_literal] = ACTIONS(1854), + [anon_sym_true] = ACTIONS(1856), + [anon_sym_false] = ACTIONS(1856), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1856), + [sym_super] = ACTIONS(1856), + [sym_crate] = ACTIONS(1856), + [sym_metavariable] = ACTIONS(1854), + [sym_raw_string_literal] = ACTIONS(1854), + [sym_float_literal] = ACTIONS(1854), }, [519] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_match_pattern] = STATE(3422), - [sym_const_block] = STATE(2719), - [sym_closure_expression] = STATE(3210), - [sym_closure_parameters] = STATE(143), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), [sym_line_comment] = STATE(519), [sym_block_comment] = STATE(519), - [aux_sym_enum_variant_list_repeat1] = STATE(806), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [ts_builtin_sym_end] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1860), + [anon_sym_SEMI] = ACTIONS(1858), + [anon_sym_macro_rules_BANG] = ACTIONS(1858), + [anon_sym_LPAREN] = ACTIONS(1858), + [anon_sym_LBRACK] = ACTIONS(1858), + [anon_sym_LBRACE] = ACTIONS(1858), + [anon_sym_RBRACE] = ACTIONS(1858), + [anon_sym_STAR] = ACTIONS(1858), + [anon_sym_u8] = ACTIONS(1860), + [anon_sym_i8] = ACTIONS(1860), + [anon_sym_u16] = ACTIONS(1860), + [anon_sym_i16] = ACTIONS(1860), + [anon_sym_u32] = ACTIONS(1860), + [anon_sym_i32] = ACTIONS(1860), + [anon_sym_u64] = ACTIONS(1860), + [anon_sym_i64] = ACTIONS(1860), + [anon_sym_u128] = ACTIONS(1860), + [anon_sym_i128] = ACTIONS(1860), + [anon_sym_isize] = ACTIONS(1860), + [anon_sym_usize] = ACTIONS(1860), + [anon_sym_f32] = ACTIONS(1860), + [anon_sym_f64] = ACTIONS(1860), + [anon_sym_bool] = ACTIONS(1860), + [anon_sym_str] = ACTIONS(1860), + [anon_sym_char] = ACTIONS(1860), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_COLON_COLON] = ACTIONS(1858), + [anon_sym_BANG] = ACTIONS(1858), + [anon_sym_AMP] = ACTIONS(1858), + [anon_sym_POUND] = ACTIONS(1858), + [anon_sym_LT] = ACTIONS(1858), + [anon_sym_PIPE] = ACTIONS(1858), + [anon_sym_SQUOTE] = ACTIONS(1860), + [anon_sym_async] = ACTIONS(1860), + [anon_sym_break] = ACTIONS(1860), + [anon_sym_const] = ACTIONS(1860), + [anon_sym_continue] = ACTIONS(1860), + [anon_sym_default] = ACTIONS(1860), + [anon_sym_enum] = ACTIONS(1860), + [anon_sym_fn] = ACTIONS(1860), + [anon_sym_for] = ACTIONS(1860), + [anon_sym_if] = ACTIONS(1860), + [anon_sym_impl] = ACTIONS(1860), + [anon_sym_let] = ACTIONS(1860), + [anon_sym_loop] = ACTIONS(1860), + [anon_sym_match] = ACTIONS(1860), + [anon_sym_mod] = ACTIONS(1860), + [anon_sym_pub] = ACTIONS(1860), + [anon_sym_return] = ACTIONS(1860), + [anon_sym_static] = ACTIONS(1860), + [anon_sym_struct] = ACTIONS(1860), + [anon_sym_trait] = ACTIONS(1860), + [anon_sym_type] = ACTIONS(1860), + [anon_sym_union] = ACTIONS(1860), + [anon_sym_unsafe] = ACTIONS(1860), + [anon_sym_use] = ACTIONS(1860), + [anon_sym_while] = ACTIONS(1860), + [anon_sym_extern] = ACTIONS(1860), + [anon_sym_DOT_DOT] = ACTIONS(1858), + [anon_sym_yield] = ACTIONS(1860), + [anon_sym_move] = ACTIONS(1860), + [anon_sym_try] = ACTIONS(1860), + [sym_integer_literal] = ACTIONS(1858), + [aux_sym_string_literal_token1] = ACTIONS(1858), + [sym_char_literal] = ACTIONS(1858), + [anon_sym_true] = ACTIONS(1860), + [anon_sym_false] = ACTIONS(1860), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1860), + [sym_super] = ACTIONS(1860), + [sym_crate] = ACTIONS(1860), + [sym_metavariable] = ACTIONS(1858), + [sym_raw_string_literal] = ACTIONS(1858), + [sym_float_literal] = ACTIONS(1858), }, [520] = { [sym_line_comment] = STATE(520), [sym_block_comment] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [anon_sym_SEMI] = ACTIONS(1809), - [anon_sym_macro_rules_BANG] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_LBRACE] = ACTIONS(1809), - [anon_sym_RBRACE] = ACTIONS(1809), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_u8] = ACTIONS(1811), - [anon_sym_i8] = ACTIONS(1811), - [anon_sym_u16] = ACTIONS(1811), - [anon_sym_i16] = ACTIONS(1811), - [anon_sym_u32] = ACTIONS(1811), - [anon_sym_i32] = ACTIONS(1811), - [anon_sym_u64] = ACTIONS(1811), - [anon_sym_i64] = ACTIONS(1811), - [anon_sym_u128] = ACTIONS(1811), - [anon_sym_i128] = ACTIONS(1811), - [anon_sym_isize] = ACTIONS(1811), - [anon_sym_usize] = ACTIONS(1811), - [anon_sym_f32] = ACTIONS(1811), - [anon_sym_f64] = ACTIONS(1811), - [anon_sym_bool] = ACTIONS(1811), - [anon_sym_str] = ACTIONS(1811), - [anon_sym_char] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1809), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_POUND] = ACTIONS(1809), - [anon_sym_LT] = ACTIONS(1809), - [anon_sym_PIPE] = ACTIONS(1809), - [anon_sym_SQUOTE] = ACTIONS(1811), - [anon_sym_async] = ACTIONS(1811), - [anon_sym_break] = ACTIONS(1811), - [anon_sym_const] = ACTIONS(1811), - [anon_sym_continue] = ACTIONS(1811), - [anon_sym_default] = ACTIONS(1811), - [anon_sym_enum] = ACTIONS(1811), - [anon_sym_fn] = ACTIONS(1811), - [anon_sym_for] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_impl] = ACTIONS(1811), - [anon_sym_let] = ACTIONS(1811), - [anon_sym_loop] = ACTIONS(1811), - [anon_sym_match] = ACTIONS(1811), - [anon_sym_mod] = ACTIONS(1811), - [anon_sym_pub] = ACTIONS(1811), - [anon_sym_return] = ACTIONS(1811), - [anon_sym_static] = ACTIONS(1811), - [anon_sym_struct] = ACTIONS(1811), - [anon_sym_trait] = ACTIONS(1811), - [anon_sym_type] = ACTIONS(1811), - [anon_sym_union] = ACTIONS(1811), - [anon_sym_unsafe] = ACTIONS(1811), - [anon_sym_use] = ACTIONS(1811), - [anon_sym_while] = ACTIONS(1811), - [anon_sym_extern] = ACTIONS(1811), - [anon_sym_DOT_DOT] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1811), - [anon_sym_move] = ACTIONS(1811), - [anon_sym_try] = ACTIONS(1811), - [sym_integer_literal] = ACTIONS(1809), - [aux_sym_string_literal_token1] = ACTIONS(1809), - [sym_char_literal] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(1811), - [anon_sym_false] = ACTIONS(1811), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1811), - [sym_super] = ACTIONS(1811), - [sym_crate] = ACTIONS(1811), - [sym_metavariable] = ACTIONS(1809), - [sym_raw_string_literal] = ACTIONS(1809), - [sym_float_literal] = ACTIONS(1809), + [ts_builtin_sym_end] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1864), + [anon_sym_SEMI] = ACTIONS(1862), + [anon_sym_macro_rules_BANG] = ACTIONS(1862), + [anon_sym_LPAREN] = ACTIONS(1862), + [anon_sym_LBRACK] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(1862), + [anon_sym_RBRACE] = ACTIONS(1862), + [anon_sym_STAR] = ACTIONS(1862), + [anon_sym_u8] = ACTIONS(1864), + [anon_sym_i8] = ACTIONS(1864), + [anon_sym_u16] = ACTIONS(1864), + [anon_sym_i16] = ACTIONS(1864), + [anon_sym_u32] = ACTIONS(1864), + [anon_sym_i32] = ACTIONS(1864), + [anon_sym_u64] = ACTIONS(1864), + [anon_sym_i64] = ACTIONS(1864), + [anon_sym_u128] = ACTIONS(1864), + [anon_sym_i128] = ACTIONS(1864), + [anon_sym_isize] = ACTIONS(1864), + [anon_sym_usize] = ACTIONS(1864), + [anon_sym_f32] = ACTIONS(1864), + [anon_sym_f64] = ACTIONS(1864), + [anon_sym_bool] = ACTIONS(1864), + [anon_sym_str] = ACTIONS(1864), + [anon_sym_char] = ACTIONS(1864), + [anon_sym_DASH] = ACTIONS(1862), + [anon_sym_COLON_COLON] = ACTIONS(1862), + [anon_sym_BANG] = ACTIONS(1862), + [anon_sym_AMP] = ACTIONS(1862), + [anon_sym_POUND] = ACTIONS(1862), + [anon_sym_LT] = ACTIONS(1862), + [anon_sym_PIPE] = ACTIONS(1862), + [anon_sym_SQUOTE] = ACTIONS(1864), + [anon_sym_async] = ACTIONS(1864), + [anon_sym_break] = ACTIONS(1864), + [anon_sym_const] = ACTIONS(1864), + [anon_sym_continue] = ACTIONS(1864), + [anon_sym_default] = ACTIONS(1864), + [anon_sym_enum] = ACTIONS(1864), + [anon_sym_fn] = ACTIONS(1864), + [anon_sym_for] = ACTIONS(1864), + [anon_sym_if] = ACTIONS(1864), + [anon_sym_impl] = ACTIONS(1864), + [anon_sym_let] = ACTIONS(1864), + [anon_sym_loop] = ACTIONS(1864), + [anon_sym_match] = ACTIONS(1864), + [anon_sym_mod] = ACTIONS(1864), + [anon_sym_pub] = ACTIONS(1864), + [anon_sym_return] = ACTIONS(1864), + [anon_sym_static] = ACTIONS(1864), + [anon_sym_struct] = ACTIONS(1864), + [anon_sym_trait] = ACTIONS(1864), + [anon_sym_type] = ACTIONS(1864), + [anon_sym_union] = ACTIONS(1864), + [anon_sym_unsafe] = ACTIONS(1864), + [anon_sym_use] = ACTIONS(1864), + [anon_sym_while] = ACTIONS(1864), + [anon_sym_extern] = ACTIONS(1864), + [anon_sym_DOT_DOT] = ACTIONS(1862), + [anon_sym_yield] = ACTIONS(1864), + [anon_sym_move] = ACTIONS(1864), + [anon_sym_try] = ACTIONS(1864), + [sym_integer_literal] = ACTIONS(1862), + [aux_sym_string_literal_token1] = ACTIONS(1862), + [sym_char_literal] = ACTIONS(1862), + [anon_sym_true] = ACTIONS(1864), + [anon_sym_false] = ACTIONS(1864), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1864), + [sym_super] = ACTIONS(1864), + [sym_crate] = ACTIONS(1864), + [sym_metavariable] = ACTIONS(1862), + [sym_raw_string_literal] = ACTIONS(1862), + [sym_float_literal] = ACTIONS(1862), }, [521] = { [sym_line_comment] = STATE(521), [sym_block_comment] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1813), - [sym_identifier] = ACTIONS(1815), - [anon_sym_SEMI] = ACTIONS(1813), - [anon_sym_macro_rules_BANG] = ACTIONS(1813), - [anon_sym_LPAREN] = ACTIONS(1813), - [anon_sym_LBRACK] = ACTIONS(1813), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1813), - [anon_sym_STAR] = ACTIONS(1813), - [anon_sym_u8] = ACTIONS(1815), - [anon_sym_i8] = ACTIONS(1815), - [anon_sym_u16] = ACTIONS(1815), - [anon_sym_i16] = ACTIONS(1815), - [anon_sym_u32] = ACTIONS(1815), - [anon_sym_i32] = ACTIONS(1815), - [anon_sym_u64] = ACTIONS(1815), - [anon_sym_i64] = ACTIONS(1815), - [anon_sym_u128] = ACTIONS(1815), - [anon_sym_i128] = ACTIONS(1815), - [anon_sym_isize] = ACTIONS(1815), - [anon_sym_usize] = ACTIONS(1815), - [anon_sym_f32] = ACTIONS(1815), - [anon_sym_f64] = ACTIONS(1815), - [anon_sym_bool] = ACTIONS(1815), - [anon_sym_str] = ACTIONS(1815), - [anon_sym_char] = ACTIONS(1815), - [anon_sym_DASH] = ACTIONS(1813), - [anon_sym_COLON_COLON] = ACTIONS(1813), - [anon_sym_BANG] = ACTIONS(1813), - [anon_sym_AMP] = ACTIONS(1813), - [anon_sym_POUND] = ACTIONS(1813), - [anon_sym_LT] = ACTIONS(1813), - [anon_sym_PIPE] = ACTIONS(1813), - [anon_sym_SQUOTE] = ACTIONS(1815), - [anon_sym_async] = ACTIONS(1815), - [anon_sym_break] = ACTIONS(1815), - [anon_sym_const] = ACTIONS(1815), - [anon_sym_continue] = ACTIONS(1815), - [anon_sym_default] = ACTIONS(1815), - [anon_sym_enum] = ACTIONS(1815), - [anon_sym_fn] = ACTIONS(1815), - [anon_sym_for] = ACTIONS(1815), - [anon_sym_if] = ACTIONS(1815), - [anon_sym_impl] = ACTIONS(1815), - [anon_sym_let] = ACTIONS(1815), - [anon_sym_loop] = ACTIONS(1815), - [anon_sym_match] = ACTIONS(1815), - [anon_sym_mod] = ACTIONS(1815), - [anon_sym_pub] = ACTIONS(1815), - [anon_sym_return] = ACTIONS(1815), - [anon_sym_static] = ACTIONS(1815), - [anon_sym_struct] = ACTIONS(1815), - [anon_sym_trait] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1815), - [anon_sym_union] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1815), - [anon_sym_use] = ACTIONS(1815), - [anon_sym_while] = ACTIONS(1815), - [anon_sym_extern] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1813), - [anon_sym_yield] = ACTIONS(1815), - [anon_sym_move] = ACTIONS(1815), - [anon_sym_try] = ACTIONS(1815), - [sym_integer_literal] = ACTIONS(1813), - [aux_sym_string_literal_token1] = ACTIONS(1813), - [sym_char_literal] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(1815), - [anon_sym_false] = ACTIONS(1815), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1815), - [sym_super] = ACTIONS(1815), - [sym_crate] = ACTIONS(1815), - [sym_metavariable] = ACTIONS(1813), - [sym_raw_string_literal] = ACTIONS(1813), - [sym_float_literal] = ACTIONS(1813), + [ts_builtin_sym_end] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1868), + [anon_sym_SEMI] = ACTIONS(1866), + [anon_sym_macro_rules_BANG] = ACTIONS(1866), + [anon_sym_LPAREN] = ACTIONS(1866), + [anon_sym_LBRACK] = ACTIONS(1866), + [anon_sym_LBRACE] = ACTIONS(1866), + [anon_sym_RBRACE] = ACTIONS(1866), + [anon_sym_STAR] = ACTIONS(1866), + [anon_sym_u8] = ACTIONS(1868), + [anon_sym_i8] = ACTIONS(1868), + [anon_sym_u16] = ACTIONS(1868), + [anon_sym_i16] = ACTIONS(1868), + [anon_sym_u32] = ACTIONS(1868), + [anon_sym_i32] = ACTIONS(1868), + [anon_sym_u64] = ACTIONS(1868), + [anon_sym_i64] = ACTIONS(1868), + [anon_sym_u128] = ACTIONS(1868), + [anon_sym_i128] = ACTIONS(1868), + [anon_sym_isize] = ACTIONS(1868), + [anon_sym_usize] = ACTIONS(1868), + [anon_sym_f32] = ACTIONS(1868), + [anon_sym_f64] = ACTIONS(1868), + [anon_sym_bool] = ACTIONS(1868), + [anon_sym_str] = ACTIONS(1868), + [anon_sym_char] = ACTIONS(1868), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_COLON_COLON] = ACTIONS(1866), + [anon_sym_BANG] = ACTIONS(1866), + [anon_sym_AMP] = ACTIONS(1866), + [anon_sym_POUND] = ACTIONS(1866), + [anon_sym_LT] = ACTIONS(1866), + [anon_sym_PIPE] = ACTIONS(1866), + [anon_sym_SQUOTE] = ACTIONS(1868), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_break] = ACTIONS(1868), + [anon_sym_const] = ACTIONS(1868), + [anon_sym_continue] = ACTIONS(1868), + [anon_sym_default] = ACTIONS(1868), + [anon_sym_enum] = ACTIONS(1868), + [anon_sym_fn] = ACTIONS(1868), + [anon_sym_for] = ACTIONS(1868), + [anon_sym_if] = ACTIONS(1868), + [anon_sym_impl] = ACTIONS(1868), + [anon_sym_let] = ACTIONS(1868), + [anon_sym_loop] = ACTIONS(1868), + [anon_sym_match] = ACTIONS(1868), + [anon_sym_mod] = ACTIONS(1868), + [anon_sym_pub] = ACTIONS(1868), + [anon_sym_return] = ACTIONS(1868), + [anon_sym_static] = ACTIONS(1868), + [anon_sym_struct] = ACTIONS(1868), + [anon_sym_trait] = ACTIONS(1868), + [anon_sym_type] = ACTIONS(1868), + [anon_sym_union] = ACTIONS(1868), + [anon_sym_unsafe] = ACTIONS(1868), + [anon_sym_use] = ACTIONS(1868), + [anon_sym_while] = ACTIONS(1868), + [anon_sym_extern] = ACTIONS(1868), + [anon_sym_DOT_DOT] = ACTIONS(1866), + [anon_sym_yield] = ACTIONS(1868), + [anon_sym_move] = ACTIONS(1868), + [anon_sym_try] = ACTIONS(1868), + [sym_integer_literal] = ACTIONS(1866), + [aux_sym_string_literal_token1] = ACTIONS(1866), + [sym_char_literal] = ACTIONS(1866), + [anon_sym_true] = ACTIONS(1868), + [anon_sym_false] = ACTIONS(1868), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1868), + [sym_super] = ACTIONS(1868), + [sym_crate] = ACTIONS(1868), + [sym_metavariable] = ACTIONS(1866), + [sym_raw_string_literal] = ACTIONS(1866), + [sym_float_literal] = ACTIONS(1866), }, [522] = { + [sym_empty_statement] = STATE(1143), + [sym_macro_definition] = STATE(1143), + [sym_attribute_item] = STATE(1143), + [sym_inner_attribute_item] = STATE(1143), + [sym_mod_item] = STATE(1143), + [sym_foreign_mod_item] = STATE(1143), + [sym_struct_item] = STATE(1143), + [sym_union_item] = STATE(1143), + [sym_enum_item] = STATE(1143), + [sym_extern_crate_declaration] = STATE(1143), + [sym_const_item] = STATE(1143), + [sym_static_item] = STATE(1143), + [sym_type_item] = STATE(1143), + [sym_function_item] = STATE(1143), + [sym_function_signature_item] = STATE(1143), + [sym_function_modifiers] = STATE(3554), + [sym_impl_item] = STATE(1143), + [sym_trait_item] = STATE(1143), + [sym_associated_type] = STATE(1143), + [sym_let_declaration] = STATE(1143), + [sym_use_declaration] = STATE(1143), + [sym_extern_modifier] = STATE(2155), + [sym_visibility_modifier] = STATE(1923), + [sym_bracketed_type] = STATE(3383), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_macro_invocation] = STATE(1143), + [sym_scoped_identifier] = STATE(3220), [sym_line_comment] = STATE(522), [sym_block_comment] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1817), - [sym_identifier] = ACTIONS(1819), - [anon_sym_SEMI] = ACTIONS(1817), - [anon_sym_macro_rules_BANG] = ACTIONS(1817), - [anon_sym_LPAREN] = ACTIONS(1817), - [anon_sym_LBRACK] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(1817), - [anon_sym_RBRACE] = ACTIONS(1817), - [anon_sym_STAR] = ACTIONS(1817), - [anon_sym_u8] = ACTIONS(1819), - [anon_sym_i8] = ACTIONS(1819), - [anon_sym_u16] = ACTIONS(1819), - [anon_sym_i16] = ACTIONS(1819), - [anon_sym_u32] = ACTIONS(1819), - [anon_sym_i32] = ACTIONS(1819), - [anon_sym_u64] = ACTIONS(1819), - [anon_sym_i64] = ACTIONS(1819), - [anon_sym_u128] = ACTIONS(1819), - [anon_sym_i128] = ACTIONS(1819), - [anon_sym_isize] = ACTIONS(1819), - [anon_sym_usize] = ACTIONS(1819), - [anon_sym_f32] = ACTIONS(1819), - [anon_sym_f64] = ACTIONS(1819), - [anon_sym_bool] = ACTIONS(1819), - [anon_sym_str] = ACTIONS(1819), - [anon_sym_char] = ACTIONS(1819), - [anon_sym_DASH] = ACTIONS(1817), - [anon_sym_COLON_COLON] = ACTIONS(1817), - [anon_sym_BANG] = ACTIONS(1817), - [anon_sym_AMP] = ACTIONS(1817), - [anon_sym_POUND] = ACTIONS(1817), - [anon_sym_LT] = ACTIONS(1817), - [anon_sym_PIPE] = ACTIONS(1817), - [anon_sym_SQUOTE] = ACTIONS(1819), - [anon_sym_async] = ACTIONS(1819), - [anon_sym_break] = ACTIONS(1819), - [anon_sym_const] = ACTIONS(1819), - [anon_sym_continue] = ACTIONS(1819), - [anon_sym_default] = ACTIONS(1819), - [anon_sym_enum] = ACTIONS(1819), - [anon_sym_fn] = ACTIONS(1819), - [anon_sym_for] = ACTIONS(1819), - [anon_sym_if] = ACTIONS(1819), - [anon_sym_impl] = ACTIONS(1819), - [anon_sym_let] = ACTIONS(1819), - [anon_sym_loop] = ACTIONS(1819), - [anon_sym_match] = ACTIONS(1819), - [anon_sym_mod] = ACTIONS(1819), - [anon_sym_pub] = ACTIONS(1819), - [anon_sym_return] = ACTIONS(1819), - [anon_sym_static] = ACTIONS(1819), - [anon_sym_struct] = ACTIONS(1819), - [anon_sym_trait] = ACTIONS(1819), - [anon_sym_type] = ACTIONS(1819), - [anon_sym_union] = ACTIONS(1819), - [anon_sym_unsafe] = ACTIONS(1819), - [anon_sym_use] = ACTIONS(1819), - [anon_sym_while] = ACTIONS(1819), - [anon_sym_extern] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1817), - [anon_sym_yield] = ACTIONS(1819), - [anon_sym_move] = ACTIONS(1819), - [anon_sym_try] = ACTIONS(1819), - [sym_integer_literal] = ACTIONS(1817), - [aux_sym_string_literal_token1] = ACTIONS(1817), - [sym_char_literal] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(1819), - [anon_sym_false] = ACTIONS(1819), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1819), - [sym_super] = ACTIONS(1819), - [sym_crate] = ACTIONS(1819), - [sym_metavariable] = ACTIONS(1817), - [sym_raw_string_literal] = ACTIONS(1817), - [sym_float_literal] = ACTIONS(1817), + [aux_sym_declaration_list_repeat1] = STATE(702), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_macro_rules_BANG] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_u8] = ACTIONS(1644), + [anon_sym_i8] = ACTIONS(1644), + [anon_sym_u16] = ACTIONS(1644), + [anon_sym_i16] = ACTIONS(1644), + [anon_sym_u32] = ACTIONS(1644), + [anon_sym_i32] = ACTIONS(1644), + [anon_sym_u64] = ACTIONS(1644), + [anon_sym_i64] = ACTIONS(1644), + [anon_sym_u128] = ACTIONS(1644), + [anon_sym_i128] = ACTIONS(1644), + [anon_sym_isize] = ACTIONS(1644), + [anon_sym_usize] = ACTIONS(1644), + [anon_sym_f32] = ACTIONS(1644), + [anon_sym_f64] = ACTIONS(1644), + [anon_sym_bool] = ACTIONS(1644), + [anon_sym_str] = ACTIONS(1644), + [anon_sym_char] = ACTIONS(1644), + [anon_sym_COLON_COLON] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_default] = ACTIONS(1652), + [anon_sym_enum] = ACTIONS(1654), + [anon_sym_fn] = ACTIONS(1656), + [anon_sym_impl] = ACTIONS(1658), + [anon_sym_let] = ACTIONS(1660), + [anon_sym_mod] = ACTIONS(1662), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_struct] = ACTIONS(1666), + [anon_sym_trait] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(1670), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_unsafe] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1680), + [sym_super] = ACTIONS(1680), + [sym_crate] = ACTIONS(1682), + [sym_metavariable] = ACTIONS(1684), }, [523] = { [sym_line_comment] = STATE(523), [sym_block_comment] = STATE(523), - [ts_builtin_sym_end] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_macro_rules_BANG] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1821), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_u8] = ACTIONS(1823), - [anon_sym_i8] = ACTIONS(1823), - [anon_sym_u16] = ACTIONS(1823), - [anon_sym_i16] = ACTIONS(1823), - [anon_sym_u32] = ACTIONS(1823), - [anon_sym_i32] = ACTIONS(1823), - [anon_sym_u64] = ACTIONS(1823), - [anon_sym_i64] = ACTIONS(1823), - [anon_sym_u128] = ACTIONS(1823), - [anon_sym_i128] = ACTIONS(1823), - [anon_sym_isize] = ACTIONS(1823), - [anon_sym_usize] = ACTIONS(1823), - [anon_sym_f32] = ACTIONS(1823), - [anon_sym_f64] = ACTIONS(1823), - [anon_sym_bool] = ACTIONS(1823), - [anon_sym_str] = ACTIONS(1823), - [anon_sym_char] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1821), - [anon_sym_COLON_COLON] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_AMP] = ACTIONS(1821), - [anon_sym_POUND] = ACTIONS(1821), - [anon_sym_LT] = ACTIONS(1821), - [anon_sym_PIPE] = ACTIONS(1821), - [anon_sym_SQUOTE] = ACTIONS(1823), - [anon_sym_async] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_fn] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_impl] = ACTIONS(1823), - [anon_sym_let] = ACTIONS(1823), - [anon_sym_loop] = ACTIONS(1823), - [anon_sym_match] = ACTIONS(1823), - [anon_sym_mod] = ACTIONS(1823), - [anon_sym_pub] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_trait] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_unsafe] = ACTIONS(1823), - [anon_sym_use] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1821), - [anon_sym_yield] = ACTIONS(1823), - [anon_sym_move] = ACTIONS(1823), - [anon_sym_try] = ACTIONS(1823), - [sym_integer_literal] = ACTIONS(1821), - [aux_sym_string_literal_token1] = ACTIONS(1821), - [sym_char_literal] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1823), - [sym_super] = ACTIONS(1823), - [sym_crate] = ACTIONS(1823), - [sym_metavariable] = ACTIONS(1821), - [sym_raw_string_literal] = ACTIONS(1821), - [sym_float_literal] = ACTIONS(1821), + [ts_builtin_sym_end] = ACTIONS(1872), + [sym_identifier] = ACTIONS(1874), + [anon_sym_SEMI] = ACTIONS(1872), + [anon_sym_macro_rules_BANG] = ACTIONS(1872), + [anon_sym_LPAREN] = ACTIONS(1872), + [anon_sym_LBRACK] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1872), + [anon_sym_RBRACE] = ACTIONS(1872), + [anon_sym_STAR] = ACTIONS(1872), + [anon_sym_u8] = ACTIONS(1874), + [anon_sym_i8] = ACTIONS(1874), + [anon_sym_u16] = ACTIONS(1874), + [anon_sym_i16] = ACTIONS(1874), + [anon_sym_u32] = ACTIONS(1874), + [anon_sym_i32] = ACTIONS(1874), + [anon_sym_u64] = ACTIONS(1874), + [anon_sym_i64] = ACTIONS(1874), + [anon_sym_u128] = ACTIONS(1874), + [anon_sym_i128] = ACTIONS(1874), + [anon_sym_isize] = ACTIONS(1874), + [anon_sym_usize] = ACTIONS(1874), + [anon_sym_f32] = ACTIONS(1874), + [anon_sym_f64] = ACTIONS(1874), + [anon_sym_bool] = ACTIONS(1874), + [anon_sym_str] = ACTIONS(1874), + [anon_sym_char] = ACTIONS(1874), + [anon_sym_DASH] = ACTIONS(1872), + [anon_sym_COLON_COLON] = ACTIONS(1872), + [anon_sym_BANG] = ACTIONS(1872), + [anon_sym_AMP] = ACTIONS(1872), + [anon_sym_POUND] = ACTIONS(1872), + [anon_sym_LT] = ACTIONS(1872), + [anon_sym_PIPE] = ACTIONS(1872), + [anon_sym_SQUOTE] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1874), + [anon_sym_break] = ACTIONS(1874), + [anon_sym_const] = ACTIONS(1874), + [anon_sym_continue] = ACTIONS(1874), + [anon_sym_default] = ACTIONS(1874), + [anon_sym_enum] = ACTIONS(1874), + [anon_sym_fn] = ACTIONS(1874), + [anon_sym_for] = ACTIONS(1874), + [anon_sym_if] = ACTIONS(1874), + [anon_sym_impl] = ACTIONS(1874), + [anon_sym_let] = ACTIONS(1874), + [anon_sym_loop] = ACTIONS(1874), + [anon_sym_match] = ACTIONS(1874), + [anon_sym_mod] = ACTIONS(1874), + [anon_sym_pub] = ACTIONS(1874), + [anon_sym_return] = ACTIONS(1874), + [anon_sym_static] = ACTIONS(1874), + [anon_sym_struct] = ACTIONS(1874), + [anon_sym_trait] = ACTIONS(1874), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_union] = ACTIONS(1874), + [anon_sym_unsafe] = ACTIONS(1874), + [anon_sym_use] = ACTIONS(1874), + [anon_sym_while] = ACTIONS(1874), + [anon_sym_extern] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1874), + [anon_sym_move] = ACTIONS(1874), + [anon_sym_try] = ACTIONS(1874), + [sym_integer_literal] = ACTIONS(1872), + [aux_sym_string_literal_token1] = ACTIONS(1872), + [sym_char_literal] = ACTIONS(1872), + [anon_sym_true] = ACTIONS(1874), + [anon_sym_false] = ACTIONS(1874), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1874), + [sym_super] = ACTIONS(1874), + [sym_crate] = ACTIONS(1874), + [sym_metavariable] = ACTIONS(1872), + [sym_raw_string_literal] = ACTIONS(1872), + [sym_float_literal] = ACTIONS(1872), }, [524] = { [sym_line_comment] = STATE(524), [sym_block_comment] = STATE(524), - [ts_builtin_sym_end] = ACTIONS(1825), - [sym_identifier] = ACTIONS(1827), - [anon_sym_SEMI] = ACTIONS(1825), - [anon_sym_macro_rules_BANG] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1825), - [anon_sym_LBRACK] = ACTIONS(1825), - [anon_sym_LBRACE] = ACTIONS(1825), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_STAR] = ACTIONS(1825), - [anon_sym_u8] = ACTIONS(1827), - [anon_sym_i8] = ACTIONS(1827), - [anon_sym_u16] = ACTIONS(1827), - [anon_sym_i16] = ACTIONS(1827), - [anon_sym_u32] = ACTIONS(1827), - [anon_sym_i32] = ACTIONS(1827), - [anon_sym_u64] = ACTIONS(1827), - [anon_sym_i64] = ACTIONS(1827), - [anon_sym_u128] = ACTIONS(1827), - [anon_sym_i128] = ACTIONS(1827), - [anon_sym_isize] = ACTIONS(1827), - [anon_sym_usize] = ACTIONS(1827), - [anon_sym_f32] = ACTIONS(1827), - [anon_sym_f64] = ACTIONS(1827), - [anon_sym_bool] = ACTIONS(1827), - [anon_sym_str] = ACTIONS(1827), - [anon_sym_char] = ACTIONS(1827), - [anon_sym_DASH] = ACTIONS(1825), - [anon_sym_COLON_COLON] = ACTIONS(1825), - [anon_sym_BANG] = ACTIONS(1825), - [anon_sym_AMP] = ACTIONS(1825), - [anon_sym_POUND] = ACTIONS(1825), - [anon_sym_LT] = ACTIONS(1825), - [anon_sym_PIPE] = ACTIONS(1825), - [anon_sym_SQUOTE] = ACTIONS(1827), - [anon_sym_async] = ACTIONS(1827), - [anon_sym_break] = ACTIONS(1827), - [anon_sym_const] = ACTIONS(1827), - [anon_sym_continue] = ACTIONS(1827), - [anon_sym_default] = ACTIONS(1827), - [anon_sym_enum] = ACTIONS(1827), - [anon_sym_fn] = ACTIONS(1827), - [anon_sym_for] = ACTIONS(1827), - [anon_sym_if] = ACTIONS(1827), - [anon_sym_impl] = ACTIONS(1827), - [anon_sym_let] = ACTIONS(1827), - [anon_sym_loop] = ACTIONS(1827), - [anon_sym_match] = ACTIONS(1827), - [anon_sym_mod] = ACTIONS(1827), - [anon_sym_pub] = ACTIONS(1827), - [anon_sym_return] = ACTIONS(1827), - [anon_sym_static] = ACTIONS(1827), - [anon_sym_struct] = ACTIONS(1827), - [anon_sym_trait] = ACTIONS(1827), - [anon_sym_type] = ACTIONS(1827), - [anon_sym_union] = ACTIONS(1827), - [anon_sym_unsafe] = ACTIONS(1827), - [anon_sym_use] = ACTIONS(1827), - [anon_sym_while] = ACTIONS(1827), - [anon_sym_extern] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1825), - [anon_sym_yield] = ACTIONS(1827), - [anon_sym_move] = ACTIONS(1827), - [anon_sym_try] = ACTIONS(1827), - [sym_integer_literal] = ACTIONS(1825), - [aux_sym_string_literal_token1] = ACTIONS(1825), - [sym_char_literal] = ACTIONS(1825), - [anon_sym_true] = ACTIONS(1827), - [anon_sym_false] = ACTIONS(1827), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1827), - [sym_super] = ACTIONS(1827), - [sym_crate] = ACTIONS(1827), - [sym_metavariable] = ACTIONS(1825), - [sym_raw_string_literal] = ACTIONS(1825), - [sym_float_literal] = ACTIONS(1825), + [ts_builtin_sym_end] = ACTIONS(1876), + [sym_identifier] = ACTIONS(1878), + [anon_sym_SEMI] = ACTIONS(1876), + [anon_sym_macro_rules_BANG] = ACTIONS(1876), + [anon_sym_LPAREN] = ACTIONS(1876), + [anon_sym_LBRACK] = ACTIONS(1876), + [anon_sym_LBRACE] = ACTIONS(1876), + [anon_sym_RBRACE] = ACTIONS(1876), + [anon_sym_STAR] = ACTIONS(1876), + [anon_sym_u8] = ACTIONS(1878), + [anon_sym_i8] = ACTIONS(1878), + [anon_sym_u16] = ACTIONS(1878), + [anon_sym_i16] = ACTIONS(1878), + [anon_sym_u32] = ACTIONS(1878), + [anon_sym_i32] = ACTIONS(1878), + [anon_sym_u64] = ACTIONS(1878), + [anon_sym_i64] = ACTIONS(1878), + [anon_sym_u128] = ACTIONS(1878), + [anon_sym_i128] = ACTIONS(1878), + [anon_sym_isize] = ACTIONS(1878), + [anon_sym_usize] = ACTIONS(1878), + [anon_sym_f32] = ACTIONS(1878), + [anon_sym_f64] = ACTIONS(1878), + [anon_sym_bool] = ACTIONS(1878), + [anon_sym_str] = ACTIONS(1878), + [anon_sym_char] = ACTIONS(1878), + [anon_sym_DASH] = ACTIONS(1876), + [anon_sym_COLON_COLON] = ACTIONS(1876), + [anon_sym_BANG] = ACTIONS(1876), + [anon_sym_AMP] = ACTIONS(1876), + [anon_sym_POUND] = ACTIONS(1876), + [anon_sym_LT] = ACTIONS(1876), + [anon_sym_PIPE] = ACTIONS(1876), + [anon_sym_SQUOTE] = ACTIONS(1878), + [anon_sym_async] = ACTIONS(1878), + [anon_sym_break] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(1878), + [anon_sym_continue] = ACTIONS(1878), + [anon_sym_default] = ACTIONS(1878), + [anon_sym_enum] = ACTIONS(1878), + [anon_sym_fn] = ACTIONS(1878), + [anon_sym_for] = ACTIONS(1878), + [anon_sym_if] = ACTIONS(1878), + [anon_sym_impl] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_loop] = ACTIONS(1878), + [anon_sym_match] = ACTIONS(1878), + [anon_sym_mod] = ACTIONS(1878), + [anon_sym_pub] = ACTIONS(1878), + [anon_sym_return] = ACTIONS(1878), + [anon_sym_static] = ACTIONS(1878), + [anon_sym_struct] = ACTIONS(1878), + [anon_sym_trait] = ACTIONS(1878), + [anon_sym_type] = ACTIONS(1878), + [anon_sym_union] = ACTIONS(1878), + [anon_sym_unsafe] = ACTIONS(1878), + [anon_sym_use] = ACTIONS(1878), + [anon_sym_while] = ACTIONS(1878), + [anon_sym_extern] = ACTIONS(1878), + [anon_sym_DOT_DOT] = ACTIONS(1876), + [anon_sym_yield] = ACTIONS(1878), + [anon_sym_move] = ACTIONS(1878), + [anon_sym_try] = ACTIONS(1878), + [sym_integer_literal] = ACTIONS(1876), + [aux_sym_string_literal_token1] = ACTIONS(1876), + [sym_char_literal] = ACTIONS(1876), + [anon_sym_true] = ACTIONS(1878), + [anon_sym_false] = ACTIONS(1878), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1878), + [sym_super] = ACTIONS(1878), + [sym_crate] = ACTIONS(1878), + [sym_metavariable] = ACTIONS(1876), + [sym_raw_string_literal] = ACTIONS(1876), + [sym_float_literal] = ACTIONS(1876), }, [525] = { [sym_line_comment] = STATE(525), [sym_block_comment] = STATE(525), - [ts_builtin_sym_end] = ACTIONS(1829), - [sym_identifier] = ACTIONS(1831), - [anon_sym_SEMI] = ACTIONS(1829), - [anon_sym_macro_rules_BANG] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1829), - [anon_sym_LBRACK] = ACTIONS(1829), - [anon_sym_LBRACE] = ACTIONS(1829), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_STAR] = ACTIONS(1829), - [anon_sym_u8] = ACTIONS(1831), - [anon_sym_i8] = ACTIONS(1831), - [anon_sym_u16] = ACTIONS(1831), - [anon_sym_i16] = ACTIONS(1831), - [anon_sym_u32] = ACTIONS(1831), - [anon_sym_i32] = ACTIONS(1831), - [anon_sym_u64] = ACTIONS(1831), - [anon_sym_i64] = ACTIONS(1831), - [anon_sym_u128] = ACTIONS(1831), - [anon_sym_i128] = ACTIONS(1831), - [anon_sym_isize] = ACTIONS(1831), - [anon_sym_usize] = ACTIONS(1831), - [anon_sym_f32] = ACTIONS(1831), - [anon_sym_f64] = ACTIONS(1831), - [anon_sym_bool] = ACTIONS(1831), - [anon_sym_str] = ACTIONS(1831), - [anon_sym_char] = ACTIONS(1831), - [anon_sym_DASH] = ACTIONS(1829), - [anon_sym_COLON_COLON] = ACTIONS(1829), - [anon_sym_BANG] = ACTIONS(1829), - [anon_sym_AMP] = ACTIONS(1829), - [anon_sym_POUND] = ACTIONS(1829), - [anon_sym_LT] = ACTIONS(1829), - [anon_sym_PIPE] = ACTIONS(1829), - [anon_sym_SQUOTE] = ACTIONS(1831), - [anon_sym_async] = ACTIONS(1831), - [anon_sym_break] = ACTIONS(1831), - [anon_sym_const] = ACTIONS(1831), - [anon_sym_continue] = ACTIONS(1831), - [anon_sym_default] = ACTIONS(1831), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_fn] = ACTIONS(1831), - [anon_sym_for] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(1831), - [anon_sym_impl] = ACTIONS(1831), - [anon_sym_let] = ACTIONS(1831), - [anon_sym_loop] = ACTIONS(1831), - [anon_sym_match] = ACTIONS(1831), - [anon_sym_mod] = ACTIONS(1831), - [anon_sym_pub] = ACTIONS(1831), - [anon_sym_return] = ACTIONS(1831), - [anon_sym_static] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1831), - [anon_sym_trait] = ACTIONS(1831), - [anon_sym_type] = ACTIONS(1831), - [anon_sym_union] = ACTIONS(1831), - [anon_sym_unsafe] = ACTIONS(1831), - [anon_sym_use] = ACTIONS(1831), - [anon_sym_while] = ACTIONS(1831), - [anon_sym_extern] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1829), - [anon_sym_yield] = ACTIONS(1831), - [anon_sym_move] = ACTIONS(1831), - [anon_sym_try] = ACTIONS(1831), - [sym_integer_literal] = ACTIONS(1829), - [aux_sym_string_literal_token1] = ACTIONS(1829), - [sym_char_literal] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(1831), - [anon_sym_false] = ACTIONS(1831), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1831), - [sym_super] = ACTIONS(1831), - [sym_crate] = ACTIONS(1831), - [sym_metavariable] = ACTIONS(1829), - [sym_raw_string_literal] = ACTIONS(1829), - [sym_float_literal] = ACTIONS(1829), + [ts_builtin_sym_end] = ACTIONS(1880), + [sym_identifier] = ACTIONS(1882), + [anon_sym_SEMI] = ACTIONS(1880), + [anon_sym_macro_rules_BANG] = ACTIONS(1880), + [anon_sym_LPAREN] = ACTIONS(1880), + [anon_sym_LBRACK] = ACTIONS(1880), + [anon_sym_LBRACE] = ACTIONS(1880), + [anon_sym_RBRACE] = ACTIONS(1880), + [anon_sym_STAR] = ACTIONS(1880), + [anon_sym_u8] = ACTIONS(1882), + [anon_sym_i8] = ACTIONS(1882), + [anon_sym_u16] = ACTIONS(1882), + [anon_sym_i16] = ACTIONS(1882), + [anon_sym_u32] = ACTIONS(1882), + [anon_sym_i32] = ACTIONS(1882), + [anon_sym_u64] = ACTIONS(1882), + [anon_sym_i64] = ACTIONS(1882), + [anon_sym_u128] = ACTIONS(1882), + [anon_sym_i128] = ACTIONS(1882), + [anon_sym_isize] = ACTIONS(1882), + [anon_sym_usize] = ACTIONS(1882), + [anon_sym_f32] = ACTIONS(1882), + [anon_sym_f64] = ACTIONS(1882), + [anon_sym_bool] = ACTIONS(1882), + [anon_sym_str] = ACTIONS(1882), + [anon_sym_char] = ACTIONS(1882), + [anon_sym_DASH] = ACTIONS(1880), + [anon_sym_COLON_COLON] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1880), + [anon_sym_AMP] = ACTIONS(1880), + [anon_sym_POUND] = ACTIONS(1880), + [anon_sym_LT] = ACTIONS(1880), + [anon_sym_PIPE] = ACTIONS(1880), + [anon_sym_SQUOTE] = ACTIONS(1882), + [anon_sym_async] = ACTIONS(1882), + [anon_sym_break] = ACTIONS(1882), + [anon_sym_const] = ACTIONS(1882), + [anon_sym_continue] = ACTIONS(1882), + [anon_sym_default] = ACTIONS(1882), + [anon_sym_enum] = ACTIONS(1882), + [anon_sym_fn] = ACTIONS(1882), + [anon_sym_for] = ACTIONS(1882), + [anon_sym_if] = ACTIONS(1882), + [anon_sym_impl] = ACTIONS(1882), + [anon_sym_let] = ACTIONS(1882), + [anon_sym_loop] = ACTIONS(1882), + [anon_sym_match] = ACTIONS(1882), + [anon_sym_mod] = ACTIONS(1882), + [anon_sym_pub] = ACTIONS(1882), + [anon_sym_return] = ACTIONS(1882), + [anon_sym_static] = ACTIONS(1882), + [anon_sym_struct] = ACTIONS(1882), + [anon_sym_trait] = ACTIONS(1882), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_union] = ACTIONS(1882), + [anon_sym_unsafe] = ACTIONS(1882), + [anon_sym_use] = ACTIONS(1882), + [anon_sym_while] = ACTIONS(1882), + [anon_sym_extern] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1882), + [anon_sym_move] = ACTIONS(1882), + [anon_sym_try] = ACTIONS(1882), + [sym_integer_literal] = ACTIONS(1880), + [aux_sym_string_literal_token1] = ACTIONS(1880), + [sym_char_literal] = ACTIONS(1880), + [anon_sym_true] = ACTIONS(1882), + [anon_sym_false] = ACTIONS(1882), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1882), + [sym_super] = ACTIONS(1882), + [sym_crate] = ACTIONS(1882), + [sym_metavariable] = ACTIONS(1880), + [sym_raw_string_literal] = ACTIONS(1880), + [sym_float_literal] = ACTIONS(1880), }, [526] = { [sym_line_comment] = STATE(526), [sym_block_comment] = STATE(526), - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_SEMI] = ACTIONS(1833), - [anon_sym_macro_rules_BANG] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(1833), - [anon_sym_LBRACK] = ACTIONS(1833), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_STAR] = ACTIONS(1833), - [anon_sym_u8] = ACTIONS(1835), - [anon_sym_i8] = ACTIONS(1835), - [anon_sym_u16] = ACTIONS(1835), - [anon_sym_i16] = ACTIONS(1835), - [anon_sym_u32] = ACTIONS(1835), - [anon_sym_i32] = ACTIONS(1835), - [anon_sym_u64] = ACTIONS(1835), - [anon_sym_i64] = ACTIONS(1835), - [anon_sym_u128] = ACTIONS(1835), - [anon_sym_i128] = ACTIONS(1835), - [anon_sym_isize] = ACTIONS(1835), - [anon_sym_usize] = ACTIONS(1835), - [anon_sym_f32] = ACTIONS(1835), - [anon_sym_f64] = ACTIONS(1835), - [anon_sym_bool] = ACTIONS(1835), - [anon_sym_str] = ACTIONS(1835), - [anon_sym_char] = ACTIONS(1835), - [anon_sym_DASH] = ACTIONS(1833), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_BANG] = ACTIONS(1833), - [anon_sym_AMP] = ACTIONS(1833), - [anon_sym_POUND] = ACTIONS(1833), - [anon_sym_LT] = ACTIONS(1833), - [anon_sym_PIPE] = ACTIONS(1833), - [anon_sym_SQUOTE] = ACTIONS(1835), - [anon_sym_async] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_default] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_impl] = ACTIONS(1835), - [anon_sym_let] = ACTIONS(1835), - [anon_sym_loop] = ACTIONS(1835), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_mod] = ACTIONS(1835), - [anon_sym_pub] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_static] = ACTIONS(1835), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_trait] = ACTIONS(1835), - [anon_sym_type] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_use] = ACTIONS(1835), - [anon_sym_while] = ACTIONS(1835), - [anon_sym_extern] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1835), - [anon_sym_move] = ACTIONS(1835), - [anon_sym_try] = ACTIONS(1835), - [sym_integer_literal] = ACTIONS(1833), - [aux_sym_string_literal_token1] = ACTIONS(1833), - [sym_char_literal] = ACTIONS(1833), - [anon_sym_true] = ACTIONS(1835), - [anon_sym_false] = ACTIONS(1835), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1835), - [sym_super] = ACTIONS(1835), - [sym_crate] = ACTIONS(1835), - [sym_metavariable] = ACTIONS(1833), - [sym_raw_string_literal] = ACTIONS(1833), - [sym_float_literal] = ACTIONS(1833), + [ts_builtin_sym_end] = ACTIONS(1884), + [sym_identifier] = ACTIONS(1886), + [anon_sym_SEMI] = ACTIONS(1884), + [anon_sym_macro_rules_BANG] = ACTIONS(1884), + [anon_sym_LPAREN] = ACTIONS(1884), + [anon_sym_LBRACK] = ACTIONS(1884), + [anon_sym_LBRACE] = ACTIONS(1884), + [anon_sym_RBRACE] = ACTIONS(1884), + [anon_sym_STAR] = ACTIONS(1884), + [anon_sym_u8] = ACTIONS(1886), + [anon_sym_i8] = ACTIONS(1886), + [anon_sym_u16] = ACTIONS(1886), + [anon_sym_i16] = ACTIONS(1886), + [anon_sym_u32] = ACTIONS(1886), + [anon_sym_i32] = ACTIONS(1886), + [anon_sym_u64] = ACTIONS(1886), + [anon_sym_i64] = ACTIONS(1886), + [anon_sym_u128] = ACTIONS(1886), + [anon_sym_i128] = ACTIONS(1886), + [anon_sym_isize] = ACTIONS(1886), + [anon_sym_usize] = ACTIONS(1886), + [anon_sym_f32] = ACTIONS(1886), + [anon_sym_f64] = ACTIONS(1886), + [anon_sym_bool] = ACTIONS(1886), + [anon_sym_str] = ACTIONS(1886), + [anon_sym_char] = ACTIONS(1886), + [anon_sym_DASH] = ACTIONS(1884), + [anon_sym_COLON_COLON] = ACTIONS(1884), + [anon_sym_BANG] = ACTIONS(1884), + [anon_sym_AMP] = ACTIONS(1884), + [anon_sym_POUND] = ACTIONS(1884), + [anon_sym_LT] = ACTIONS(1884), + [anon_sym_PIPE] = ACTIONS(1884), + [anon_sym_SQUOTE] = ACTIONS(1886), + [anon_sym_async] = ACTIONS(1886), + [anon_sym_break] = ACTIONS(1886), + [anon_sym_const] = ACTIONS(1886), + [anon_sym_continue] = ACTIONS(1886), + [anon_sym_default] = ACTIONS(1886), + [anon_sym_enum] = ACTIONS(1886), + [anon_sym_fn] = ACTIONS(1886), + [anon_sym_for] = ACTIONS(1886), + [anon_sym_if] = ACTIONS(1886), + [anon_sym_impl] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1886), + [anon_sym_loop] = ACTIONS(1886), + [anon_sym_match] = ACTIONS(1886), + [anon_sym_mod] = ACTIONS(1886), + [anon_sym_pub] = ACTIONS(1886), + [anon_sym_return] = ACTIONS(1886), + [anon_sym_static] = ACTIONS(1886), + [anon_sym_struct] = ACTIONS(1886), + [anon_sym_trait] = ACTIONS(1886), + [anon_sym_type] = ACTIONS(1886), + [anon_sym_union] = ACTIONS(1886), + [anon_sym_unsafe] = ACTIONS(1886), + [anon_sym_use] = ACTIONS(1886), + [anon_sym_while] = ACTIONS(1886), + [anon_sym_extern] = ACTIONS(1886), + [anon_sym_DOT_DOT] = ACTIONS(1884), + [anon_sym_yield] = ACTIONS(1886), + [anon_sym_move] = ACTIONS(1886), + [anon_sym_try] = ACTIONS(1886), + [sym_integer_literal] = ACTIONS(1884), + [aux_sym_string_literal_token1] = ACTIONS(1884), + [sym_char_literal] = ACTIONS(1884), + [anon_sym_true] = ACTIONS(1886), + [anon_sym_false] = ACTIONS(1886), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1886), + [sym_super] = ACTIONS(1886), + [sym_crate] = ACTIONS(1886), + [sym_metavariable] = ACTIONS(1884), + [sym_raw_string_literal] = ACTIONS(1884), + [sym_float_literal] = ACTIONS(1884), }, [527] = { [sym_line_comment] = STATE(527), [sym_block_comment] = STATE(527), - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_identifier] = ACTIONS(1839), - [anon_sym_SEMI] = ACTIONS(1837), - [anon_sym_macro_rules_BANG] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(1837), - [anon_sym_LBRACK] = ACTIONS(1837), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_STAR] = ACTIONS(1837), - [anon_sym_u8] = ACTIONS(1839), - [anon_sym_i8] = ACTIONS(1839), - [anon_sym_u16] = ACTIONS(1839), - [anon_sym_i16] = ACTIONS(1839), - [anon_sym_u32] = ACTIONS(1839), - [anon_sym_i32] = ACTIONS(1839), - [anon_sym_u64] = ACTIONS(1839), - [anon_sym_i64] = ACTIONS(1839), - [anon_sym_u128] = ACTIONS(1839), - [anon_sym_i128] = ACTIONS(1839), - [anon_sym_isize] = ACTIONS(1839), - [anon_sym_usize] = ACTIONS(1839), - [anon_sym_f32] = ACTIONS(1839), - [anon_sym_f64] = ACTIONS(1839), - [anon_sym_bool] = ACTIONS(1839), - [anon_sym_str] = ACTIONS(1839), - [anon_sym_char] = ACTIONS(1839), - [anon_sym_DASH] = ACTIONS(1837), - [anon_sym_COLON_COLON] = ACTIONS(1837), - [anon_sym_BANG] = ACTIONS(1837), - [anon_sym_AMP] = ACTIONS(1837), - [anon_sym_POUND] = ACTIONS(1837), - [anon_sym_LT] = ACTIONS(1837), - [anon_sym_PIPE] = ACTIONS(1837), - [anon_sym_SQUOTE] = ACTIONS(1839), - [anon_sym_async] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_default] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_impl] = ACTIONS(1839), - [anon_sym_let] = ACTIONS(1839), - [anon_sym_loop] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_mod] = ACTIONS(1839), - [anon_sym_pub] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_static] = ACTIONS(1839), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_trait] = ACTIONS(1839), - [anon_sym_type] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_use] = ACTIONS(1839), - [anon_sym_while] = ACTIONS(1839), - [anon_sym_extern] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1839), - [anon_sym_move] = ACTIONS(1839), - [anon_sym_try] = ACTIONS(1839), - [sym_integer_literal] = ACTIONS(1837), - [aux_sym_string_literal_token1] = ACTIONS(1837), - [sym_char_literal] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(1839), - [anon_sym_false] = ACTIONS(1839), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1839), - [sym_super] = ACTIONS(1839), - [sym_crate] = ACTIONS(1839), - [sym_metavariable] = ACTIONS(1837), - [sym_raw_string_literal] = ACTIONS(1837), - [sym_float_literal] = ACTIONS(1837), + [ts_builtin_sym_end] = ACTIONS(1888), + [sym_identifier] = ACTIONS(1890), + [anon_sym_SEMI] = ACTIONS(1888), + [anon_sym_macro_rules_BANG] = ACTIONS(1888), + [anon_sym_LPAREN] = ACTIONS(1888), + [anon_sym_LBRACK] = ACTIONS(1888), + [anon_sym_LBRACE] = ACTIONS(1888), + [anon_sym_RBRACE] = ACTIONS(1888), + [anon_sym_STAR] = ACTIONS(1888), + [anon_sym_u8] = ACTIONS(1890), + [anon_sym_i8] = ACTIONS(1890), + [anon_sym_u16] = ACTIONS(1890), + [anon_sym_i16] = ACTIONS(1890), + [anon_sym_u32] = ACTIONS(1890), + [anon_sym_i32] = ACTIONS(1890), + [anon_sym_u64] = ACTIONS(1890), + [anon_sym_i64] = ACTIONS(1890), + [anon_sym_u128] = ACTIONS(1890), + [anon_sym_i128] = ACTIONS(1890), + [anon_sym_isize] = ACTIONS(1890), + [anon_sym_usize] = ACTIONS(1890), + [anon_sym_f32] = ACTIONS(1890), + [anon_sym_f64] = ACTIONS(1890), + [anon_sym_bool] = ACTIONS(1890), + [anon_sym_str] = ACTIONS(1890), + [anon_sym_char] = ACTIONS(1890), + [anon_sym_DASH] = ACTIONS(1888), + [anon_sym_COLON_COLON] = ACTIONS(1888), + [anon_sym_BANG] = ACTIONS(1888), + [anon_sym_AMP] = ACTIONS(1888), + [anon_sym_POUND] = ACTIONS(1888), + [anon_sym_LT] = ACTIONS(1888), + [anon_sym_PIPE] = ACTIONS(1888), + [anon_sym_SQUOTE] = ACTIONS(1890), + [anon_sym_async] = ACTIONS(1890), + [anon_sym_break] = ACTIONS(1890), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_continue] = ACTIONS(1890), + [anon_sym_default] = ACTIONS(1890), + [anon_sym_enum] = ACTIONS(1890), + [anon_sym_fn] = ACTIONS(1890), + [anon_sym_for] = ACTIONS(1890), + [anon_sym_if] = ACTIONS(1890), + [anon_sym_impl] = ACTIONS(1890), + [anon_sym_let] = ACTIONS(1890), + [anon_sym_loop] = ACTIONS(1890), + [anon_sym_match] = ACTIONS(1890), + [anon_sym_mod] = ACTIONS(1890), + [anon_sym_pub] = ACTIONS(1890), + [anon_sym_return] = ACTIONS(1890), + [anon_sym_static] = ACTIONS(1890), + [anon_sym_struct] = ACTIONS(1890), + [anon_sym_trait] = ACTIONS(1890), + [anon_sym_type] = ACTIONS(1890), + [anon_sym_union] = ACTIONS(1890), + [anon_sym_unsafe] = ACTIONS(1890), + [anon_sym_use] = ACTIONS(1890), + [anon_sym_while] = ACTIONS(1890), + [anon_sym_extern] = ACTIONS(1890), + [anon_sym_DOT_DOT] = ACTIONS(1888), + [anon_sym_yield] = ACTIONS(1890), + [anon_sym_move] = ACTIONS(1890), + [anon_sym_try] = ACTIONS(1890), + [sym_integer_literal] = ACTIONS(1888), + [aux_sym_string_literal_token1] = ACTIONS(1888), + [sym_char_literal] = ACTIONS(1888), + [anon_sym_true] = ACTIONS(1890), + [anon_sym_false] = ACTIONS(1890), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1890), + [sym_super] = ACTIONS(1890), + [sym_crate] = ACTIONS(1890), + [sym_metavariable] = ACTIONS(1888), + [sym_raw_string_literal] = ACTIONS(1888), + [sym_float_literal] = ACTIONS(1888), }, [528] = { [sym_line_comment] = STATE(528), [sym_block_comment] = STATE(528), - [ts_builtin_sym_end] = ACTIONS(1841), - [sym_identifier] = ACTIONS(1843), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_macro_rules_BANG] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1841), - [anon_sym_LBRACK] = ACTIONS(1841), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_RBRACE] = ACTIONS(1841), - [anon_sym_STAR] = ACTIONS(1841), - [anon_sym_u8] = ACTIONS(1843), - [anon_sym_i8] = ACTIONS(1843), - [anon_sym_u16] = ACTIONS(1843), - [anon_sym_i16] = ACTIONS(1843), - [anon_sym_u32] = ACTIONS(1843), - [anon_sym_i32] = ACTIONS(1843), - [anon_sym_u64] = ACTIONS(1843), - [anon_sym_i64] = ACTIONS(1843), - [anon_sym_u128] = ACTIONS(1843), - [anon_sym_i128] = ACTIONS(1843), - [anon_sym_isize] = ACTIONS(1843), - [anon_sym_usize] = ACTIONS(1843), - [anon_sym_f32] = ACTIONS(1843), - [anon_sym_f64] = ACTIONS(1843), - [anon_sym_bool] = ACTIONS(1843), - [anon_sym_str] = ACTIONS(1843), - [anon_sym_char] = ACTIONS(1843), - [anon_sym_DASH] = ACTIONS(1841), - [anon_sym_COLON_COLON] = ACTIONS(1841), - [anon_sym_BANG] = ACTIONS(1841), - [anon_sym_AMP] = ACTIONS(1841), - [anon_sym_POUND] = ACTIONS(1841), - [anon_sym_LT] = ACTIONS(1841), - [anon_sym_PIPE] = ACTIONS(1841), - [anon_sym_SQUOTE] = ACTIONS(1843), - [anon_sym_async] = ACTIONS(1843), - [anon_sym_break] = ACTIONS(1843), - [anon_sym_const] = ACTIONS(1843), - [anon_sym_continue] = ACTIONS(1843), - [anon_sym_default] = ACTIONS(1843), - [anon_sym_enum] = ACTIONS(1843), - [anon_sym_fn] = ACTIONS(1843), - [anon_sym_for] = ACTIONS(1843), - [anon_sym_if] = ACTIONS(1843), - [anon_sym_impl] = ACTIONS(1843), - [anon_sym_let] = ACTIONS(1843), - [anon_sym_loop] = ACTIONS(1843), - [anon_sym_match] = ACTIONS(1843), - [anon_sym_mod] = ACTIONS(1843), - [anon_sym_pub] = ACTIONS(1843), - [anon_sym_return] = ACTIONS(1843), - [anon_sym_static] = ACTIONS(1843), - [anon_sym_struct] = ACTIONS(1843), - [anon_sym_trait] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1843), - [anon_sym_union] = ACTIONS(1843), - [anon_sym_unsafe] = ACTIONS(1843), - [anon_sym_use] = ACTIONS(1843), - [anon_sym_while] = ACTIONS(1843), - [anon_sym_extern] = ACTIONS(1843), - [anon_sym_DOT_DOT] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1843), - [anon_sym_move] = ACTIONS(1843), - [anon_sym_try] = ACTIONS(1843), - [sym_integer_literal] = ACTIONS(1841), - [aux_sym_string_literal_token1] = ACTIONS(1841), - [sym_char_literal] = ACTIONS(1841), - [anon_sym_true] = ACTIONS(1843), - [anon_sym_false] = ACTIONS(1843), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1843), - [sym_super] = ACTIONS(1843), - [sym_crate] = ACTIONS(1843), - [sym_metavariable] = ACTIONS(1841), - [sym_raw_string_literal] = ACTIONS(1841), - [sym_float_literal] = ACTIONS(1841), + [ts_builtin_sym_end] = ACTIONS(1892), + [sym_identifier] = ACTIONS(1894), + [anon_sym_SEMI] = ACTIONS(1892), + [anon_sym_macro_rules_BANG] = ACTIONS(1892), + [anon_sym_LPAREN] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LBRACE] = ACTIONS(1892), + [anon_sym_RBRACE] = ACTIONS(1892), + [anon_sym_STAR] = ACTIONS(1892), + [anon_sym_u8] = ACTIONS(1894), + [anon_sym_i8] = ACTIONS(1894), + [anon_sym_u16] = ACTIONS(1894), + [anon_sym_i16] = ACTIONS(1894), + [anon_sym_u32] = ACTIONS(1894), + [anon_sym_i32] = ACTIONS(1894), + [anon_sym_u64] = ACTIONS(1894), + [anon_sym_i64] = ACTIONS(1894), + [anon_sym_u128] = ACTIONS(1894), + [anon_sym_i128] = ACTIONS(1894), + [anon_sym_isize] = ACTIONS(1894), + [anon_sym_usize] = ACTIONS(1894), + [anon_sym_f32] = ACTIONS(1894), + [anon_sym_f64] = ACTIONS(1894), + [anon_sym_bool] = ACTIONS(1894), + [anon_sym_str] = ACTIONS(1894), + [anon_sym_char] = ACTIONS(1894), + [anon_sym_DASH] = ACTIONS(1892), + [anon_sym_COLON_COLON] = ACTIONS(1892), + [anon_sym_BANG] = ACTIONS(1892), + [anon_sym_AMP] = ACTIONS(1892), + [anon_sym_POUND] = ACTIONS(1892), + [anon_sym_LT] = ACTIONS(1892), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_SQUOTE] = ACTIONS(1894), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_break] = ACTIONS(1894), + [anon_sym_const] = ACTIONS(1894), + [anon_sym_continue] = ACTIONS(1894), + [anon_sym_default] = ACTIONS(1894), + [anon_sym_enum] = ACTIONS(1894), + [anon_sym_fn] = ACTIONS(1894), + [anon_sym_for] = ACTIONS(1894), + [anon_sym_if] = ACTIONS(1894), + [anon_sym_impl] = ACTIONS(1894), + [anon_sym_let] = ACTIONS(1894), + [anon_sym_loop] = ACTIONS(1894), + [anon_sym_match] = ACTIONS(1894), + [anon_sym_mod] = ACTIONS(1894), + [anon_sym_pub] = ACTIONS(1894), + [anon_sym_return] = ACTIONS(1894), + [anon_sym_static] = ACTIONS(1894), + [anon_sym_struct] = ACTIONS(1894), + [anon_sym_trait] = ACTIONS(1894), + [anon_sym_type] = ACTIONS(1894), + [anon_sym_union] = ACTIONS(1894), + [anon_sym_unsafe] = ACTIONS(1894), + [anon_sym_use] = ACTIONS(1894), + [anon_sym_while] = ACTIONS(1894), + [anon_sym_extern] = ACTIONS(1894), + [anon_sym_DOT_DOT] = ACTIONS(1892), + [anon_sym_yield] = ACTIONS(1894), + [anon_sym_move] = ACTIONS(1894), + [anon_sym_try] = ACTIONS(1894), + [sym_integer_literal] = ACTIONS(1892), + [aux_sym_string_literal_token1] = ACTIONS(1892), + [sym_char_literal] = ACTIONS(1892), + [anon_sym_true] = ACTIONS(1894), + [anon_sym_false] = ACTIONS(1894), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1894), + [sym_super] = ACTIONS(1894), + [sym_crate] = ACTIONS(1894), + [sym_metavariable] = ACTIONS(1892), + [sym_raw_string_literal] = ACTIONS(1892), + [sym_float_literal] = ACTIONS(1892), }, [529] = { [sym_line_comment] = STATE(529), [sym_block_comment] = STATE(529), - [ts_builtin_sym_end] = ACTIONS(1845), - [sym_identifier] = ACTIONS(1847), - [anon_sym_SEMI] = ACTIONS(1845), - [anon_sym_macro_rules_BANG] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1845), - [anon_sym_LBRACK] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_RBRACE] = ACTIONS(1845), - [anon_sym_STAR] = ACTIONS(1845), - [anon_sym_u8] = ACTIONS(1847), - [anon_sym_i8] = ACTIONS(1847), - [anon_sym_u16] = ACTIONS(1847), - [anon_sym_i16] = ACTIONS(1847), - [anon_sym_u32] = ACTIONS(1847), - [anon_sym_i32] = ACTIONS(1847), - [anon_sym_u64] = ACTIONS(1847), - [anon_sym_i64] = ACTIONS(1847), - [anon_sym_u128] = ACTIONS(1847), - [anon_sym_i128] = ACTIONS(1847), - [anon_sym_isize] = ACTIONS(1847), - [anon_sym_usize] = ACTIONS(1847), - [anon_sym_f32] = ACTIONS(1847), - [anon_sym_f64] = ACTIONS(1847), - [anon_sym_bool] = ACTIONS(1847), - [anon_sym_str] = ACTIONS(1847), - [anon_sym_char] = ACTIONS(1847), - [anon_sym_DASH] = ACTIONS(1845), - [anon_sym_COLON_COLON] = ACTIONS(1845), - [anon_sym_BANG] = ACTIONS(1845), - [anon_sym_AMP] = ACTIONS(1845), - [anon_sym_POUND] = ACTIONS(1845), - [anon_sym_LT] = ACTIONS(1845), - [anon_sym_PIPE] = ACTIONS(1845), - [anon_sym_SQUOTE] = ACTIONS(1847), - [anon_sym_async] = ACTIONS(1847), - [anon_sym_break] = ACTIONS(1847), - [anon_sym_const] = ACTIONS(1847), - [anon_sym_continue] = ACTIONS(1847), - [anon_sym_default] = ACTIONS(1847), - [anon_sym_enum] = ACTIONS(1847), - [anon_sym_fn] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(1847), - [anon_sym_if] = ACTIONS(1847), - [anon_sym_impl] = ACTIONS(1847), - [anon_sym_let] = ACTIONS(1847), - [anon_sym_loop] = ACTIONS(1847), - [anon_sym_match] = ACTIONS(1847), - [anon_sym_mod] = ACTIONS(1847), - [anon_sym_pub] = ACTIONS(1847), - [anon_sym_return] = ACTIONS(1847), - [anon_sym_static] = ACTIONS(1847), - [anon_sym_struct] = ACTIONS(1847), - [anon_sym_trait] = ACTIONS(1847), - [anon_sym_type] = ACTIONS(1847), - [anon_sym_union] = ACTIONS(1847), - [anon_sym_unsafe] = ACTIONS(1847), - [anon_sym_use] = ACTIONS(1847), - [anon_sym_while] = ACTIONS(1847), - [anon_sym_extern] = ACTIONS(1847), - [anon_sym_DOT_DOT] = ACTIONS(1845), - [anon_sym_yield] = ACTIONS(1847), - [anon_sym_move] = ACTIONS(1847), - [anon_sym_try] = ACTIONS(1847), - [sym_integer_literal] = ACTIONS(1845), - [aux_sym_string_literal_token1] = ACTIONS(1845), - [sym_char_literal] = ACTIONS(1845), - [anon_sym_true] = ACTIONS(1847), - [anon_sym_false] = ACTIONS(1847), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1847), - [sym_super] = ACTIONS(1847), - [sym_crate] = ACTIONS(1847), - [sym_metavariable] = ACTIONS(1845), - [sym_raw_string_literal] = ACTIONS(1845), - [sym_float_literal] = ACTIONS(1845), + [ts_builtin_sym_end] = ACTIONS(858), + [sym_identifier] = ACTIONS(860), + [anon_sym_SEMI] = ACTIONS(858), + [anon_sym_macro_rules_BANG] = ACTIONS(858), + [anon_sym_LPAREN] = ACTIONS(858), + [anon_sym_LBRACK] = ACTIONS(858), + [anon_sym_LBRACE] = ACTIONS(858), + [anon_sym_RBRACE] = ACTIONS(858), + [anon_sym_STAR] = ACTIONS(858), + [anon_sym_u8] = ACTIONS(860), + [anon_sym_i8] = ACTIONS(860), + [anon_sym_u16] = ACTIONS(860), + [anon_sym_i16] = ACTIONS(860), + [anon_sym_u32] = ACTIONS(860), + [anon_sym_i32] = ACTIONS(860), + [anon_sym_u64] = ACTIONS(860), + [anon_sym_i64] = ACTIONS(860), + [anon_sym_u128] = ACTIONS(860), + [anon_sym_i128] = ACTIONS(860), + [anon_sym_isize] = ACTIONS(860), + [anon_sym_usize] = ACTIONS(860), + [anon_sym_f32] = ACTIONS(860), + [anon_sym_f64] = ACTIONS(860), + [anon_sym_bool] = ACTIONS(860), + [anon_sym_str] = ACTIONS(860), + [anon_sym_char] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(858), + [anon_sym_COLON_COLON] = ACTIONS(858), + [anon_sym_BANG] = ACTIONS(858), + [anon_sym_AMP] = ACTIONS(858), + [anon_sym_POUND] = ACTIONS(858), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_PIPE] = ACTIONS(858), + [anon_sym_SQUOTE] = ACTIONS(860), + [anon_sym_async] = ACTIONS(860), + [anon_sym_break] = ACTIONS(860), + [anon_sym_const] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_default] = ACTIONS(860), + [anon_sym_enum] = ACTIONS(860), + [anon_sym_fn] = ACTIONS(860), + [anon_sym_for] = ACTIONS(860), + [anon_sym_if] = ACTIONS(860), + [anon_sym_impl] = ACTIONS(860), + [anon_sym_let] = ACTIONS(860), + [anon_sym_loop] = ACTIONS(860), + [anon_sym_match] = ACTIONS(860), + [anon_sym_mod] = ACTIONS(860), + [anon_sym_pub] = ACTIONS(860), + [anon_sym_return] = ACTIONS(860), + [anon_sym_static] = ACTIONS(860), + [anon_sym_struct] = ACTIONS(860), + [anon_sym_trait] = ACTIONS(860), + [anon_sym_type] = ACTIONS(860), + [anon_sym_union] = ACTIONS(860), + [anon_sym_unsafe] = ACTIONS(860), + [anon_sym_use] = ACTIONS(860), + [anon_sym_while] = ACTIONS(860), + [anon_sym_extern] = ACTIONS(860), + [anon_sym_DOT_DOT] = ACTIONS(858), + [anon_sym_yield] = ACTIONS(860), + [anon_sym_move] = ACTIONS(860), + [anon_sym_try] = ACTIONS(860), + [sym_integer_literal] = ACTIONS(858), + [aux_sym_string_literal_token1] = ACTIONS(858), + [sym_char_literal] = ACTIONS(858), + [anon_sym_true] = ACTIONS(860), + [anon_sym_false] = ACTIONS(860), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(860), + [sym_super] = ACTIONS(860), + [sym_crate] = ACTIONS(860), + [sym_metavariable] = ACTIONS(858), + [sym_raw_string_literal] = ACTIONS(858), + [sym_float_literal] = ACTIONS(858), }, [530] = { [sym_line_comment] = STATE(530), [sym_block_comment] = STATE(530), - [ts_builtin_sym_end] = ACTIONS(1849), - [sym_identifier] = ACTIONS(1851), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_macro_rules_BANG] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1849), - [anon_sym_LBRACK] = ACTIONS(1849), - [anon_sym_LBRACE] = ACTIONS(1849), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_STAR] = ACTIONS(1849), - [anon_sym_u8] = ACTIONS(1851), - [anon_sym_i8] = ACTIONS(1851), - [anon_sym_u16] = ACTIONS(1851), - [anon_sym_i16] = ACTIONS(1851), - [anon_sym_u32] = ACTIONS(1851), - [anon_sym_i32] = ACTIONS(1851), - [anon_sym_u64] = ACTIONS(1851), - [anon_sym_i64] = ACTIONS(1851), - [anon_sym_u128] = ACTIONS(1851), - [anon_sym_i128] = ACTIONS(1851), - [anon_sym_isize] = ACTIONS(1851), - [anon_sym_usize] = ACTIONS(1851), - [anon_sym_f32] = ACTIONS(1851), - [anon_sym_f64] = ACTIONS(1851), - [anon_sym_bool] = ACTIONS(1851), - [anon_sym_str] = ACTIONS(1851), - [anon_sym_char] = ACTIONS(1851), - [anon_sym_DASH] = ACTIONS(1849), - [anon_sym_COLON_COLON] = ACTIONS(1849), - [anon_sym_BANG] = ACTIONS(1849), - [anon_sym_AMP] = ACTIONS(1849), - [anon_sym_POUND] = ACTIONS(1849), - [anon_sym_LT] = ACTIONS(1849), - [anon_sym_PIPE] = ACTIONS(1849), - [anon_sym_SQUOTE] = ACTIONS(1851), - [anon_sym_async] = ACTIONS(1851), - [anon_sym_break] = ACTIONS(1851), - [anon_sym_const] = ACTIONS(1851), - [anon_sym_continue] = ACTIONS(1851), - [anon_sym_default] = ACTIONS(1851), - [anon_sym_enum] = ACTIONS(1851), - [anon_sym_fn] = ACTIONS(1851), - [anon_sym_for] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(1851), - [anon_sym_impl] = ACTIONS(1851), - [anon_sym_let] = ACTIONS(1851), - [anon_sym_loop] = ACTIONS(1851), - [anon_sym_match] = ACTIONS(1851), - [anon_sym_mod] = ACTIONS(1851), - [anon_sym_pub] = ACTIONS(1851), - [anon_sym_return] = ACTIONS(1851), - [anon_sym_static] = ACTIONS(1851), - [anon_sym_struct] = ACTIONS(1851), - [anon_sym_trait] = ACTIONS(1851), - [anon_sym_type] = ACTIONS(1851), - [anon_sym_union] = ACTIONS(1851), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_use] = ACTIONS(1851), - [anon_sym_while] = ACTIONS(1851), - [anon_sym_extern] = ACTIONS(1851), - [anon_sym_DOT_DOT] = ACTIONS(1849), - [anon_sym_yield] = ACTIONS(1851), - [anon_sym_move] = ACTIONS(1851), - [anon_sym_try] = ACTIONS(1851), - [sym_integer_literal] = ACTIONS(1849), - [aux_sym_string_literal_token1] = ACTIONS(1849), - [sym_char_literal] = ACTIONS(1849), - [anon_sym_true] = ACTIONS(1851), - [anon_sym_false] = ACTIONS(1851), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1851), - [sym_super] = ACTIONS(1851), - [sym_crate] = ACTIONS(1851), - [sym_metavariable] = ACTIONS(1849), - [sym_raw_string_literal] = ACTIONS(1849), - [sym_float_literal] = ACTIONS(1849), + [ts_builtin_sym_end] = ACTIONS(1896), + [sym_identifier] = ACTIONS(1898), + [anon_sym_SEMI] = ACTIONS(1896), + [anon_sym_macro_rules_BANG] = ACTIONS(1896), + [anon_sym_LPAREN] = ACTIONS(1896), + [anon_sym_LBRACK] = ACTIONS(1896), + [anon_sym_LBRACE] = ACTIONS(1896), + [anon_sym_RBRACE] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1896), + [anon_sym_u8] = ACTIONS(1898), + [anon_sym_i8] = ACTIONS(1898), + [anon_sym_u16] = ACTIONS(1898), + [anon_sym_i16] = ACTIONS(1898), + [anon_sym_u32] = ACTIONS(1898), + [anon_sym_i32] = ACTIONS(1898), + [anon_sym_u64] = ACTIONS(1898), + [anon_sym_i64] = ACTIONS(1898), + [anon_sym_u128] = ACTIONS(1898), + [anon_sym_i128] = ACTIONS(1898), + [anon_sym_isize] = ACTIONS(1898), + [anon_sym_usize] = ACTIONS(1898), + [anon_sym_f32] = ACTIONS(1898), + [anon_sym_f64] = ACTIONS(1898), + [anon_sym_bool] = ACTIONS(1898), + [anon_sym_str] = ACTIONS(1898), + [anon_sym_char] = ACTIONS(1898), + [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_COLON_COLON] = ACTIONS(1896), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_AMP] = ACTIONS(1896), + [anon_sym_POUND] = ACTIONS(1896), + [anon_sym_LT] = ACTIONS(1896), + [anon_sym_PIPE] = ACTIONS(1896), + [anon_sym_SQUOTE] = ACTIONS(1898), + [anon_sym_async] = ACTIONS(1898), + [anon_sym_break] = ACTIONS(1898), + [anon_sym_const] = ACTIONS(1898), + [anon_sym_continue] = ACTIONS(1898), + [anon_sym_default] = ACTIONS(1898), + [anon_sym_enum] = ACTIONS(1898), + [anon_sym_fn] = ACTIONS(1898), + [anon_sym_for] = ACTIONS(1898), + [anon_sym_if] = ACTIONS(1898), + [anon_sym_impl] = ACTIONS(1898), + [anon_sym_let] = ACTIONS(1898), + [anon_sym_loop] = ACTIONS(1898), + [anon_sym_match] = ACTIONS(1898), + [anon_sym_mod] = ACTIONS(1898), + [anon_sym_pub] = ACTIONS(1898), + [anon_sym_return] = ACTIONS(1898), + [anon_sym_static] = ACTIONS(1898), + [anon_sym_struct] = ACTIONS(1898), + [anon_sym_trait] = ACTIONS(1898), + [anon_sym_type] = ACTIONS(1898), + [anon_sym_union] = ACTIONS(1898), + [anon_sym_unsafe] = ACTIONS(1898), + [anon_sym_use] = ACTIONS(1898), + [anon_sym_while] = ACTIONS(1898), + [anon_sym_extern] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1896), + [anon_sym_yield] = ACTIONS(1898), + [anon_sym_move] = ACTIONS(1898), + [anon_sym_try] = ACTIONS(1898), + [sym_integer_literal] = ACTIONS(1896), + [aux_sym_string_literal_token1] = ACTIONS(1896), + [sym_char_literal] = ACTIONS(1896), + [anon_sym_true] = ACTIONS(1898), + [anon_sym_false] = ACTIONS(1898), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1898), + [sym_super] = ACTIONS(1898), + [sym_crate] = ACTIONS(1898), + [sym_metavariable] = ACTIONS(1896), + [sym_raw_string_literal] = ACTIONS(1896), + [sym_float_literal] = ACTIONS(1896), }, [531] = { [sym_line_comment] = STATE(531), [sym_block_comment] = STATE(531), - [ts_builtin_sym_end] = ACTIONS(882), - [sym_identifier] = ACTIONS(884), - [anon_sym_SEMI] = ACTIONS(882), - [anon_sym_macro_rules_BANG] = ACTIONS(882), - [anon_sym_LPAREN] = ACTIONS(882), - [anon_sym_LBRACK] = ACTIONS(882), - [anon_sym_LBRACE] = ACTIONS(882), - [anon_sym_RBRACE] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(882), - [anon_sym_u8] = ACTIONS(884), - [anon_sym_i8] = ACTIONS(884), - [anon_sym_u16] = ACTIONS(884), - [anon_sym_i16] = ACTIONS(884), - [anon_sym_u32] = ACTIONS(884), - [anon_sym_i32] = ACTIONS(884), - [anon_sym_u64] = ACTIONS(884), - [anon_sym_i64] = ACTIONS(884), - [anon_sym_u128] = ACTIONS(884), - [anon_sym_i128] = ACTIONS(884), - [anon_sym_isize] = ACTIONS(884), - [anon_sym_usize] = ACTIONS(884), - [anon_sym_f32] = ACTIONS(884), - [anon_sym_f64] = ACTIONS(884), - [anon_sym_bool] = ACTIONS(884), - [anon_sym_str] = ACTIONS(884), - [anon_sym_char] = ACTIONS(884), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_COLON_COLON] = ACTIONS(882), - [anon_sym_BANG] = ACTIONS(882), - [anon_sym_AMP] = ACTIONS(882), - [anon_sym_POUND] = ACTIONS(882), - [anon_sym_LT] = ACTIONS(882), - [anon_sym_PIPE] = ACTIONS(882), - [anon_sym_SQUOTE] = ACTIONS(884), - [anon_sym_async] = ACTIONS(884), - [anon_sym_break] = ACTIONS(884), - [anon_sym_const] = ACTIONS(884), - [anon_sym_continue] = ACTIONS(884), - [anon_sym_default] = ACTIONS(884), - [anon_sym_enum] = ACTIONS(884), - [anon_sym_fn] = ACTIONS(884), - [anon_sym_for] = ACTIONS(884), - [anon_sym_if] = ACTIONS(884), - [anon_sym_impl] = ACTIONS(884), - [anon_sym_let] = ACTIONS(884), - [anon_sym_loop] = ACTIONS(884), - [anon_sym_match] = ACTIONS(884), - [anon_sym_mod] = ACTIONS(884), - [anon_sym_pub] = ACTIONS(884), - [anon_sym_return] = ACTIONS(884), - [anon_sym_static] = ACTIONS(884), - [anon_sym_struct] = ACTIONS(884), - [anon_sym_trait] = ACTIONS(884), - [anon_sym_type] = ACTIONS(884), - [anon_sym_union] = ACTIONS(884), - [anon_sym_unsafe] = ACTIONS(884), - [anon_sym_use] = ACTIONS(884), - [anon_sym_while] = ACTIONS(884), - [anon_sym_extern] = ACTIONS(884), - [anon_sym_DOT_DOT] = ACTIONS(882), - [anon_sym_yield] = ACTIONS(884), - [anon_sym_move] = ACTIONS(884), - [anon_sym_try] = ACTIONS(884), - [sym_integer_literal] = ACTIONS(882), - [aux_sym_string_literal_token1] = ACTIONS(882), - [sym_char_literal] = ACTIONS(882), - [anon_sym_true] = ACTIONS(884), - [anon_sym_false] = ACTIONS(884), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(884), - [sym_super] = ACTIONS(884), - [sym_crate] = ACTIONS(884), - [sym_metavariable] = ACTIONS(882), - [sym_raw_string_literal] = ACTIONS(882), - [sym_float_literal] = ACTIONS(882), + [ts_builtin_sym_end] = ACTIONS(1900), + [sym_identifier] = ACTIONS(1902), + [anon_sym_SEMI] = ACTIONS(1900), + [anon_sym_macro_rules_BANG] = ACTIONS(1900), + [anon_sym_LPAREN] = ACTIONS(1900), + [anon_sym_LBRACK] = ACTIONS(1900), + [anon_sym_LBRACE] = ACTIONS(1900), + [anon_sym_RBRACE] = ACTIONS(1900), + [anon_sym_STAR] = ACTIONS(1900), + [anon_sym_u8] = ACTIONS(1902), + [anon_sym_i8] = ACTIONS(1902), + [anon_sym_u16] = ACTIONS(1902), + [anon_sym_i16] = ACTIONS(1902), + [anon_sym_u32] = ACTIONS(1902), + [anon_sym_i32] = ACTIONS(1902), + [anon_sym_u64] = ACTIONS(1902), + [anon_sym_i64] = ACTIONS(1902), + [anon_sym_u128] = ACTIONS(1902), + [anon_sym_i128] = ACTIONS(1902), + [anon_sym_isize] = ACTIONS(1902), + [anon_sym_usize] = ACTIONS(1902), + [anon_sym_f32] = ACTIONS(1902), + [anon_sym_f64] = ACTIONS(1902), + [anon_sym_bool] = ACTIONS(1902), + [anon_sym_str] = ACTIONS(1902), + [anon_sym_char] = ACTIONS(1902), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_COLON_COLON] = ACTIONS(1900), + [anon_sym_BANG] = ACTIONS(1900), + [anon_sym_AMP] = ACTIONS(1900), + [anon_sym_POUND] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1900), + [anon_sym_SQUOTE] = ACTIONS(1902), + [anon_sym_async] = ACTIONS(1902), + [anon_sym_break] = ACTIONS(1902), + [anon_sym_const] = ACTIONS(1902), + [anon_sym_continue] = ACTIONS(1902), + [anon_sym_default] = ACTIONS(1902), + [anon_sym_enum] = ACTIONS(1902), + [anon_sym_fn] = ACTIONS(1902), + [anon_sym_for] = ACTIONS(1902), + [anon_sym_if] = ACTIONS(1902), + [anon_sym_impl] = ACTIONS(1902), + [anon_sym_let] = ACTIONS(1902), + [anon_sym_loop] = ACTIONS(1902), + [anon_sym_match] = ACTIONS(1902), + [anon_sym_mod] = ACTIONS(1902), + [anon_sym_pub] = ACTIONS(1902), + [anon_sym_return] = ACTIONS(1902), + [anon_sym_static] = ACTIONS(1902), + [anon_sym_struct] = ACTIONS(1902), + [anon_sym_trait] = ACTIONS(1902), + [anon_sym_type] = ACTIONS(1902), + [anon_sym_union] = ACTIONS(1902), + [anon_sym_unsafe] = ACTIONS(1902), + [anon_sym_use] = ACTIONS(1902), + [anon_sym_while] = ACTIONS(1902), + [anon_sym_extern] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1900), + [anon_sym_yield] = ACTIONS(1902), + [anon_sym_move] = ACTIONS(1902), + [anon_sym_try] = ACTIONS(1902), + [sym_integer_literal] = ACTIONS(1900), + [aux_sym_string_literal_token1] = ACTIONS(1900), + [sym_char_literal] = ACTIONS(1900), + [anon_sym_true] = ACTIONS(1902), + [anon_sym_false] = ACTIONS(1902), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1902), + [sym_super] = ACTIONS(1902), + [sym_crate] = ACTIONS(1902), + [sym_metavariable] = ACTIONS(1900), + [sym_raw_string_literal] = ACTIONS(1900), + [sym_float_literal] = ACTIONS(1900), }, [532] = { [sym_line_comment] = STATE(532), [sym_block_comment] = STATE(532), - [ts_builtin_sym_end] = ACTIONS(1853), - [sym_identifier] = ACTIONS(1855), - [anon_sym_SEMI] = ACTIONS(1853), - [anon_sym_macro_rules_BANG] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_RBRACE] = ACTIONS(1853), - [anon_sym_STAR] = ACTIONS(1853), - [anon_sym_u8] = ACTIONS(1855), - [anon_sym_i8] = ACTIONS(1855), - [anon_sym_u16] = ACTIONS(1855), - [anon_sym_i16] = ACTIONS(1855), - [anon_sym_u32] = ACTIONS(1855), - [anon_sym_i32] = ACTIONS(1855), - [anon_sym_u64] = ACTIONS(1855), - [anon_sym_i64] = ACTIONS(1855), - [anon_sym_u128] = ACTIONS(1855), - [anon_sym_i128] = ACTIONS(1855), - [anon_sym_isize] = ACTIONS(1855), - [anon_sym_usize] = ACTIONS(1855), - [anon_sym_f32] = ACTIONS(1855), - [anon_sym_f64] = ACTIONS(1855), - [anon_sym_bool] = ACTIONS(1855), - [anon_sym_str] = ACTIONS(1855), - [anon_sym_char] = ACTIONS(1855), - [anon_sym_DASH] = ACTIONS(1853), - [anon_sym_COLON_COLON] = ACTIONS(1853), - [anon_sym_BANG] = ACTIONS(1853), - [anon_sym_AMP] = ACTIONS(1853), - [anon_sym_POUND] = ACTIONS(1853), - [anon_sym_LT] = ACTIONS(1853), - [anon_sym_PIPE] = ACTIONS(1853), - [anon_sym_SQUOTE] = ACTIONS(1855), - [anon_sym_async] = ACTIONS(1855), - [anon_sym_break] = ACTIONS(1855), - [anon_sym_const] = ACTIONS(1855), - [anon_sym_continue] = ACTIONS(1855), - [anon_sym_default] = ACTIONS(1855), - [anon_sym_enum] = ACTIONS(1855), - [anon_sym_fn] = ACTIONS(1855), - [anon_sym_for] = ACTIONS(1855), - [anon_sym_if] = ACTIONS(1855), - [anon_sym_impl] = ACTIONS(1855), - [anon_sym_let] = ACTIONS(1855), - [anon_sym_loop] = ACTIONS(1855), - [anon_sym_match] = ACTIONS(1855), - [anon_sym_mod] = ACTIONS(1855), - [anon_sym_pub] = ACTIONS(1855), - [anon_sym_return] = ACTIONS(1855), - [anon_sym_static] = ACTIONS(1855), - [anon_sym_struct] = ACTIONS(1855), - [anon_sym_trait] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1855), - [anon_sym_union] = ACTIONS(1855), - [anon_sym_unsafe] = ACTIONS(1855), - [anon_sym_use] = ACTIONS(1855), - [anon_sym_while] = ACTIONS(1855), - [anon_sym_extern] = ACTIONS(1855), - [anon_sym_DOT_DOT] = ACTIONS(1853), - [anon_sym_yield] = ACTIONS(1855), - [anon_sym_move] = ACTIONS(1855), - [anon_sym_try] = ACTIONS(1855), - [sym_integer_literal] = ACTIONS(1853), - [aux_sym_string_literal_token1] = ACTIONS(1853), - [sym_char_literal] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1855), - [anon_sym_false] = ACTIONS(1855), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1855), - [sym_super] = ACTIONS(1855), - [sym_crate] = ACTIONS(1855), - [sym_metavariable] = ACTIONS(1853), - [sym_raw_string_literal] = ACTIONS(1853), - [sym_float_literal] = ACTIONS(1853), + [ts_builtin_sym_end] = ACTIONS(1904), + [sym_identifier] = ACTIONS(1906), + [anon_sym_SEMI] = ACTIONS(1904), + [anon_sym_macro_rules_BANG] = ACTIONS(1904), + [anon_sym_LPAREN] = ACTIONS(1904), + [anon_sym_LBRACK] = ACTIONS(1904), + [anon_sym_LBRACE] = ACTIONS(1904), + [anon_sym_RBRACE] = ACTIONS(1904), + [anon_sym_STAR] = ACTIONS(1904), + [anon_sym_u8] = ACTIONS(1906), + [anon_sym_i8] = ACTIONS(1906), + [anon_sym_u16] = ACTIONS(1906), + [anon_sym_i16] = ACTIONS(1906), + [anon_sym_u32] = ACTIONS(1906), + [anon_sym_i32] = ACTIONS(1906), + [anon_sym_u64] = ACTIONS(1906), + [anon_sym_i64] = ACTIONS(1906), + [anon_sym_u128] = ACTIONS(1906), + [anon_sym_i128] = ACTIONS(1906), + [anon_sym_isize] = ACTIONS(1906), + [anon_sym_usize] = ACTIONS(1906), + [anon_sym_f32] = ACTIONS(1906), + [anon_sym_f64] = ACTIONS(1906), + [anon_sym_bool] = ACTIONS(1906), + [anon_sym_str] = ACTIONS(1906), + [anon_sym_char] = ACTIONS(1906), + [anon_sym_DASH] = ACTIONS(1904), + [anon_sym_COLON_COLON] = ACTIONS(1904), + [anon_sym_BANG] = ACTIONS(1904), + [anon_sym_AMP] = ACTIONS(1904), + [anon_sym_POUND] = ACTIONS(1904), + [anon_sym_LT] = ACTIONS(1904), + [anon_sym_PIPE] = ACTIONS(1904), + [anon_sym_SQUOTE] = ACTIONS(1906), + [anon_sym_async] = ACTIONS(1906), + [anon_sym_break] = ACTIONS(1906), + [anon_sym_const] = ACTIONS(1906), + [anon_sym_continue] = ACTIONS(1906), + [anon_sym_default] = ACTIONS(1906), + [anon_sym_enum] = ACTIONS(1906), + [anon_sym_fn] = ACTIONS(1906), + [anon_sym_for] = ACTIONS(1906), + [anon_sym_if] = ACTIONS(1906), + [anon_sym_impl] = ACTIONS(1906), + [anon_sym_let] = ACTIONS(1906), + [anon_sym_loop] = ACTIONS(1906), + [anon_sym_match] = ACTIONS(1906), + [anon_sym_mod] = ACTIONS(1906), + [anon_sym_pub] = ACTIONS(1906), + [anon_sym_return] = ACTIONS(1906), + [anon_sym_static] = ACTIONS(1906), + [anon_sym_struct] = ACTIONS(1906), + [anon_sym_trait] = ACTIONS(1906), + [anon_sym_type] = ACTIONS(1906), + [anon_sym_union] = ACTIONS(1906), + [anon_sym_unsafe] = ACTIONS(1906), + [anon_sym_use] = ACTIONS(1906), + [anon_sym_while] = ACTIONS(1906), + [anon_sym_extern] = ACTIONS(1906), + [anon_sym_DOT_DOT] = ACTIONS(1904), + [anon_sym_yield] = ACTIONS(1906), + [anon_sym_move] = ACTIONS(1906), + [anon_sym_try] = ACTIONS(1906), + [sym_integer_literal] = ACTIONS(1904), + [aux_sym_string_literal_token1] = ACTIONS(1904), + [sym_char_literal] = ACTIONS(1904), + [anon_sym_true] = ACTIONS(1906), + [anon_sym_false] = ACTIONS(1906), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1906), + [sym_super] = ACTIONS(1906), + [sym_crate] = ACTIONS(1906), + [sym_metavariable] = ACTIONS(1904), + [sym_raw_string_literal] = ACTIONS(1904), + [sym_float_literal] = ACTIONS(1904), }, [533] = { [sym_line_comment] = STATE(533), [sym_block_comment] = STATE(533), - [ts_builtin_sym_end] = ACTIONS(1857), - [sym_identifier] = ACTIONS(1859), - [anon_sym_SEMI] = ACTIONS(1857), - [anon_sym_macro_rules_BANG] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1857), - [anon_sym_LBRACK] = ACTIONS(1857), - [anon_sym_LBRACE] = ACTIONS(1857), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_STAR] = ACTIONS(1857), - [anon_sym_u8] = ACTIONS(1859), - [anon_sym_i8] = ACTIONS(1859), - [anon_sym_u16] = ACTIONS(1859), - [anon_sym_i16] = ACTIONS(1859), - [anon_sym_u32] = ACTIONS(1859), - [anon_sym_i32] = ACTIONS(1859), - [anon_sym_u64] = ACTIONS(1859), - [anon_sym_i64] = ACTIONS(1859), - [anon_sym_u128] = ACTIONS(1859), - [anon_sym_i128] = ACTIONS(1859), - [anon_sym_isize] = ACTIONS(1859), - [anon_sym_usize] = ACTIONS(1859), - [anon_sym_f32] = ACTIONS(1859), - [anon_sym_f64] = ACTIONS(1859), - [anon_sym_bool] = ACTIONS(1859), - [anon_sym_str] = ACTIONS(1859), - [anon_sym_char] = ACTIONS(1859), - [anon_sym_DASH] = ACTIONS(1857), - [anon_sym_COLON_COLON] = ACTIONS(1857), - [anon_sym_BANG] = ACTIONS(1857), - [anon_sym_AMP] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(1857), - [anon_sym_LT] = ACTIONS(1857), - [anon_sym_PIPE] = ACTIONS(1857), - [anon_sym_SQUOTE] = ACTIONS(1859), - [anon_sym_async] = ACTIONS(1859), - [anon_sym_break] = ACTIONS(1859), - [anon_sym_const] = ACTIONS(1859), - [anon_sym_continue] = ACTIONS(1859), - [anon_sym_default] = ACTIONS(1859), - [anon_sym_enum] = ACTIONS(1859), - [anon_sym_fn] = ACTIONS(1859), - [anon_sym_for] = ACTIONS(1859), - [anon_sym_if] = ACTIONS(1859), - [anon_sym_impl] = ACTIONS(1859), - [anon_sym_let] = ACTIONS(1859), - [anon_sym_loop] = ACTIONS(1859), - [anon_sym_match] = ACTIONS(1859), - [anon_sym_mod] = ACTIONS(1859), - [anon_sym_pub] = ACTIONS(1859), - [anon_sym_return] = ACTIONS(1859), - [anon_sym_static] = ACTIONS(1859), - [anon_sym_struct] = ACTIONS(1859), - [anon_sym_trait] = ACTIONS(1859), - [anon_sym_type] = ACTIONS(1859), - [anon_sym_union] = ACTIONS(1859), - [anon_sym_unsafe] = ACTIONS(1859), - [anon_sym_use] = ACTIONS(1859), - [anon_sym_while] = ACTIONS(1859), - [anon_sym_extern] = ACTIONS(1859), - [anon_sym_DOT_DOT] = ACTIONS(1857), - [anon_sym_yield] = ACTIONS(1859), - [anon_sym_move] = ACTIONS(1859), - [anon_sym_try] = ACTIONS(1859), - [sym_integer_literal] = ACTIONS(1857), - [aux_sym_string_literal_token1] = ACTIONS(1857), - [sym_char_literal] = ACTIONS(1857), - [anon_sym_true] = ACTIONS(1859), - [anon_sym_false] = ACTIONS(1859), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1859), - [sym_super] = ACTIONS(1859), - [sym_crate] = ACTIONS(1859), - [sym_metavariable] = ACTIONS(1857), - [sym_raw_string_literal] = ACTIONS(1857), - [sym_float_literal] = ACTIONS(1857), + [ts_builtin_sym_end] = ACTIONS(1908), + [sym_identifier] = ACTIONS(1910), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_macro_rules_BANG] = ACTIONS(1908), + [anon_sym_LPAREN] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1908), + [anon_sym_LBRACE] = ACTIONS(1908), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_STAR] = ACTIONS(1908), + [anon_sym_u8] = ACTIONS(1910), + [anon_sym_i8] = ACTIONS(1910), + [anon_sym_u16] = ACTIONS(1910), + [anon_sym_i16] = ACTIONS(1910), + [anon_sym_u32] = ACTIONS(1910), + [anon_sym_i32] = ACTIONS(1910), + [anon_sym_u64] = ACTIONS(1910), + [anon_sym_i64] = ACTIONS(1910), + [anon_sym_u128] = ACTIONS(1910), + [anon_sym_i128] = ACTIONS(1910), + [anon_sym_isize] = ACTIONS(1910), + [anon_sym_usize] = ACTIONS(1910), + [anon_sym_f32] = ACTIONS(1910), + [anon_sym_f64] = ACTIONS(1910), + [anon_sym_bool] = ACTIONS(1910), + [anon_sym_str] = ACTIONS(1910), + [anon_sym_char] = ACTIONS(1910), + [anon_sym_DASH] = ACTIONS(1908), + [anon_sym_COLON_COLON] = ACTIONS(1908), + [anon_sym_BANG] = ACTIONS(1908), + [anon_sym_AMP] = ACTIONS(1908), + [anon_sym_POUND] = ACTIONS(1908), + [anon_sym_LT] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_SQUOTE] = ACTIONS(1910), + [anon_sym_async] = ACTIONS(1910), + [anon_sym_break] = ACTIONS(1910), + [anon_sym_const] = ACTIONS(1910), + [anon_sym_continue] = ACTIONS(1910), + [anon_sym_default] = ACTIONS(1910), + [anon_sym_enum] = ACTIONS(1910), + [anon_sym_fn] = ACTIONS(1910), + [anon_sym_for] = ACTIONS(1910), + [anon_sym_if] = ACTIONS(1910), + [anon_sym_impl] = ACTIONS(1910), + [anon_sym_let] = ACTIONS(1910), + [anon_sym_loop] = ACTIONS(1910), + [anon_sym_match] = ACTIONS(1910), + [anon_sym_mod] = ACTIONS(1910), + [anon_sym_pub] = ACTIONS(1910), + [anon_sym_return] = ACTIONS(1910), + [anon_sym_static] = ACTIONS(1910), + [anon_sym_struct] = ACTIONS(1910), + [anon_sym_trait] = ACTIONS(1910), + [anon_sym_type] = ACTIONS(1910), + [anon_sym_union] = ACTIONS(1910), + [anon_sym_unsafe] = ACTIONS(1910), + [anon_sym_use] = ACTIONS(1910), + [anon_sym_while] = ACTIONS(1910), + [anon_sym_extern] = ACTIONS(1910), + [anon_sym_DOT_DOT] = ACTIONS(1908), + [anon_sym_yield] = ACTIONS(1910), + [anon_sym_move] = ACTIONS(1910), + [anon_sym_try] = ACTIONS(1910), + [sym_integer_literal] = ACTIONS(1908), + [aux_sym_string_literal_token1] = ACTIONS(1908), + [sym_char_literal] = ACTIONS(1908), + [anon_sym_true] = ACTIONS(1910), + [anon_sym_false] = ACTIONS(1910), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1910), + [sym_super] = ACTIONS(1910), + [sym_crate] = ACTIONS(1910), + [sym_metavariable] = ACTIONS(1908), + [sym_raw_string_literal] = ACTIONS(1908), + [sym_float_literal] = ACTIONS(1908), }, [534] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [ts_builtin_sym_end] = ACTIONS(1861), - [sym_identifier] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1861), - [anon_sym_macro_rules_BANG] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_LBRACK] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_STAR] = ACTIONS(1861), - [anon_sym_u8] = ACTIONS(1863), - [anon_sym_i8] = ACTIONS(1863), - [anon_sym_u16] = ACTIONS(1863), - [anon_sym_i16] = ACTIONS(1863), - [anon_sym_u32] = ACTIONS(1863), - [anon_sym_i32] = ACTIONS(1863), - [anon_sym_u64] = ACTIONS(1863), - [anon_sym_i64] = ACTIONS(1863), - [anon_sym_u128] = ACTIONS(1863), - [anon_sym_i128] = ACTIONS(1863), - [anon_sym_isize] = ACTIONS(1863), - [anon_sym_usize] = ACTIONS(1863), - [anon_sym_f32] = ACTIONS(1863), - [anon_sym_f64] = ACTIONS(1863), - [anon_sym_bool] = ACTIONS(1863), - [anon_sym_str] = ACTIONS(1863), - [anon_sym_char] = ACTIONS(1863), - [anon_sym_DASH] = ACTIONS(1861), - [anon_sym_COLON_COLON] = ACTIONS(1861), - [anon_sym_BANG] = ACTIONS(1861), - [anon_sym_AMP] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(1861), - [anon_sym_LT] = ACTIONS(1861), - [anon_sym_PIPE] = ACTIONS(1861), - [anon_sym_SQUOTE] = ACTIONS(1863), - [anon_sym_async] = ACTIONS(1863), - [anon_sym_break] = ACTIONS(1863), - [anon_sym_const] = ACTIONS(1863), - [anon_sym_continue] = ACTIONS(1863), - [anon_sym_default] = ACTIONS(1863), - [anon_sym_enum] = ACTIONS(1863), - [anon_sym_fn] = ACTIONS(1863), - [anon_sym_for] = ACTIONS(1863), - [anon_sym_if] = ACTIONS(1863), - [anon_sym_impl] = ACTIONS(1863), - [anon_sym_let] = ACTIONS(1863), - [anon_sym_loop] = ACTIONS(1863), - [anon_sym_match] = ACTIONS(1863), - [anon_sym_mod] = ACTIONS(1863), - [anon_sym_pub] = ACTIONS(1863), - [anon_sym_return] = ACTIONS(1863), - [anon_sym_static] = ACTIONS(1863), - [anon_sym_struct] = ACTIONS(1863), - [anon_sym_trait] = ACTIONS(1863), - [anon_sym_type] = ACTIONS(1863), - [anon_sym_union] = ACTIONS(1863), - [anon_sym_unsafe] = ACTIONS(1863), - [anon_sym_use] = ACTIONS(1863), - [anon_sym_while] = ACTIONS(1863), - [anon_sym_extern] = ACTIONS(1863), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_yield] = ACTIONS(1863), - [anon_sym_move] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1863), - [sym_integer_literal] = ACTIONS(1861), - [aux_sym_string_literal_token1] = ACTIONS(1861), - [sym_char_literal] = ACTIONS(1861), - [anon_sym_true] = ACTIONS(1863), - [anon_sym_false] = ACTIONS(1863), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1863), - [sym_super] = ACTIONS(1863), - [sym_crate] = ACTIONS(1863), - [sym_metavariable] = ACTIONS(1861), - [sym_raw_string_literal] = ACTIONS(1861), - [sym_float_literal] = ACTIONS(1861), + [ts_builtin_sym_end] = ACTIONS(1912), + [sym_identifier] = ACTIONS(1914), + [anon_sym_SEMI] = ACTIONS(1912), + [anon_sym_macro_rules_BANG] = ACTIONS(1912), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_LBRACK] = ACTIONS(1912), + [anon_sym_LBRACE] = ACTIONS(1912), + [anon_sym_RBRACE] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1912), + [anon_sym_u8] = ACTIONS(1914), + [anon_sym_i8] = ACTIONS(1914), + [anon_sym_u16] = ACTIONS(1914), + [anon_sym_i16] = ACTIONS(1914), + [anon_sym_u32] = ACTIONS(1914), + [anon_sym_i32] = ACTIONS(1914), + [anon_sym_u64] = ACTIONS(1914), + [anon_sym_i64] = ACTIONS(1914), + [anon_sym_u128] = ACTIONS(1914), + [anon_sym_i128] = ACTIONS(1914), + [anon_sym_isize] = ACTIONS(1914), + [anon_sym_usize] = ACTIONS(1914), + [anon_sym_f32] = ACTIONS(1914), + [anon_sym_f64] = ACTIONS(1914), + [anon_sym_bool] = ACTIONS(1914), + [anon_sym_str] = ACTIONS(1914), + [anon_sym_char] = ACTIONS(1914), + [anon_sym_DASH] = ACTIONS(1912), + [anon_sym_COLON_COLON] = ACTIONS(1912), + [anon_sym_BANG] = ACTIONS(1912), + [anon_sym_AMP] = ACTIONS(1912), + [anon_sym_POUND] = ACTIONS(1912), + [anon_sym_LT] = ACTIONS(1912), + [anon_sym_PIPE] = ACTIONS(1912), + [anon_sym_SQUOTE] = ACTIONS(1914), + [anon_sym_async] = ACTIONS(1914), + [anon_sym_break] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1914), + [anon_sym_continue] = ACTIONS(1914), + [anon_sym_default] = ACTIONS(1914), + [anon_sym_enum] = ACTIONS(1914), + [anon_sym_fn] = ACTIONS(1914), + [anon_sym_for] = ACTIONS(1914), + [anon_sym_if] = ACTIONS(1914), + [anon_sym_impl] = ACTIONS(1914), + [anon_sym_let] = ACTIONS(1914), + [anon_sym_loop] = ACTIONS(1914), + [anon_sym_match] = ACTIONS(1914), + [anon_sym_mod] = ACTIONS(1914), + [anon_sym_pub] = ACTIONS(1914), + [anon_sym_return] = ACTIONS(1914), + [anon_sym_static] = ACTIONS(1914), + [anon_sym_struct] = ACTIONS(1914), + [anon_sym_trait] = ACTIONS(1914), + [anon_sym_type] = ACTIONS(1914), + [anon_sym_union] = ACTIONS(1914), + [anon_sym_unsafe] = ACTIONS(1914), + [anon_sym_use] = ACTIONS(1914), + [anon_sym_while] = ACTIONS(1914), + [anon_sym_extern] = ACTIONS(1914), + [anon_sym_DOT_DOT] = ACTIONS(1912), + [anon_sym_yield] = ACTIONS(1914), + [anon_sym_move] = ACTIONS(1914), + [anon_sym_try] = ACTIONS(1914), + [sym_integer_literal] = ACTIONS(1912), + [aux_sym_string_literal_token1] = ACTIONS(1912), + [sym_char_literal] = ACTIONS(1912), + [anon_sym_true] = ACTIONS(1914), + [anon_sym_false] = ACTIONS(1914), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1914), + [sym_super] = ACTIONS(1914), + [sym_crate] = ACTIONS(1914), + [sym_metavariable] = ACTIONS(1912), + [sym_raw_string_literal] = ACTIONS(1912), + [sym_float_literal] = ACTIONS(1912), }, [535] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [ts_builtin_sym_end] = ACTIONS(1865), - [sym_identifier] = ACTIONS(1867), - [anon_sym_SEMI] = ACTIONS(1865), - [anon_sym_macro_rules_BANG] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_LBRACK] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_STAR] = ACTIONS(1865), - [anon_sym_u8] = ACTIONS(1867), - [anon_sym_i8] = ACTIONS(1867), - [anon_sym_u16] = ACTIONS(1867), - [anon_sym_i16] = ACTIONS(1867), - [anon_sym_u32] = ACTIONS(1867), - [anon_sym_i32] = ACTIONS(1867), - [anon_sym_u64] = ACTIONS(1867), - [anon_sym_i64] = ACTIONS(1867), - [anon_sym_u128] = ACTIONS(1867), - [anon_sym_i128] = ACTIONS(1867), - [anon_sym_isize] = ACTIONS(1867), - [anon_sym_usize] = ACTIONS(1867), - [anon_sym_f32] = ACTIONS(1867), - [anon_sym_f64] = ACTIONS(1867), - [anon_sym_bool] = ACTIONS(1867), - [anon_sym_str] = ACTIONS(1867), - [anon_sym_char] = ACTIONS(1867), - [anon_sym_DASH] = ACTIONS(1865), - [anon_sym_COLON_COLON] = ACTIONS(1865), - [anon_sym_BANG] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(1865), - [anon_sym_POUND] = ACTIONS(1865), - [anon_sym_LT] = ACTIONS(1865), - [anon_sym_PIPE] = ACTIONS(1865), - [anon_sym_SQUOTE] = ACTIONS(1867), - [anon_sym_async] = ACTIONS(1867), - [anon_sym_break] = ACTIONS(1867), - [anon_sym_const] = ACTIONS(1867), - [anon_sym_continue] = ACTIONS(1867), - [anon_sym_default] = ACTIONS(1867), - [anon_sym_enum] = ACTIONS(1867), - [anon_sym_fn] = ACTIONS(1867), - [anon_sym_for] = ACTIONS(1867), - [anon_sym_if] = ACTIONS(1867), - [anon_sym_impl] = ACTIONS(1867), - [anon_sym_let] = ACTIONS(1867), - [anon_sym_loop] = ACTIONS(1867), - [anon_sym_match] = ACTIONS(1867), - [anon_sym_mod] = ACTIONS(1867), - [anon_sym_pub] = ACTIONS(1867), - [anon_sym_return] = ACTIONS(1867), - [anon_sym_static] = ACTIONS(1867), - [anon_sym_struct] = ACTIONS(1867), - [anon_sym_trait] = ACTIONS(1867), - [anon_sym_type] = ACTIONS(1867), - [anon_sym_union] = ACTIONS(1867), - [anon_sym_unsafe] = ACTIONS(1867), - [anon_sym_use] = ACTIONS(1867), - [anon_sym_while] = ACTIONS(1867), - [anon_sym_extern] = ACTIONS(1867), - [anon_sym_DOT_DOT] = ACTIONS(1865), - [anon_sym_yield] = ACTIONS(1867), - [anon_sym_move] = ACTIONS(1867), - [anon_sym_try] = ACTIONS(1867), - [sym_integer_literal] = ACTIONS(1865), - [aux_sym_string_literal_token1] = ACTIONS(1865), - [sym_char_literal] = ACTIONS(1865), - [anon_sym_true] = ACTIONS(1867), - [anon_sym_false] = ACTIONS(1867), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1867), - [sym_super] = ACTIONS(1867), - [sym_crate] = ACTIONS(1867), - [sym_metavariable] = ACTIONS(1865), - [sym_raw_string_literal] = ACTIONS(1865), - [sym_float_literal] = ACTIONS(1865), + [ts_builtin_sym_end] = ACTIONS(1916), + [sym_identifier] = ACTIONS(1918), + [anon_sym_SEMI] = ACTIONS(1916), + [anon_sym_macro_rules_BANG] = ACTIONS(1916), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1916), + [anon_sym_LBRACE] = ACTIONS(1916), + [anon_sym_RBRACE] = ACTIONS(1916), + [anon_sym_STAR] = ACTIONS(1916), + [anon_sym_u8] = ACTIONS(1918), + [anon_sym_i8] = ACTIONS(1918), + [anon_sym_u16] = ACTIONS(1918), + [anon_sym_i16] = ACTIONS(1918), + [anon_sym_u32] = ACTIONS(1918), + [anon_sym_i32] = ACTIONS(1918), + [anon_sym_u64] = ACTIONS(1918), + [anon_sym_i64] = ACTIONS(1918), + [anon_sym_u128] = ACTIONS(1918), + [anon_sym_i128] = ACTIONS(1918), + [anon_sym_isize] = ACTIONS(1918), + [anon_sym_usize] = ACTIONS(1918), + [anon_sym_f32] = ACTIONS(1918), + [anon_sym_f64] = ACTIONS(1918), + [anon_sym_bool] = ACTIONS(1918), + [anon_sym_str] = ACTIONS(1918), + [anon_sym_char] = ACTIONS(1918), + [anon_sym_DASH] = ACTIONS(1916), + [anon_sym_COLON_COLON] = ACTIONS(1916), + [anon_sym_BANG] = ACTIONS(1916), + [anon_sym_AMP] = ACTIONS(1916), + [anon_sym_POUND] = ACTIONS(1916), + [anon_sym_LT] = ACTIONS(1916), + [anon_sym_PIPE] = ACTIONS(1916), + [anon_sym_SQUOTE] = ACTIONS(1918), + [anon_sym_async] = ACTIONS(1918), + [anon_sym_break] = ACTIONS(1918), + [anon_sym_const] = ACTIONS(1918), + [anon_sym_continue] = ACTIONS(1918), + [anon_sym_default] = ACTIONS(1918), + [anon_sym_enum] = ACTIONS(1918), + [anon_sym_fn] = ACTIONS(1918), + [anon_sym_for] = ACTIONS(1918), + [anon_sym_if] = ACTIONS(1918), + [anon_sym_impl] = ACTIONS(1918), + [anon_sym_let] = ACTIONS(1918), + [anon_sym_loop] = ACTIONS(1918), + [anon_sym_match] = ACTIONS(1918), + [anon_sym_mod] = ACTIONS(1918), + [anon_sym_pub] = ACTIONS(1918), + [anon_sym_return] = ACTIONS(1918), + [anon_sym_static] = ACTIONS(1918), + [anon_sym_struct] = ACTIONS(1918), + [anon_sym_trait] = ACTIONS(1918), + [anon_sym_type] = ACTIONS(1918), + [anon_sym_union] = ACTIONS(1918), + [anon_sym_unsafe] = ACTIONS(1918), + [anon_sym_use] = ACTIONS(1918), + [anon_sym_while] = ACTIONS(1918), + [anon_sym_extern] = ACTIONS(1918), + [anon_sym_DOT_DOT] = ACTIONS(1916), + [anon_sym_yield] = ACTIONS(1918), + [anon_sym_move] = ACTIONS(1918), + [anon_sym_try] = ACTIONS(1918), + [sym_integer_literal] = ACTIONS(1916), + [aux_sym_string_literal_token1] = ACTIONS(1916), + [sym_char_literal] = ACTIONS(1916), + [anon_sym_true] = ACTIONS(1918), + [anon_sym_false] = ACTIONS(1918), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1918), + [sym_super] = ACTIONS(1918), + [sym_crate] = ACTIONS(1918), + [sym_metavariable] = ACTIONS(1916), + [sym_raw_string_literal] = ACTIONS(1916), + [sym_float_literal] = ACTIONS(1916), }, [536] = { [sym_line_comment] = STATE(536), [sym_block_comment] = STATE(536), - [ts_builtin_sym_end] = ACTIONS(1869), - [sym_identifier] = ACTIONS(1871), - [anon_sym_SEMI] = ACTIONS(1869), - [anon_sym_macro_rules_BANG] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1869), - [anon_sym_LBRACK] = ACTIONS(1869), - [anon_sym_LBRACE] = ACTIONS(1869), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_STAR] = ACTIONS(1869), - [anon_sym_u8] = ACTIONS(1871), - [anon_sym_i8] = ACTIONS(1871), - [anon_sym_u16] = ACTIONS(1871), - [anon_sym_i16] = ACTIONS(1871), - [anon_sym_u32] = ACTIONS(1871), - [anon_sym_i32] = ACTIONS(1871), - [anon_sym_u64] = ACTIONS(1871), - [anon_sym_i64] = ACTIONS(1871), - [anon_sym_u128] = ACTIONS(1871), - [anon_sym_i128] = ACTIONS(1871), - [anon_sym_isize] = ACTIONS(1871), - [anon_sym_usize] = ACTIONS(1871), - [anon_sym_f32] = ACTIONS(1871), - [anon_sym_f64] = ACTIONS(1871), - [anon_sym_bool] = ACTIONS(1871), - [anon_sym_str] = ACTIONS(1871), - [anon_sym_char] = ACTIONS(1871), - [anon_sym_DASH] = ACTIONS(1869), - [anon_sym_COLON_COLON] = ACTIONS(1869), - [anon_sym_BANG] = ACTIONS(1869), - [anon_sym_AMP] = ACTIONS(1869), - [anon_sym_POUND] = ACTIONS(1869), - [anon_sym_LT] = ACTIONS(1869), - [anon_sym_PIPE] = ACTIONS(1869), - [anon_sym_SQUOTE] = ACTIONS(1871), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_break] = ACTIONS(1871), - [anon_sym_const] = ACTIONS(1871), - [anon_sym_continue] = ACTIONS(1871), - [anon_sym_default] = ACTIONS(1871), - [anon_sym_enum] = ACTIONS(1871), - [anon_sym_fn] = ACTIONS(1871), - [anon_sym_for] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(1871), - [anon_sym_impl] = ACTIONS(1871), - [anon_sym_let] = ACTIONS(1871), - [anon_sym_loop] = ACTIONS(1871), - [anon_sym_match] = ACTIONS(1871), - [anon_sym_mod] = ACTIONS(1871), - [anon_sym_pub] = ACTIONS(1871), - [anon_sym_return] = ACTIONS(1871), - [anon_sym_static] = ACTIONS(1871), - [anon_sym_struct] = ACTIONS(1871), - [anon_sym_trait] = ACTIONS(1871), - [anon_sym_type] = ACTIONS(1871), - [anon_sym_union] = ACTIONS(1871), - [anon_sym_unsafe] = ACTIONS(1871), - [anon_sym_use] = ACTIONS(1871), - [anon_sym_while] = ACTIONS(1871), - [anon_sym_extern] = ACTIONS(1871), - [anon_sym_DOT_DOT] = ACTIONS(1869), - [anon_sym_yield] = ACTIONS(1871), - [anon_sym_move] = ACTIONS(1871), - [anon_sym_try] = ACTIONS(1871), - [sym_integer_literal] = ACTIONS(1869), - [aux_sym_string_literal_token1] = ACTIONS(1869), - [sym_char_literal] = ACTIONS(1869), - [anon_sym_true] = ACTIONS(1871), - [anon_sym_false] = ACTIONS(1871), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1871), - [sym_super] = ACTIONS(1871), - [sym_crate] = ACTIONS(1871), - [sym_metavariable] = ACTIONS(1869), - [sym_raw_string_literal] = ACTIONS(1869), - [sym_float_literal] = ACTIONS(1869), + [ts_builtin_sym_end] = ACTIONS(1920), + [sym_identifier] = ACTIONS(1922), + [anon_sym_SEMI] = ACTIONS(1920), + [anon_sym_macro_rules_BANG] = ACTIONS(1920), + [anon_sym_LPAREN] = ACTIONS(1920), + [anon_sym_LBRACK] = ACTIONS(1920), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1920), + [anon_sym_STAR] = ACTIONS(1920), + [anon_sym_u8] = ACTIONS(1922), + [anon_sym_i8] = ACTIONS(1922), + [anon_sym_u16] = ACTIONS(1922), + [anon_sym_i16] = ACTIONS(1922), + [anon_sym_u32] = ACTIONS(1922), + [anon_sym_i32] = ACTIONS(1922), + [anon_sym_u64] = ACTIONS(1922), + [anon_sym_i64] = ACTIONS(1922), + [anon_sym_u128] = ACTIONS(1922), + [anon_sym_i128] = ACTIONS(1922), + [anon_sym_isize] = ACTIONS(1922), + [anon_sym_usize] = ACTIONS(1922), + [anon_sym_f32] = ACTIONS(1922), + [anon_sym_f64] = ACTIONS(1922), + [anon_sym_bool] = ACTIONS(1922), + [anon_sym_str] = ACTIONS(1922), + [anon_sym_char] = ACTIONS(1922), + [anon_sym_DASH] = ACTIONS(1920), + [anon_sym_COLON_COLON] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1920), + [anon_sym_AMP] = ACTIONS(1920), + [anon_sym_POUND] = ACTIONS(1920), + [anon_sym_LT] = ACTIONS(1920), + [anon_sym_PIPE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(1922), + [anon_sym_break] = ACTIONS(1922), + [anon_sym_const] = ACTIONS(1922), + [anon_sym_continue] = ACTIONS(1922), + [anon_sym_default] = ACTIONS(1922), + [anon_sym_enum] = ACTIONS(1922), + [anon_sym_fn] = ACTIONS(1922), + [anon_sym_for] = ACTIONS(1922), + [anon_sym_if] = ACTIONS(1922), + [anon_sym_impl] = ACTIONS(1922), + [anon_sym_let] = ACTIONS(1922), + [anon_sym_loop] = ACTIONS(1922), + [anon_sym_match] = ACTIONS(1922), + [anon_sym_mod] = ACTIONS(1922), + [anon_sym_pub] = ACTIONS(1922), + [anon_sym_return] = ACTIONS(1922), + [anon_sym_static] = ACTIONS(1922), + [anon_sym_struct] = ACTIONS(1922), + [anon_sym_trait] = ACTIONS(1922), + [anon_sym_type] = ACTIONS(1922), + [anon_sym_union] = ACTIONS(1922), + [anon_sym_unsafe] = ACTIONS(1922), + [anon_sym_use] = ACTIONS(1922), + [anon_sym_while] = ACTIONS(1922), + [anon_sym_extern] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1920), + [anon_sym_yield] = ACTIONS(1922), + [anon_sym_move] = ACTIONS(1922), + [anon_sym_try] = ACTIONS(1922), + [sym_integer_literal] = ACTIONS(1920), + [aux_sym_string_literal_token1] = ACTIONS(1920), + [sym_char_literal] = ACTIONS(1920), + [anon_sym_true] = ACTIONS(1922), + [anon_sym_false] = ACTIONS(1922), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1922), + [sym_super] = ACTIONS(1922), + [sym_crate] = ACTIONS(1922), + [sym_metavariable] = ACTIONS(1920), + [sym_raw_string_literal] = ACTIONS(1920), + [sym_float_literal] = ACTIONS(1920), }, [537] = { [sym_line_comment] = STATE(537), [sym_block_comment] = STATE(537), - [ts_builtin_sym_end] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_macro_rules_BANG] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_STAR] = ACTIONS(1873), - [anon_sym_u8] = ACTIONS(1875), - [anon_sym_i8] = ACTIONS(1875), - [anon_sym_u16] = ACTIONS(1875), - [anon_sym_i16] = ACTIONS(1875), - [anon_sym_u32] = ACTIONS(1875), - [anon_sym_i32] = ACTIONS(1875), - [anon_sym_u64] = ACTIONS(1875), - [anon_sym_i64] = ACTIONS(1875), - [anon_sym_u128] = ACTIONS(1875), - [anon_sym_i128] = ACTIONS(1875), - [anon_sym_isize] = ACTIONS(1875), - [anon_sym_usize] = ACTIONS(1875), - [anon_sym_f32] = ACTIONS(1875), - [anon_sym_f64] = ACTIONS(1875), - [anon_sym_bool] = ACTIONS(1875), - [anon_sym_str] = ACTIONS(1875), - [anon_sym_char] = ACTIONS(1875), - [anon_sym_DASH] = ACTIONS(1873), - [anon_sym_COLON_COLON] = ACTIONS(1873), - [anon_sym_BANG] = ACTIONS(1873), - [anon_sym_AMP] = ACTIONS(1873), - [anon_sym_POUND] = ACTIONS(1873), - [anon_sym_LT] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_SQUOTE] = ACTIONS(1875), - [anon_sym_async] = ACTIONS(1875), - [anon_sym_break] = ACTIONS(1875), - [anon_sym_const] = ACTIONS(1875), - [anon_sym_continue] = ACTIONS(1875), - [anon_sym_default] = ACTIONS(1875), - [anon_sym_enum] = ACTIONS(1875), - [anon_sym_fn] = ACTIONS(1875), - [anon_sym_for] = ACTIONS(1875), - [anon_sym_if] = ACTIONS(1875), - [anon_sym_impl] = ACTIONS(1875), - [anon_sym_let] = ACTIONS(1875), - [anon_sym_loop] = ACTIONS(1875), - [anon_sym_match] = ACTIONS(1875), - [anon_sym_mod] = ACTIONS(1875), - [anon_sym_pub] = ACTIONS(1875), - [anon_sym_return] = ACTIONS(1875), - [anon_sym_static] = ACTIONS(1875), - [anon_sym_struct] = ACTIONS(1875), - [anon_sym_trait] = ACTIONS(1875), - [anon_sym_type] = ACTIONS(1875), - [anon_sym_union] = ACTIONS(1875), - [anon_sym_unsafe] = ACTIONS(1875), - [anon_sym_use] = ACTIONS(1875), - [anon_sym_while] = ACTIONS(1875), - [anon_sym_extern] = ACTIONS(1875), - [anon_sym_DOT_DOT] = ACTIONS(1873), - [anon_sym_yield] = ACTIONS(1875), - [anon_sym_move] = ACTIONS(1875), - [anon_sym_try] = ACTIONS(1875), - [sym_integer_literal] = ACTIONS(1873), - [aux_sym_string_literal_token1] = ACTIONS(1873), - [sym_char_literal] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1875), - [anon_sym_false] = ACTIONS(1875), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1875), - [sym_super] = ACTIONS(1875), - [sym_crate] = ACTIONS(1875), - [sym_metavariable] = ACTIONS(1873), - [sym_raw_string_literal] = ACTIONS(1873), - [sym_float_literal] = ACTIONS(1873), + [ts_builtin_sym_end] = ACTIONS(1924), + [sym_identifier] = ACTIONS(1926), + [anon_sym_SEMI] = ACTIONS(1924), + [anon_sym_macro_rules_BANG] = ACTIONS(1924), + [anon_sym_LPAREN] = ACTIONS(1924), + [anon_sym_LBRACK] = ACTIONS(1924), + [anon_sym_LBRACE] = ACTIONS(1924), + [anon_sym_RBRACE] = ACTIONS(1924), + [anon_sym_STAR] = ACTIONS(1924), + [anon_sym_u8] = ACTIONS(1926), + [anon_sym_i8] = ACTIONS(1926), + [anon_sym_u16] = ACTIONS(1926), + [anon_sym_i16] = ACTIONS(1926), + [anon_sym_u32] = ACTIONS(1926), + [anon_sym_i32] = ACTIONS(1926), + [anon_sym_u64] = ACTIONS(1926), + [anon_sym_i64] = ACTIONS(1926), + [anon_sym_u128] = ACTIONS(1926), + [anon_sym_i128] = ACTIONS(1926), + [anon_sym_isize] = ACTIONS(1926), + [anon_sym_usize] = ACTIONS(1926), + [anon_sym_f32] = ACTIONS(1926), + [anon_sym_f64] = ACTIONS(1926), + [anon_sym_bool] = ACTIONS(1926), + [anon_sym_str] = ACTIONS(1926), + [anon_sym_char] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1924), + [anon_sym_COLON_COLON] = ACTIONS(1924), + [anon_sym_BANG] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1924), + [anon_sym_POUND] = ACTIONS(1924), + [anon_sym_LT] = ACTIONS(1924), + [anon_sym_PIPE] = ACTIONS(1924), + [anon_sym_SQUOTE] = ACTIONS(1926), + [anon_sym_async] = ACTIONS(1926), + [anon_sym_break] = ACTIONS(1926), + [anon_sym_const] = ACTIONS(1926), + [anon_sym_continue] = ACTIONS(1926), + [anon_sym_default] = ACTIONS(1926), + [anon_sym_enum] = ACTIONS(1926), + [anon_sym_fn] = ACTIONS(1926), + [anon_sym_for] = ACTIONS(1926), + [anon_sym_if] = ACTIONS(1926), + [anon_sym_impl] = ACTIONS(1926), + [anon_sym_let] = ACTIONS(1926), + [anon_sym_loop] = ACTIONS(1926), + [anon_sym_match] = ACTIONS(1926), + [anon_sym_mod] = ACTIONS(1926), + [anon_sym_pub] = ACTIONS(1926), + [anon_sym_return] = ACTIONS(1926), + [anon_sym_static] = ACTIONS(1926), + [anon_sym_struct] = ACTIONS(1926), + [anon_sym_trait] = ACTIONS(1926), + [anon_sym_type] = ACTIONS(1926), + [anon_sym_union] = ACTIONS(1926), + [anon_sym_unsafe] = ACTIONS(1926), + [anon_sym_use] = ACTIONS(1926), + [anon_sym_while] = ACTIONS(1926), + [anon_sym_extern] = ACTIONS(1926), + [anon_sym_DOT_DOT] = ACTIONS(1924), + [anon_sym_yield] = ACTIONS(1926), + [anon_sym_move] = ACTIONS(1926), + [anon_sym_try] = ACTIONS(1926), + [sym_integer_literal] = ACTIONS(1924), + [aux_sym_string_literal_token1] = ACTIONS(1924), + [sym_char_literal] = ACTIONS(1924), + [anon_sym_true] = ACTIONS(1926), + [anon_sym_false] = ACTIONS(1926), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1926), + [sym_super] = ACTIONS(1926), + [sym_crate] = ACTIONS(1926), + [sym_metavariable] = ACTIONS(1924), + [sym_raw_string_literal] = ACTIONS(1924), + [sym_float_literal] = ACTIONS(1924), }, [538] = { [sym_line_comment] = STATE(538), [sym_block_comment] = STATE(538), - [ts_builtin_sym_end] = ACTIONS(1877), - [sym_identifier] = ACTIONS(1879), - [anon_sym_SEMI] = ACTIONS(1877), - [anon_sym_macro_rules_BANG] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(1877), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_u8] = ACTIONS(1879), - [anon_sym_i8] = ACTIONS(1879), - [anon_sym_u16] = ACTIONS(1879), - [anon_sym_i16] = ACTIONS(1879), - [anon_sym_u32] = ACTIONS(1879), - [anon_sym_i32] = ACTIONS(1879), - [anon_sym_u64] = ACTIONS(1879), - [anon_sym_i64] = ACTIONS(1879), - [anon_sym_u128] = ACTIONS(1879), - [anon_sym_i128] = ACTIONS(1879), - [anon_sym_isize] = ACTIONS(1879), - [anon_sym_usize] = ACTIONS(1879), - [anon_sym_f32] = ACTIONS(1879), - [anon_sym_f64] = ACTIONS(1879), - [anon_sym_bool] = ACTIONS(1879), - [anon_sym_str] = ACTIONS(1879), - [anon_sym_char] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1877), - [anon_sym_COLON_COLON] = ACTIONS(1877), - [anon_sym_BANG] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1877), - [anon_sym_POUND] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1877), - [anon_sym_PIPE] = ACTIONS(1877), - [anon_sym_SQUOTE] = ACTIONS(1879), - [anon_sym_async] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_default] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [anon_sym_fn] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_impl] = ACTIONS(1879), - [anon_sym_let] = ACTIONS(1879), - [anon_sym_loop] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_mod] = ACTIONS(1879), - [anon_sym_pub] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_static] = ACTIONS(1879), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_trait] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_union] = ACTIONS(1879), - [anon_sym_unsafe] = ACTIONS(1879), - [anon_sym_use] = ACTIONS(1879), - [anon_sym_while] = ACTIONS(1879), - [anon_sym_extern] = ACTIONS(1879), - [anon_sym_DOT_DOT] = ACTIONS(1877), - [anon_sym_yield] = ACTIONS(1879), - [anon_sym_move] = ACTIONS(1879), - [anon_sym_try] = ACTIONS(1879), - [sym_integer_literal] = ACTIONS(1877), - [aux_sym_string_literal_token1] = ACTIONS(1877), - [sym_char_literal] = ACTIONS(1877), - [anon_sym_true] = ACTIONS(1879), - [anon_sym_false] = ACTIONS(1879), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1879), - [sym_super] = ACTIONS(1879), - [sym_crate] = ACTIONS(1879), - [sym_metavariable] = ACTIONS(1877), - [sym_raw_string_literal] = ACTIONS(1877), - [sym_float_literal] = ACTIONS(1877), + [ts_builtin_sym_end] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_macro_rules_BANG] = ACTIONS(1928), + [anon_sym_LPAREN] = ACTIONS(1928), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_LBRACE] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_STAR] = ACTIONS(1928), + [anon_sym_u8] = ACTIONS(1930), + [anon_sym_i8] = ACTIONS(1930), + [anon_sym_u16] = ACTIONS(1930), + [anon_sym_i16] = ACTIONS(1930), + [anon_sym_u32] = ACTIONS(1930), + [anon_sym_i32] = ACTIONS(1930), + [anon_sym_u64] = ACTIONS(1930), + [anon_sym_i64] = ACTIONS(1930), + [anon_sym_u128] = ACTIONS(1930), + [anon_sym_i128] = ACTIONS(1930), + [anon_sym_isize] = ACTIONS(1930), + [anon_sym_usize] = ACTIONS(1930), + [anon_sym_f32] = ACTIONS(1930), + [anon_sym_f64] = ACTIONS(1930), + [anon_sym_bool] = ACTIONS(1930), + [anon_sym_str] = ACTIONS(1930), + [anon_sym_char] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1928), + [anon_sym_COLON_COLON] = ACTIONS(1928), + [anon_sym_BANG] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1928), + [anon_sym_POUND] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1928), + [anon_sym_SQUOTE] = ACTIONS(1930), + [anon_sym_async] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + [anon_sym_fn] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_impl] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1930), + [anon_sym_loop] = ACTIONS(1930), + [anon_sym_match] = ACTIONS(1930), + [anon_sym_mod] = ACTIONS(1930), + [anon_sym_pub] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_static] = ACTIONS(1930), + [anon_sym_struct] = ACTIONS(1930), + [anon_sym_trait] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_union] = ACTIONS(1930), + [anon_sym_unsafe] = ACTIONS(1930), + [anon_sym_use] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_extern] = ACTIONS(1930), + [anon_sym_DOT_DOT] = ACTIONS(1928), + [anon_sym_yield] = ACTIONS(1930), + [anon_sym_move] = ACTIONS(1930), + [anon_sym_try] = ACTIONS(1930), + [sym_integer_literal] = ACTIONS(1928), + [aux_sym_string_literal_token1] = ACTIONS(1928), + [sym_char_literal] = ACTIONS(1928), + [anon_sym_true] = ACTIONS(1930), + [anon_sym_false] = ACTIONS(1930), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1930), + [sym_super] = ACTIONS(1930), + [sym_crate] = ACTIONS(1930), + [sym_metavariable] = ACTIONS(1928), + [sym_raw_string_literal] = ACTIONS(1928), + [sym_float_literal] = ACTIONS(1928), }, [539] = { [sym_line_comment] = STATE(539), [sym_block_comment] = STATE(539), - [ts_builtin_sym_end] = ACTIONS(1881), - [sym_identifier] = ACTIONS(1883), - [anon_sym_SEMI] = ACTIONS(1881), - [anon_sym_macro_rules_BANG] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1881), - [anon_sym_LBRACK] = ACTIONS(1881), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_RBRACE] = ACTIONS(1881), - [anon_sym_STAR] = ACTIONS(1881), - [anon_sym_u8] = ACTIONS(1883), - [anon_sym_i8] = ACTIONS(1883), - [anon_sym_u16] = ACTIONS(1883), - [anon_sym_i16] = ACTIONS(1883), - [anon_sym_u32] = ACTIONS(1883), - [anon_sym_i32] = ACTIONS(1883), - [anon_sym_u64] = ACTIONS(1883), - [anon_sym_i64] = ACTIONS(1883), - [anon_sym_u128] = ACTIONS(1883), - [anon_sym_i128] = ACTIONS(1883), - [anon_sym_isize] = ACTIONS(1883), - [anon_sym_usize] = ACTIONS(1883), - [anon_sym_f32] = ACTIONS(1883), - [anon_sym_f64] = ACTIONS(1883), - [anon_sym_bool] = ACTIONS(1883), - [anon_sym_str] = ACTIONS(1883), - [anon_sym_char] = ACTIONS(1883), - [anon_sym_DASH] = ACTIONS(1881), - [anon_sym_COLON_COLON] = ACTIONS(1881), - [anon_sym_BANG] = ACTIONS(1881), - [anon_sym_AMP] = ACTIONS(1881), - [anon_sym_POUND] = ACTIONS(1881), - [anon_sym_LT] = ACTIONS(1881), - [anon_sym_PIPE] = ACTIONS(1881), - [anon_sym_SQUOTE] = ACTIONS(1883), - [anon_sym_async] = ACTIONS(1883), - [anon_sym_break] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(1883), - [anon_sym_continue] = ACTIONS(1883), - [anon_sym_default] = ACTIONS(1883), - [anon_sym_enum] = ACTIONS(1883), - [anon_sym_fn] = ACTIONS(1883), - [anon_sym_for] = ACTIONS(1883), - [anon_sym_if] = ACTIONS(1883), - [anon_sym_impl] = ACTIONS(1883), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_loop] = ACTIONS(1883), - [anon_sym_match] = ACTIONS(1883), - [anon_sym_mod] = ACTIONS(1883), - [anon_sym_pub] = ACTIONS(1883), - [anon_sym_return] = ACTIONS(1883), - [anon_sym_static] = ACTIONS(1883), - [anon_sym_struct] = ACTIONS(1883), - [anon_sym_trait] = ACTIONS(1883), - [anon_sym_type] = ACTIONS(1883), - [anon_sym_union] = ACTIONS(1883), - [anon_sym_unsafe] = ACTIONS(1883), - [anon_sym_use] = ACTIONS(1883), - [anon_sym_while] = ACTIONS(1883), - [anon_sym_extern] = ACTIONS(1883), - [anon_sym_DOT_DOT] = ACTIONS(1881), - [anon_sym_yield] = ACTIONS(1883), - [anon_sym_move] = ACTIONS(1883), - [anon_sym_try] = ACTIONS(1883), - [sym_integer_literal] = ACTIONS(1881), - [aux_sym_string_literal_token1] = ACTIONS(1881), - [sym_char_literal] = ACTIONS(1881), - [anon_sym_true] = ACTIONS(1883), - [anon_sym_false] = ACTIONS(1883), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1883), - [sym_super] = ACTIONS(1883), - [sym_crate] = ACTIONS(1883), - [sym_metavariable] = ACTIONS(1881), - [sym_raw_string_literal] = ACTIONS(1881), - [sym_float_literal] = ACTIONS(1881), + [ts_builtin_sym_end] = ACTIONS(1932), + [sym_identifier] = ACTIONS(1934), + [anon_sym_SEMI] = ACTIONS(1932), + [anon_sym_macro_rules_BANG] = ACTIONS(1932), + [anon_sym_LPAREN] = ACTIONS(1932), + [anon_sym_LBRACK] = ACTIONS(1932), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_RBRACE] = ACTIONS(1932), + [anon_sym_STAR] = ACTIONS(1932), + [anon_sym_u8] = ACTIONS(1934), + [anon_sym_i8] = ACTIONS(1934), + [anon_sym_u16] = ACTIONS(1934), + [anon_sym_i16] = ACTIONS(1934), + [anon_sym_u32] = ACTIONS(1934), + [anon_sym_i32] = ACTIONS(1934), + [anon_sym_u64] = ACTIONS(1934), + [anon_sym_i64] = ACTIONS(1934), + [anon_sym_u128] = ACTIONS(1934), + [anon_sym_i128] = ACTIONS(1934), + [anon_sym_isize] = ACTIONS(1934), + [anon_sym_usize] = ACTIONS(1934), + [anon_sym_f32] = ACTIONS(1934), + [anon_sym_f64] = ACTIONS(1934), + [anon_sym_bool] = ACTIONS(1934), + [anon_sym_str] = ACTIONS(1934), + [anon_sym_char] = ACTIONS(1934), + [anon_sym_DASH] = ACTIONS(1932), + [anon_sym_COLON_COLON] = ACTIONS(1932), + [anon_sym_BANG] = ACTIONS(1932), + [anon_sym_AMP] = ACTIONS(1932), + [anon_sym_POUND] = ACTIONS(1932), + [anon_sym_LT] = ACTIONS(1932), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_SQUOTE] = ACTIONS(1934), + [anon_sym_async] = ACTIONS(1934), + [anon_sym_break] = ACTIONS(1934), + [anon_sym_const] = ACTIONS(1934), + [anon_sym_continue] = ACTIONS(1934), + [anon_sym_default] = ACTIONS(1934), + [anon_sym_enum] = ACTIONS(1934), + [anon_sym_fn] = ACTIONS(1934), + [anon_sym_for] = ACTIONS(1934), + [anon_sym_if] = ACTIONS(1934), + [anon_sym_impl] = ACTIONS(1934), + [anon_sym_let] = ACTIONS(1934), + [anon_sym_loop] = ACTIONS(1934), + [anon_sym_match] = ACTIONS(1934), + [anon_sym_mod] = ACTIONS(1934), + [anon_sym_pub] = ACTIONS(1934), + [anon_sym_return] = ACTIONS(1934), + [anon_sym_static] = ACTIONS(1934), + [anon_sym_struct] = ACTIONS(1934), + [anon_sym_trait] = ACTIONS(1934), + [anon_sym_type] = ACTIONS(1934), + [anon_sym_union] = ACTIONS(1934), + [anon_sym_unsafe] = ACTIONS(1934), + [anon_sym_use] = ACTIONS(1934), + [anon_sym_while] = ACTIONS(1934), + [anon_sym_extern] = ACTIONS(1934), + [anon_sym_DOT_DOT] = ACTIONS(1932), + [anon_sym_yield] = ACTIONS(1934), + [anon_sym_move] = ACTIONS(1934), + [anon_sym_try] = ACTIONS(1934), + [sym_integer_literal] = ACTIONS(1932), + [aux_sym_string_literal_token1] = ACTIONS(1932), + [sym_char_literal] = ACTIONS(1932), + [anon_sym_true] = ACTIONS(1934), + [anon_sym_false] = ACTIONS(1934), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1934), + [sym_super] = ACTIONS(1934), + [sym_crate] = ACTIONS(1934), + [sym_metavariable] = ACTIONS(1932), + [sym_raw_string_literal] = ACTIONS(1932), + [sym_float_literal] = ACTIONS(1932), }, [540] = { [sym_line_comment] = STATE(540), [sym_block_comment] = STATE(540), - [ts_builtin_sym_end] = ACTIONS(1885), - [sym_identifier] = ACTIONS(1887), - [anon_sym_SEMI] = ACTIONS(1885), - [anon_sym_macro_rules_BANG] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1885), - [anon_sym_LBRACK] = ACTIONS(1885), - [anon_sym_LBRACE] = ACTIONS(1885), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_STAR] = ACTIONS(1885), - [anon_sym_u8] = ACTIONS(1887), - [anon_sym_i8] = ACTIONS(1887), - [anon_sym_u16] = ACTIONS(1887), - [anon_sym_i16] = ACTIONS(1887), - [anon_sym_u32] = ACTIONS(1887), - [anon_sym_i32] = ACTIONS(1887), - [anon_sym_u64] = ACTIONS(1887), - [anon_sym_i64] = ACTIONS(1887), - [anon_sym_u128] = ACTIONS(1887), - [anon_sym_i128] = ACTIONS(1887), - [anon_sym_isize] = ACTIONS(1887), - [anon_sym_usize] = ACTIONS(1887), - [anon_sym_f32] = ACTIONS(1887), - [anon_sym_f64] = ACTIONS(1887), - [anon_sym_bool] = ACTIONS(1887), - [anon_sym_str] = ACTIONS(1887), - [anon_sym_char] = ACTIONS(1887), - [anon_sym_DASH] = ACTIONS(1885), - [anon_sym_COLON_COLON] = ACTIONS(1885), - [anon_sym_BANG] = ACTIONS(1885), - [anon_sym_AMP] = ACTIONS(1885), - [anon_sym_POUND] = ACTIONS(1885), - [anon_sym_LT] = ACTIONS(1885), - [anon_sym_PIPE] = ACTIONS(1885), - [anon_sym_SQUOTE] = ACTIONS(1887), - [anon_sym_async] = ACTIONS(1887), - [anon_sym_break] = ACTIONS(1887), - [anon_sym_const] = ACTIONS(1887), - [anon_sym_continue] = ACTIONS(1887), - [anon_sym_default] = ACTIONS(1887), - [anon_sym_enum] = ACTIONS(1887), - [anon_sym_fn] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(1887), - [anon_sym_if] = ACTIONS(1887), - [anon_sym_impl] = ACTIONS(1887), - [anon_sym_let] = ACTIONS(1887), - [anon_sym_loop] = ACTIONS(1887), - [anon_sym_match] = ACTIONS(1887), - [anon_sym_mod] = ACTIONS(1887), - [anon_sym_pub] = ACTIONS(1887), - [anon_sym_return] = ACTIONS(1887), - [anon_sym_static] = ACTIONS(1887), - [anon_sym_struct] = ACTIONS(1887), - [anon_sym_trait] = ACTIONS(1887), - [anon_sym_type] = ACTIONS(1887), - [anon_sym_union] = ACTIONS(1887), - [anon_sym_unsafe] = ACTIONS(1887), - [anon_sym_use] = ACTIONS(1887), - [anon_sym_while] = ACTIONS(1887), - [anon_sym_extern] = ACTIONS(1887), - [anon_sym_DOT_DOT] = ACTIONS(1885), - [anon_sym_yield] = ACTIONS(1887), - [anon_sym_move] = ACTIONS(1887), - [anon_sym_try] = ACTIONS(1887), - [sym_integer_literal] = ACTIONS(1885), - [aux_sym_string_literal_token1] = ACTIONS(1885), - [sym_char_literal] = ACTIONS(1885), - [anon_sym_true] = ACTIONS(1887), - [anon_sym_false] = ACTIONS(1887), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1887), - [sym_super] = ACTIONS(1887), - [sym_crate] = ACTIONS(1887), - [sym_metavariable] = ACTIONS(1885), - [sym_raw_string_literal] = ACTIONS(1885), - [sym_float_literal] = ACTIONS(1885), + [ts_builtin_sym_end] = ACTIONS(1936), + [sym_identifier] = ACTIONS(1938), + [anon_sym_SEMI] = ACTIONS(1936), + [anon_sym_macro_rules_BANG] = ACTIONS(1936), + [anon_sym_LPAREN] = ACTIONS(1936), + [anon_sym_LBRACK] = ACTIONS(1936), + [anon_sym_LBRACE] = ACTIONS(1936), + [anon_sym_RBRACE] = ACTIONS(1936), + [anon_sym_STAR] = ACTIONS(1936), + [anon_sym_u8] = ACTIONS(1938), + [anon_sym_i8] = ACTIONS(1938), + [anon_sym_u16] = ACTIONS(1938), + [anon_sym_i16] = ACTIONS(1938), + [anon_sym_u32] = ACTIONS(1938), + [anon_sym_i32] = ACTIONS(1938), + [anon_sym_u64] = ACTIONS(1938), + [anon_sym_i64] = ACTIONS(1938), + [anon_sym_u128] = ACTIONS(1938), + [anon_sym_i128] = ACTIONS(1938), + [anon_sym_isize] = ACTIONS(1938), + [anon_sym_usize] = ACTIONS(1938), + [anon_sym_f32] = ACTIONS(1938), + [anon_sym_f64] = ACTIONS(1938), + [anon_sym_bool] = ACTIONS(1938), + [anon_sym_str] = ACTIONS(1938), + [anon_sym_char] = ACTIONS(1938), + [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_COLON_COLON] = ACTIONS(1936), + [anon_sym_BANG] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(1936), + [anon_sym_POUND] = ACTIONS(1936), + [anon_sym_LT] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(1936), + [anon_sym_SQUOTE] = ACTIONS(1938), + [anon_sym_async] = ACTIONS(1938), + [anon_sym_break] = ACTIONS(1938), + [anon_sym_const] = ACTIONS(1938), + [anon_sym_continue] = ACTIONS(1938), + [anon_sym_default] = ACTIONS(1938), + [anon_sym_enum] = ACTIONS(1938), + [anon_sym_fn] = ACTIONS(1938), + [anon_sym_for] = ACTIONS(1938), + [anon_sym_if] = ACTIONS(1938), + [anon_sym_impl] = ACTIONS(1938), + [anon_sym_let] = ACTIONS(1938), + [anon_sym_loop] = ACTIONS(1938), + [anon_sym_match] = ACTIONS(1938), + [anon_sym_mod] = ACTIONS(1938), + [anon_sym_pub] = ACTIONS(1938), + [anon_sym_return] = ACTIONS(1938), + [anon_sym_static] = ACTIONS(1938), + [anon_sym_struct] = ACTIONS(1938), + [anon_sym_trait] = ACTIONS(1938), + [anon_sym_type] = ACTIONS(1938), + [anon_sym_union] = ACTIONS(1938), + [anon_sym_unsafe] = ACTIONS(1938), + [anon_sym_use] = ACTIONS(1938), + [anon_sym_while] = ACTIONS(1938), + [anon_sym_extern] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1938), + [anon_sym_move] = ACTIONS(1938), + [anon_sym_try] = ACTIONS(1938), + [sym_integer_literal] = ACTIONS(1936), + [aux_sym_string_literal_token1] = ACTIONS(1936), + [sym_char_literal] = ACTIONS(1936), + [anon_sym_true] = ACTIONS(1938), + [anon_sym_false] = ACTIONS(1938), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1938), + [sym_super] = ACTIONS(1938), + [sym_crate] = ACTIONS(1938), + [sym_metavariable] = ACTIONS(1936), + [sym_raw_string_literal] = ACTIONS(1936), + [sym_float_literal] = ACTIONS(1936), }, [541] = { [sym_line_comment] = STATE(541), [sym_block_comment] = STATE(541), - [ts_builtin_sym_end] = ACTIONS(1889), - [sym_identifier] = ACTIONS(1891), - [anon_sym_SEMI] = ACTIONS(1889), - [anon_sym_macro_rules_BANG] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1889), - [anon_sym_LBRACK] = ACTIONS(1889), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_RBRACE] = ACTIONS(1889), - [anon_sym_STAR] = ACTIONS(1889), - [anon_sym_u8] = ACTIONS(1891), - [anon_sym_i8] = ACTIONS(1891), - [anon_sym_u16] = ACTIONS(1891), - [anon_sym_i16] = ACTIONS(1891), - [anon_sym_u32] = ACTIONS(1891), - [anon_sym_i32] = ACTIONS(1891), - [anon_sym_u64] = ACTIONS(1891), - [anon_sym_i64] = ACTIONS(1891), - [anon_sym_u128] = ACTIONS(1891), - [anon_sym_i128] = ACTIONS(1891), - [anon_sym_isize] = ACTIONS(1891), - [anon_sym_usize] = ACTIONS(1891), - [anon_sym_f32] = ACTIONS(1891), - [anon_sym_f64] = ACTIONS(1891), - [anon_sym_bool] = ACTIONS(1891), - [anon_sym_str] = ACTIONS(1891), - [anon_sym_char] = ACTIONS(1891), - [anon_sym_DASH] = ACTIONS(1889), - [anon_sym_COLON_COLON] = ACTIONS(1889), - [anon_sym_BANG] = ACTIONS(1889), - [anon_sym_AMP] = ACTIONS(1889), - [anon_sym_POUND] = ACTIONS(1889), - [anon_sym_LT] = ACTIONS(1889), - [anon_sym_PIPE] = ACTIONS(1889), - [anon_sym_SQUOTE] = ACTIONS(1891), - [anon_sym_async] = ACTIONS(1891), - [anon_sym_break] = ACTIONS(1891), - [anon_sym_const] = ACTIONS(1891), - [anon_sym_continue] = ACTIONS(1891), - [anon_sym_default] = ACTIONS(1891), - [anon_sym_enum] = ACTIONS(1891), - [anon_sym_fn] = ACTIONS(1891), - [anon_sym_for] = ACTIONS(1891), - [anon_sym_if] = ACTIONS(1891), - [anon_sym_impl] = ACTIONS(1891), - [anon_sym_let] = ACTIONS(1891), - [anon_sym_loop] = ACTIONS(1891), - [anon_sym_match] = ACTIONS(1891), - [anon_sym_mod] = ACTIONS(1891), - [anon_sym_pub] = ACTIONS(1891), - [anon_sym_return] = ACTIONS(1891), - [anon_sym_static] = ACTIONS(1891), - [anon_sym_struct] = ACTIONS(1891), - [anon_sym_trait] = ACTIONS(1891), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_union] = ACTIONS(1891), - [anon_sym_unsafe] = ACTIONS(1891), - [anon_sym_use] = ACTIONS(1891), - [anon_sym_while] = ACTIONS(1891), - [anon_sym_extern] = ACTIONS(1891), - [anon_sym_DOT_DOT] = ACTIONS(1889), - [anon_sym_yield] = ACTIONS(1891), - [anon_sym_move] = ACTIONS(1891), - [anon_sym_try] = ACTIONS(1891), - [sym_integer_literal] = ACTIONS(1889), - [aux_sym_string_literal_token1] = ACTIONS(1889), - [sym_char_literal] = ACTIONS(1889), - [anon_sym_true] = ACTIONS(1891), - [anon_sym_false] = ACTIONS(1891), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1891), - [sym_super] = ACTIONS(1891), - [sym_crate] = ACTIONS(1891), - [sym_metavariable] = ACTIONS(1889), - [sym_raw_string_literal] = ACTIONS(1889), - [sym_float_literal] = ACTIONS(1889), + [ts_builtin_sym_end] = ACTIONS(1940), + [sym_identifier] = ACTIONS(1942), + [anon_sym_SEMI] = ACTIONS(1940), + [anon_sym_macro_rules_BANG] = ACTIONS(1940), + [anon_sym_LPAREN] = ACTIONS(1940), + [anon_sym_LBRACK] = ACTIONS(1940), + [anon_sym_LBRACE] = ACTIONS(1940), + [anon_sym_RBRACE] = ACTIONS(1940), + [anon_sym_STAR] = ACTIONS(1940), + [anon_sym_u8] = ACTIONS(1942), + [anon_sym_i8] = ACTIONS(1942), + [anon_sym_u16] = ACTIONS(1942), + [anon_sym_i16] = ACTIONS(1942), + [anon_sym_u32] = ACTIONS(1942), + [anon_sym_i32] = ACTIONS(1942), + [anon_sym_u64] = ACTIONS(1942), + [anon_sym_i64] = ACTIONS(1942), + [anon_sym_u128] = ACTIONS(1942), + [anon_sym_i128] = ACTIONS(1942), + [anon_sym_isize] = ACTIONS(1942), + [anon_sym_usize] = ACTIONS(1942), + [anon_sym_f32] = ACTIONS(1942), + [anon_sym_f64] = ACTIONS(1942), + [anon_sym_bool] = ACTIONS(1942), + [anon_sym_str] = ACTIONS(1942), + [anon_sym_char] = ACTIONS(1942), + [anon_sym_DASH] = ACTIONS(1940), + [anon_sym_COLON_COLON] = ACTIONS(1940), + [anon_sym_BANG] = ACTIONS(1940), + [anon_sym_AMP] = ACTIONS(1940), + [anon_sym_POUND] = ACTIONS(1940), + [anon_sym_LT] = ACTIONS(1940), + [anon_sym_PIPE] = ACTIONS(1940), + [anon_sym_SQUOTE] = ACTIONS(1942), + [anon_sym_async] = ACTIONS(1942), + [anon_sym_break] = ACTIONS(1942), + [anon_sym_const] = ACTIONS(1942), + [anon_sym_continue] = ACTIONS(1942), + [anon_sym_default] = ACTIONS(1942), + [anon_sym_enum] = ACTIONS(1942), + [anon_sym_fn] = ACTIONS(1942), + [anon_sym_for] = ACTIONS(1942), + [anon_sym_if] = ACTIONS(1942), + [anon_sym_impl] = ACTIONS(1942), + [anon_sym_let] = ACTIONS(1942), + [anon_sym_loop] = ACTIONS(1942), + [anon_sym_match] = ACTIONS(1942), + [anon_sym_mod] = ACTIONS(1942), + [anon_sym_pub] = ACTIONS(1942), + [anon_sym_return] = ACTIONS(1942), + [anon_sym_static] = ACTIONS(1942), + [anon_sym_struct] = ACTIONS(1942), + [anon_sym_trait] = ACTIONS(1942), + [anon_sym_type] = ACTIONS(1942), + [anon_sym_union] = ACTIONS(1942), + [anon_sym_unsafe] = ACTIONS(1942), + [anon_sym_use] = ACTIONS(1942), + [anon_sym_while] = ACTIONS(1942), + [anon_sym_extern] = ACTIONS(1942), + [anon_sym_DOT_DOT] = ACTIONS(1940), + [anon_sym_yield] = ACTIONS(1942), + [anon_sym_move] = ACTIONS(1942), + [anon_sym_try] = ACTIONS(1942), + [sym_integer_literal] = ACTIONS(1940), + [aux_sym_string_literal_token1] = ACTIONS(1940), + [sym_char_literal] = ACTIONS(1940), + [anon_sym_true] = ACTIONS(1942), + [anon_sym_false] = ACTIONS(1942), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1942), + [sym_super] = ACTIONS(1942), + [sym_crate] = ACTIONS(1942), + [sym_metavariable] = ACTIONS(1940), + [sym_raw_string_literal] = ACTIONS(1940), + [sym_float_literal] = ACTIONS(1940), }, [542] = { [sym_line_comment] = STATE(542), [sym_block_comment] = STATE(542), - [ts_builtin_sym_end] = ACTIONS(1893), - [sym_identifier] = ACTIONS(1895), - [anon_sym_SEMI] = ACTIONS(1893), - [anon_sym_macro_rules_BANG] = ACTIONS(1893), - [anon_sym_LPAREN] = ACTIONS(1893), - [anon_sym_LBRACK] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1893), - [anon_sym_RBRACE] = ACTIONS(1893), - [anon_sym_STAR] = ACTIONS(1893), - [anon_sym_u8] = ACTIONS(1895), - [anon_sym_i8] = ACTIONS(1895), - [anon_sym_u16] = ACTIONS(1895), - [anon_sym_i16] = ACTIONS(1895), - [anon_sym_u32] = ACTIONS(1895), - [anon_sym_i32] = ACTIONS(1895), - [anon_sym_u64] = ACTIONS(1895), - [anon_sym_i64] = ACTIONS(1895), - [anon_sym_u128] = ACTIONS(1895), - [anon_sym_i128] = ACTIONS(1895), - [anon_sym_isize] = ACTIONS(1895), - [anon_sym_usize] = ACTIONS(1895), - [anon_sym_f32] = ACTIONS(1895), - [anon_sym_f64] = ACTIONS(1895), - [anon_sym_bool] = ACTIONS(1895), - [anon_sym_str] = ACTIONS(1895), - [anon_sym_char] = ACTIONS(1895), - [anon_sym_DASH] = ACTIONS(1893), - [anon_sym_COLON_COLON] = ACTIONS(1893), - [anon_sym_BANG] = ACTIONS(1893), - [anon_sym_AMP] = ACTIONS(1893), - [anon_sym_POUND] = ACTIONS(1893), - [anon_sym_LT] = ACTIONS(1893), - [anon_sym_PIPE] = ACTIONS(1893), - [anon_sym_SQUOTE] = ACTIONS(1895), - [anon_sym_async] = ACTIONS(1895), - [anon_sym_break] = ACTIONS(1895), - [anon_sym_const] = ACTIONS(1895), - [anon_sym_continue] = ACTIONS(1895), - [anon_sym_default] = ACTIONS(1895), - [anon_sym_enum] = ACTIONS(1895), - [anon_sym_fn] = ACTIONS(1895), - [anon_sym_for] = ACTIONS(1895), - [anon_sym_if] = ACTIONS(1895), - [anon_sym_impl] = ACTIONS(1895), - [anon_sym_let] = ACTIONS(1895), - [anon_sym_loop] = ACTIONS(1895), - [anon_sym_match] = ACTIONS(1895), - [anon_sym_mod] = ACTIONS(1895), - [anon_sym_pub] = ACTIONS(1895), - [anon_sym_return] = ACTIONS(1895), - [anon_sym_static] = ACTIONS(1895), - [anon_sym_struct] = ACTIONS(1895), - [anon_sym_trait] = ACTIONS(1895), - [anon_sym_type] = ACTIONS(1895), - [anon_sym_union] = ACTIONS(1895), - [anon_sym_unsafe] = ACTIONS(1895), - [anon_sym_use] = ACTIONS(1895), - [anon_sym_while] = ACTIONS(1895), - [anon_sym_extern] = ACTIONS(1895), - [anon_sym_DOT_DOT] = ACTIONS(1893), - [anon_sym_yield] = ACTIONS(1895), - [anon_sym_move] = ACTIONS(1895), - [anon_sym_try] = ACTIONS(1895), - [sym_integer_literal] = ACTIONS(1893), - [aux_sym_string_literal_token1] = ACTIONS(1893), - [sym_char_literal] = ACTIONS(1893), - [anon_sym_true] = ACTIONS(1895), - [anon_sym_false] = ACTIONS(1895), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1895), - [sym_super] = ACTIONS(1895), - [sym_crate] = ACTIONS(1895), - [sym_metavariable] = ACTIONS(1893), - [sym_raw_string_literal] = ACTIONS(1893), - [sym_float_literal] = ACTIONS(1893), + [ts_builtin_sym_end] = ACTIONS(1944), + [sym_identifier] = ACTIONS(1946), + [anon_sym_SEMI] = ACTIONS(1944), + [anon_sym_macro_rules_BANG] = ACTIONS(1944), + [anon_sym_LPAREN] = ACTIONS(1944), + [anon_sym_LBRACK] = ACTIONS(1944), + [anon_sym_LBRACE] = ACTIONS(1944), + [anon_sym_RBRACE] = ACTIONS(1944), + [anon_sym_STAR] = ACTIONS(1944), + [anon_sym_u8] = ACTIONS(1946), + [anon_sym_i8] = ACTIONS(1946), + [anon_sym_u16] = ACTIONS(1946), + [anon_sym_i16] = ACTIONS(1946), + [anon_sym_u32] = ACTIONS(1946), + [anon_sym_i32] = ACTIONS(1946), + [anon_sym_u64] = ACTIONS(1946), + [anon_sym_i64] = ACTIONS(1946), + [anon_sym_u128] = ACTIONS(1946), + [anon_sym_i128] = ACTIONS(1946), + [anon_sym_isize] = ACTIONS(1946), + [anon_sym_usize] = ACTIONS(1946), + [anon_sym_f32] = ACTIONS(1946), + [anon_sym_f64] = ACTIONS(1946), + [anon_sym_bool] = ACTIONS(1946), + [anon_sym_str] = ACTIONS(1946), + [anon_sym_char] = ACTIONS(1946), + [anon_sym_DASH] = ACTIONS(1944), + [anon_sym_COLON_COLON] = ACTIONS(1944), + [anon_sym_BANG] = ACTIONS(1944), + [anon_sym_AMP] = ACTIONS(1944), + [anon_sym_POUND] = ACTIONS(1944), + [anon_sym_LT] = ACTIONS(1944), + [anon_sym_PIPE] = ACTIONS(1944), + [anon_sym_SQUOTE] = ACTIONS(1946), + [anon_sym_async] = ACTIONS(1946), + [anon_sym_break] = ACTIONS(1946), + [anon_sym_const] = ACTIONS(1946), + [anon_sym_continue] = ACTIONS(1946), + [anon_sym_default] = ACTIONS(1946), + [anon_sym_enum] = ACTIONS(1946), + [anon_sym_fn] = ACTIONS(1946), + [anon_sym_for] = ACTIONS(1946), + [anon_sym_if] = ACTIONS(1946), + [anon_sym_impl] = ACTIONS(1946), + [anon_sym_let] = ACTIONS(1946), + [anon_sym_loop] = ACTIONS(1946), + [anon_sym_match] = ACTIONS(1946), + [anon_sym_mod] = ACTIONS(1946), + [anon_sym_pub] = ACTIONS(1946), + [anon_sym_return] = ACTIONS(1946), + [anon_sym_static] = ACTIONS(1946), + [anon_sym_struct] = ACTIONS(1946), + [anon_sym_trait] = ACTIONS(1946), + [anon_sym_type] = ACTIONS(1946), + [anon_sym_union] = ACTIONS(1946), + [anon_sym_unsafe] = ACTIONS(1946), + [anon_sym_use] = ACTIONS(1946), + [anon_sym_while] = ACTIONS(1946), + [anon_sym_extern] = ACTIONS(1946), + [anon_sym_DOT_DOT] = ACTIONS(1944), + [anon_sym_yield] = ACTIONS(1946), + [anon_sym_move] = ACTIONS(1946), + [anon_sym_try] = ACTIONS(1946), + [sym_integer_literal] = ACTIONS(1944), + [aux_sym_string_literal_token1] = ACTIONS(1944), + [sym_char_literal] = ACTIONS(1944), + [anon_sym_true] = ACTIONS(1946), + [anon_sym_false] = ACTIONS(1946), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1946), + [sym_super] = ACTIONS(1946), + [sym_crate] = ACTIONS(1946), + [sym_metavariable] = ACTIONS(1944), + [sym_raw_string_literal] = ACTIONS(1944), + [sym_float_literal] = ACTIONS(1944), }, [543] = { [sym_line_comment] = STATE(543), [sym_block_comment] = STATE(543), - [ts_builtin_sym_end] = ACTIONS(1897), - [sym_identifier] = ACTIONS(1899), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_macro_rules_BANG] = ACTIONS(1897), - [anon_sym_LPAREN] = ACTIONS(1897), - [anon_sym_LBRACK] = ACTIONS(1897), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1897), - [anon_sym_STAR] = ACTIONS(1897), - [anon_sym_u8] = ACTIONS(1899), - [anon_sym_i8] = ACTIONS(1899), - [anon_sym_u16] = ACTIONS(1899), - [anon_sym_i16] = ACTIONS(1899), - [anon_sym_u32] = ACTIONS(1899), - [anon_sym_i32] = ACTIONS(1899), - [anon_sym_u64] = ACTIONS(1899), - [anon_sym_i64] = ACTIONS(1899), - [anon_sym_u128] = ACTIONS(1899), - [anon_sym_i128] = ACTIONS(1899), - [anon_sym_isize] = ACTIONS(1899), - [anon_sym_usize] = ACTIONS(1899), - [anon_sym_f32] = ACTIONS(1899), - [anon_sym_f64] = ACTIONS(1899), - [anon_sym_bool] = ACTIONS(1899), - [anon_sym_str] = ACTIONS(1899), - [anon_sym_char] = ACTIONS(1899), - [anon_sym_DASH] = ACTIONS(1897), - [anon_sym_COLON_COLON] = ACTIONS(1897), - [anon_sym_BANG] = ACTIONS(1897), - [anon_sym_AMP] = ACTIONS(1897), - [anon_sym_POUND] = ACTIONS(1897), - [anon_sym_LT] = ACTIONS(1897), - [anon_sym_PIPE] = ACTIONS(1897), - [anon_sym_SQUOTE] = ACTIONS(1899), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_break] = ACTIONS(1899), - [anon_sym_const] = ACTIONS(1899), - [anon_sym_continue] = ACTIONS(1899), - [anon_sym_default] = ACTIONS(1899), - [anon_sym_enum] = ACTIONS(1899), - [anon_sym_fn] = ACTIONS(1899), - [anon_sym_for] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(1899), - [anon_sym_impl] = ACTIONS(1899), - [anon_sym_let] = ACTIONS(1899), - [anon_sym_loop] = ACTIONS(1899), - [anon_sym_match] = ACTIONS(1899), - [anon_sym_mod] = ACTIONS(1899), - [anon_sym_pub] = ACTIONS(1899), - [anon_sym_return] = ACTIONS(1899), - [anon_sym_static] = ACTIONS(1899), - [anon_sym_struct] = ACTIONS(1899), - [anon_sym_trait] = ACTIONS(1899), - [anon_sym_type] = ACTIONS(1899), - [anon_sym_union] = ACTIONS(1899), - [anon_sym_unsafe] = ACTIONS(1899), - [anon_sym_use] = ACTIONS(1899), - [anon_sym_while] = ACTIONS(1899), - [anon_sym_extern] = ACTIONS(1899), - [anon_sym_DOT_DOT] = ACTIONS(1897), - [anon_sym_yield] = ACTIONS(1899), - [anon_sym_move] = ACTIONS(1899), - [anon_sym_try] = ACTIONS(1899), - [sym_integer_literal] = ACTIONS(1897), - [aux_sym_string_literal_token1] = ACTIONS(1897), - [sym_char_literal] = ACTIONS(1897), - [anon_sym_true] = ACTIONS(1899), - [anon_sym_false] = ACTIONS(1899), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1899), - [sym_super] = ACTIONS(1899), - [sym_crate] = ACTIONS(1899), - [sym_metavariable] = ACTIONS(1897), - [sym_raw_string_literal] = ACTIONS(1897), - [sym_float_literal] = ACTIONS(1897), + [ts_builtin_sym_end] = ACTIONS(1948), + [sym_identifier] = ACTIONS(1950), + [anon_sym_SEMI] = ACTIONS(1948), + [anon_sym_macro_rules_BANG] = ACTIONS(1948), + [anon_sym_LPAREN] = ACTIONS(1948), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LBRACE] = ACTIONS(1948), + [anon_sym_RBRACE] = ACTIONS(1948), + [anon_sym_STAR] = ACTIONS(1948), + [anon_sym_u8] = ACTIONS(1950), + [anon_sym_i8] = ACTIONS(1950), + [anon_sym_u16] = ACTIONS(1950), + [anon_sym_i16] = ACTIONS(1950), + [anon_sym_u32] = ACTIONS(1950), + [anon_sym_i32] = ACTIONS(1950), + [anon_sym_u64] = ACTIONS(1950), + [anon_sym_i64] = ACTIONS(1950), + [anon_sym_u128] = ACTIONS(1950), + [anon_sym_i128] = ACTIONS(1950), + [anon_sym_isize] = ACTIONS(1950), + [anon_sym_usize] = ACTIONS(1950), + [anon_sym_f32] = ACTIONS(1950), + [anon_sym_f64] = ACTIONS(1950), + [anon_sym_bool] = ACTIONS(1950), + [anon_sym_str] = ACTIONS(1950), + [anon_sym_char] = ACTIONS(1950), + [anon_sym_DASH] = ACTIONS(1948), + [anon_sym_COLON_COLON] = ACTIONS(1948), + [anon_sym_BANG] = ACTIONS(1948), + [anon_sym_AMP] = ACTIONS(1948), + [anon_sym_POUND] = ACTIONS(1948), + [anon_sym_LT] = ACTIONS(1948), + [anon_sym_PIPE] = ACTIONS(1948), + [anon_sym_SQUOTE] = ACTIONS(1950), + [anon_sym_async] = ACTIONS(1950), + [anon_sym_break] = ACTIONS(1950), + [anon_sym_const] = ACTIONS(1950), + [anon_sym_continue] = ACTIONS(1950), + [anon_sym_default] = ACTIONS(1950), + [anon_sym_enum] = ACTIONS(1950), + [anon_sym_fn] = ACTIONS(1950), + [anon_sym_for] = ACTIONS(1950), + [anon_sym_if] = ACTIONS(1950), + [anon_sym_impl] = ACTIONS(1950), + [anon_sym_let] = ACTIONS(1950), + [anon_sym_loop] = ACTIONS(1950), + [anon_sym_match] = ACTIONS(1950), + [anon_sym_mod] = ACTIONS(1950), + [anon_sym_pub] = ACTIONS(1950), + [anon_sym_return] = ACTIONS(1950), + [anon_sym_static] = ACTIONS(1950), + [anon_sym_struct] = ACTIONS(1950), + [anon_sym_trait] = ACTIONS(1950), + [anon_sym_type] = ACTIONS(1950), + [anon_sym_union] = ACTIONS(1950), + [anon_sym_unsafe] = ACTIONS(1950), + [anon_sym_use] = ACTIONS(1950), + [anon_sym_while] = ACTIONS(1950), + [anon_sym_extern] = ACTIONS(1950), + [anon_sym_DOT_DOT] = ACTIONS(1948), + [anon_sym_yield] = ACTIONS(1950), + [anon_sym_move] = ACTIONS(1950), + [anon_sym_try] = ACTIONS(1950), + [sym_integer_literal] = ACTIONS(1948), + [aux_sym_string_literal_token1] = ACTIONS(1948), + [sym_char_literal] = ACTIONS(1948), + [anon_sym_true] = ACTIONS(1950), + [anon_sym_false] = ACTIONS(1950), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1950), + [sym_super] = ACTIONS(1950), + [sym_crate] = ACTIONS(1950), + [sym_metavariable] = ACTIONS(1948), + [sym_raw_string_literal] = ACTIONS(1948), + [sym_float_literal] = ACTIONS(1948), }, [544] = { [sym_line_comment] = STATE(544), [sym_block_comment] = STATE(544), - [ts_builtin_sym_end] = ACTIONS(1901), - [sym_identifier] = ACTIONS(1903), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_macro_rules_BANG] = ACTIONS(1901), - [anon_sym_LPAREN] = ACTIONS(1901), - [anon_sym_LBRACK] = ACTIONS(1901), - [anon_sym_LBRACE] = ACTIONS(1901), - [anon_sym_RBRACE] = ACTIONS(1901), - [anon_sym_STAR] = ACTIONS(1901), - [anon_sym_u8] = ACTIONS(1903), - [anon_sym_i8] = ACTIONS(1903), - [anon_sym_u16] = ACTIONS(1903), - [anon_sym_i16] = ACTIONS(1903), - [anon_sym_u32] = ACTIONS(1903), - [anon_sym_i32] = ACTIONS(1903), - [anon_sym_u64] = ACTIONS(1903), - [anon_sym_i64] = ACTIONS(1903), - [anon_sym_u128] = ACTIONS(1903), - [anon_sym_i128] = ACTIONS(1903), - [anon_sym_isize] = ACTIONS(1903), - [anon_sym_usize] = ACTIONS(1903), - [anon_sym_f32] = ACTIONS(1903), - [anon_sym_f64] = ACTIONS(1903), - [anon_sym_bool] = ACTIONS(1903), - [anon_sym_str] = ACTIONS(1903), - [anon_sym_char] = ACTIONS(1903), - [anon_sym_DASH] = ACTIONS(1901), - [anon_sym_COLON_COLON] = ACTIONS(1901), - [anon_sym_BANG] = ACTIONS(1901), - [anon_sym_AMP] = ACTIONS(1901), - [anon_sym_POUND] = ACTIONS(1901), - [anon_sym_LT] = ACTIONS(1901), - [anon_sym_PIPE] = ACTIONS(1901), - [anon_sym_SQUOTE] = ACTIONS(1903), - [anon_sym_async] = ACTIONS(1903), - [anon_sym_break] = ACTIONS(1903), - [anon_sym_const] = ACTIONS(1903), - [anon_sym_continue] = ACTIONS(1903), - [anon_sym_default] = ACTIONS(1903), - [anon_sym_enum] = ACTIONS(1903), - [anon_sym_fn] = ACTIONS(1903), - [anon_sym_for] = ACTIONS(1903), - [anon_sym_if] = ACTIONS(1903), - [anon_sym_impl] = ACTIONS(1903), - [anon_sym_let] = ACTIONS(1903), - [anon_sym_loop] = ACTIONS(1903), - [anon_sym_match] = ACTIONS(1903), - [anon_sym_mod] = ACTIONS(1903), - [anon_sym_pub] = ACTIONS(1903), - [anon_sym_return] = ACTIONS(1903), - [anon_sym_static] = ACTIONS(1903), - [anon_sym_struct] = ACTIONS(1903), - [anon_sym_trait] = ACTIONS(1903), - [anon_sym_type] = ACTIONS(1903), - [anon_sym_union] = ACTIONS(1903), - [anon_sym_unsafe] = ACTIONS(1903), - [anon_sym_use] = ACTIONS(1903), - [anon_sym_while] = ACTIONS(1903), - [anon_sym_extern] = ACTIONS(1903), - [anon_sym_DOT_DOT] = ACTIONS(1901), - [anon_sym_yield] = ACTIONS(1903), - [anon_sym_move] = ACTIONS(1903), - [anon_sym_try] = ACTIONS(1903), - [sym_integer_literal] = ACTIONS(1901), - [aux_sym_string_literal_token1] = ACTIONS(1901), - [sym_char_literal] = ACTIONS(1901), - [anon_sym_true] = ACTIONS(1903), - [anon_sym_false] = ACTIONS(1903), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1903), - [sym_super] = ACTIONS(1903), - [sym_crate] = ACTIONS(1903), - [sym_metavariable] = ACTIONS(1901), - [sym_raw_string_literal] = ACTIONS(1901), - [sym_float_literal] = ACTIONS(1901), + [ts_builtin_sym_end] = ACTIONS(1952), + [sym_identifier] = ACTIONS(1954), + [anon_sym_SEMI] = ACTIONS(1952), + [anon_sym_macro_rules_BANG] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1952), + [anon_sym_LBRACK] = ACTIONS(1952), + [anon_sym_LBRACE] = ACTIONS(1952), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_STAR] = ACTIONS(1952), + [anon_sym_u8] = ACTIONS(1954), + [anon_sym_i8] = ACTIONS(1954), + [anon_sym_u16] = ACTIONS(1954), + [anon_sym_i16] = ACTIONS(1954), + [anon_sym_u32] = ACTIONS(1954), + [anon_sym_i32] = ACTIONS(1954), + [anon_sym_u64] = ACTIONS(1954), + [anon_sym_i64] = ACTIONS(1954), + [anon_sym_u128] = ACTIONS(1954), + [anon_sym_i128] = ACTIONS(1954), + [anon_sym_isize] = ACTIONS(1954), + [anon_sym_usize] = ACTIONS(1954), + [anon_sym_f32] = ACTIONS(1954), + [anon_sym_f64] = ACTIONS(1954), + [anon_sym_bool] = ACTIONS(1954), + [anon_sym_str] = ACTIONS(1954), + [anon_sym_char] = ACTIONS(1954), + [anon_sym_DASH] = ACTIONS(1952), + [anon_sym_COLON_COLON] = ACTIONS(1952), + [anon_sym_BANG] = ACTIONS(1952), + [anon_sym_AMP] = ACTIONS(1952), + [anon_sym_POUND] = ACTIONS(1952), + [anon_sym_LT] = ACTIONS(1952), + [anon_sym_PIPE] = ACTIONS(1952), + [anon_sym_SQUOTE] = ACTIONS(1954), + [anon_sym_async] = ACTIONS(1954), + [anon_sym_break] = ACTIONS(1954), + [anon_sym_const] = ACTIONS(1954), + [anon_sym_continue] = ACTIONS(1954), + [anon_sym_default] = ACTIONS(1954), + [anon_sym_enum] = ACTIONS(1954), + [anon_sym_fn] = ACTIONS(1954), + [anon_sym_for] = ACTIONS(1954), + [anon_sym_if] = ACTIONS(1954), + [anon_sym_impl] = ACTIONS(1954), + [anon_sym_let] = ACTIONS(1954), + [anon_sym_loop] = ACTIONS(1954), + [anon_sym_match] = ACTIONS(1954), + [anon_sym_mod] = ACTIONS(1954), + [anon_sym_pub] = ACTIONS(1954), + [anon_sym_return] = ACTIONS(1954), + [anon_sym_static] = ACTIONS(1954), + [anon_sym_struct] = ACTIONS(1954), + [anon_sym_trait] = ACTIONS(1954), + [anon_sym_type] = ACTIONS(1954), + [anon_sym_union] = ACTIONS(1954), + [anon_sym_unsafe] = ACTIONS(1954), + [anon_sym_use] = ACTIONS(1954), + [anon_sym_while] = ACTIONS(1954), + [anon_sym_extern] = ACTIONS(1954), + [anon_sym_DOT_DOT] = ACTIONS(1952), + [anon_sym_yield] = ACTIONS(1954), + [anon_sym_move] = ACTIONS(1954), + [anon_sym_try] = ACTIONS(1954), + [sym_integer_literal] = ACTIONS(1952), + [aux_sym_string_literal_token1] = ACTIONS(1952), + [sym_char_literal] = ACTIONS(1952), + [anon_sym_true] = ACTIONS(1954), + [anon_sym_false] = ACTIONS(1954), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1954), + [sym_super] = ACTIONS(1954), + [sym_crate] = ACTIONS(1954), + [sym_metavariable] = ACTIONS(1952), + [sym_raw_string_literal] = ACTIONS(1952), + [sym_float_literal] = ACTIONS(1952), }, [545] = { [sym_line_comment] = STATE(545), [sym_block_comment] = STATE(545), - [ts_builtin_sym_end] = ACTIONS(1905), - [sym_identifier] = ACTIONS(1907), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_macro_rules_BANG] = ACTIONS(1905), - [anon_sym_LPAREN] = ACTIONS(1905), - [anon_sym_LBRACK] = ACTIONS(1905), - [anon_sym_LBRACE] = ACTIONS(1905), - [anon_sym_RBRACE] = ACTIONS(1905), - [anon_sym_STAR] = ACTIONS(1905), - [anon_sym_u8] = ACTIONS(1907), - [anon_sym_i8] = ACTIONS(1907), - [anon_sym_u16] = ACTIONS(1907), - [anon_sym_i16] = ACTIONS(1907), - [anon_sym_u32] = ACTIONS(1907), - [anon_sym_i32] = ACTIONS(1907), - [anon_sym_u64] = ACTIONS(1907), - [anon_sym_i64] = ACTIONS(1907), - [anon_sym_u128] = ACTIONS(1907), - [anon_sym_i128] = ACTIONS(1907), - [anon_sym_isize] = ACTIONS(1907), - [anon_sym_usize] = ACTIONS(1907), - [anon_sym_f32] = ACTIONS(1907), - [anon_sym_f64] = ACTIONS(1907), - [anon_sym_bool] = ACTIONS(1907), - [anon_sym_str] = ACTIONS(1907), - [anon_sym_char] = ACTIONS(1907), - [anon_sym_DASH] = ACTIONS(1905), - [anon_sym_COLON_COLON] = ACTIONS(1905), - [anon_sym_BANG] = ACTIONS(1905), - [anon_sym_AMP] = ACTIONS(1905), - [anon_sym_POUND] = ACTIONS(1905), - [anon_sym_LT] = ACTIONS(1905), - [anon_sym_PIPE] = ACTIONS(1905), - [anon_sym_SQUOTE] = ACTIONS(1907), - [anon_sym_async] = ACTIONS(1907), - [anon_sym_break] = ACTIONS(1907), - [anon_sym_const] = ACTIONS(1907), - [anon_sym_continue] = ACTIONS(1907), - [anon_sym_default] = ACTIONS(1907), - [anon_sym_enum] = ACTIONS(1907), - [anon_sym_fn] = ACTIONS(1907), - [anon_sym_for] = ACTIONS(1907), - [anon_sym_if] = ACTIONS(1907), - [anon_sym_impl] = ACTIONS(1907), - [anon_sym_let] = ACTIONS(1907), - [anon_sym_loop] = ACTIONS(1907), - [anon_sym_match] = ACTIONS(1907), - [anon_sym_mod] = ACTIONS(1907), - [anon_sym_pub] = ACTIONS(1907), - [anon_sym_return] = ACTIONS(1907), - [anon_sym_static] = ACTIONS(1907), - [anon_sym_struct] = ACTIONS(1907), - [anon_sym_trait] = ACTIONS(1907), - [anon_sym_type] = ACTIONS(1907), - [anon_sym_union] = ACTIONS(1907), - [anon_sym_unsafe] = ACTIONS(1907), - [anon_sym_use] = ACTIONS(1907), - [anon_sym_while] = ACTIONS(1907), - [anon_sym_extern] = ACTIONS(1907), - [anon_sym_DOT_DOT] = ACTIONS(1905), - [anon_sym_yield] = ACTIONS(1907), - [anon_sym_move] = ACTIONS(1907), - [anon_sym_try] = ACTIONS(1907), - [sym_integer_literal] = ACTIONS(1905), - [aux_sym_string_literal_token1] = ACTIONS(1905), - [sym_char_literal] = ACTIONS(1905), - [anon_sym_true] = ACTIONS(1907), - [anon_sym_false] = ACTIONS(1907), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1907), - [sym_super] = ACTIONS(1907), - [sym_crate] = ACTIONS(1907), - [sym_metavariable] = ACTIONS(1905), - [sym_raw_string_literal] = ACTIONS(1905), - [sym_float_literal] = ACTIONS(1905), + [ts_builtin_sym_end] = ACTIONS(1956), + [sym_identifier] = ACTIONS(1958), + [anon_sym_SEMI] = ACTIONS(1956), + [anon_sym_macro_rules_BANG] = ACTIONS(1956), + [anon_sym_LPAREN] = ACTIONS(1956), + [anon_sym_LBRACK] = ACTIONS(1956), + [anon_sym_LBRACE] = ACTIONS(1956), + [anon_sym_RBRACE] = ACTIONS(1956), + [anon_sym_STAR] = ACTIONS(1956), + [anon_sym_u8] = ACTIONS(1958), + [anon_sym_i8] = ACTIONS(1958), + [anon_sym_u16] = ACTIONS(1958), + [anon_sym_i16] = ACTIONS(1958), + [anon_sym_u32] = ACTIONS(1958), + [anon_sym_i32] = ACTIONS(1958), + [anon_sym_u64] = ACTIONS(1958), + [anon_sym_i64] = ACTIONS(1958), + [anon_sym_u128] = ACTIONS(1958), + [anon_sym_i128] = ACTIONS(1958), + [anon_sym_isize] = ACTIONS(1958), + [anon_sym_usize] = ACTIONS(1958), + [anon_sym_f32] = ACTIONS(1958), + [anon_sym_f64] = ACTIONS(1958), + [anon_sym_bool] = ACTIONS(1958), + [anon_sym_str] = ACTIONS(1958), + [anon_sym_char] = ACTIONS(1958), + [anon_sym_DASH] = ACTIONS(1956), + [anon_sym_COLON_COLON] = ACTIONS(1956), + [anon_sym_BANG] = ACTIONS(1956), + [anon_sym_AMP] = ACTIONS(1956), + [anon_sym_POUND] = ACTIONS(1956), + [anon_sym_LT] = ACTIONS(1956), + [anon_sym_PIPE] = ACTIONS(1956), + [anon_sym_SQUOTE] = ACTIONS(1958), + [anon_sym_async] = ACTIONS(1958), + [anon_sym_break] = ACTIONS(1958), + [anon_sym_const] = ACTIONS(1958), + [anon_sym_continue] = ACTIONS(1958), + [anon_sym_default] = ACTIONS(1958), + [anon_sym_enum] = ACTIONS(1958), + [anon_sym_fn] = ACTIONS(1958), + [anon_sym_for] = ACTIONS(1958), + [anon_sym_if] = ACTIONS(1958), + [anon_sym_impl] = ACTIONS(1958), + [anon_sym_let] = ACTIONS(1958), + [anon_sym_loop] = ACTIONS(1958), + [anon_sym_match] = ACTIONS(1958), + [anon_sym_mod] = ACTIONS(1958), + [anon_sym_pub] = ACTIONS(1958), + [anon_sym_return] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1958), + [anon_sym_struct] = ACTIONS(1958), + [anon_sym_trait] = ACTIONS(1958), + [anon_sym_type] = ACTIONS(1958), + [anon_sym_union] = ACTIONS(1958), + [anon_sym_unsafe] = ACTIONS(1958), + [anon_sym_use] = ACTIONS(1958), + [anon_sym_while] = ACTIONS(1958), + [anon_sym_extern] = ACTIONS(1958), + [anon_sym_DOT_DOT] = ACTIONS(1956), + [anon_sym_yield] = ACTIONS(1958), + [anon_sym_move] = ACTIONS(1958), + [anon_sym_try] = ACTIONS(1958), + [sym_integer_literal] = ACTIONS(1956), + [aux_sym_string_literal_token1] = ACTIONS(1956), + [sym_char_literal] = ACTIONS(1956), + [anon_sym_true] = ACTIONS(1958), + [anon_sym_false] = ACTIONS(1958), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1958), + [sym_super] = ACTIONS(1958), + [sym_crate] = ACTIONS(1958), + [sym_metavariable] = ACTIONS(1956), + [sym_raw_string_literal] = ACTIONS(1956), + [sym_float_literal] = ACTIONS(1956), }, [546] = { [sym_line_comment] = STATE(546), [sym_block_comment] = STATE(546), - [ts_builtin_sym_end] = ACTIONS(1909), - [sym_identifier] = ACTIONS(1911), - [anon_sym_SEMI] = ACTIONS(1909), - [anon_sym_macro_rules_BANG] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1909), - [anon_sym_LBRACK] = ACTIONS(1909), - [anon_sym_LBRACE] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1909), - [anon_sym_STAR] = ACTIONS(1909), - [anon_sym_u8] = ACTIONS(1911), - [anon_sym_i8] = ACTIONS(1911), - [anon_sym_u16] = ACTIONS(1911), - [anon_sym_i16] = ACTIONS(1911), - [anon_sym_u32] = ACTIONS(1911), - [anon_sym_i32] = ACTIONS(1911), - [anon_sym_u64] = ACTIONS(1911), - [anon_sym_i64] = ACTIONS(1911), - [anon_sym_u128] = ACTIONS(1911), - [anon_sym_i128] = ACTIONS(1911), - [anon_sym_isize] = ACTIONS(1911), - [anon_sym_usize] = ACTIONS(1911), - [anon_sym_f32] = ACTIONS(1911), - [anon_sym_f64] = ACTIONS(1911), - [anon_sym_bool] = ACTIONS(1911), - [anon_sym_str] = ACTIONS(1911), - [anon_sym_char] = ACTIONS(1911), - [anon_sym_DASH] = ACTIONS(1909), - [anon_sym_COLON_COLON] = ACTIONS(1909), - [anon_sym_BANG] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_POUND] = ACTIONS(1909), - [anon_sym_LT] = ACTIONS(1909), - [anon_sym_PIPE] = ACTIONS(1909), - [anon_sym_SQUOTE] = ACTIONS(1911), - [anon_sym_async] = ACTIONS(1911), - [anon_sym_break] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(1911), - [anon_sym_continue] = ACTIONS(1911), - [anon_sym_default] = ACTIONS(1911), - [anon_sym_enum] = ACTIONS(1911), - [anon_sym_fn] = ACTIONS(1911), - [anon_sym_for] = ACTIONS(1911), - [anon_sym_if] = ACTIONS(1911), - [anon_sym_impl] = ACTIONS(1911), - [anon_sym_let] = ACTIONS(1911), - [anon_sym_loop] = ACTIONS(1911), - [anon_sym_match] = ACTIONS(1911), - [anon_sym_mod] = ACTIONS(1911), - [anon_sym_pub] = ACTIONS(1911), - [anon_sym_return] = ACTIONS(1911), - [anon_sym_static] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1911), - [anon_sym_trait] = ACTIONS(1911), - [anon_sym_type] = ACTIONS(1911), - [anon_sym_union] = ACTIONS(1911), - [anon_sym_unsafe] = ACTIONS(1911), - [anon_sym_use] = ACTIONS(1911), - [anon_sym_while] = ACTIONS(1911), - [anon_sym_extern] = ACTIONS(1911), - [anon_sym_DOT_DOT] = ACTIONS(1909), - [anon_sym_yield] = ACTIONS(1911), - [anon_sym_move] = ACTIONS(1911), - [anon_sym_try] = ACTIONS(1911), - [sym_integer_literal] = ACTIONS(1909), - [aux_sym_string_literal_token1] = ACTIONS(1909), - [sym_char_literal] = ACTIONS(1909), - [anon_sym_true] = ACTIONS(1911), - [anon_sym_false] = ACTIONS(1911), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1911), - [sym_super] = ACTIONS(1911), - [sym_crate] = ACTIONS(1911), - [sym_metavariable] = ACTIONS(1909), - [sym_raw_string_literal] = ACTIONS(1909), - [sym_float_literal] = ACTIONS(1909), + [ts_builtin_sym_end] = ACTIONS(1960), + [sym_identifier] = ACTIONS(1962), + [anon_sym_SEMI] = ACTIONS(1960), + [anon_sym_macro_rules_BANG] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_LBRACK] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1960), + [anon_sym_RBRACE] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1960), + [anon_sym_u8] = ACTIONS(1962), + [anon_sym_i8] = ACTIONS(1962), + [anon_sym_u16] = ACTIONS(1962), + [anon_sym_i16] = ACTIONS(1962), + [anon_sym_u32] = ACTIONS(1962), + [anon_sym_i32] = ACTIONS(1962), + [anon_sym_u64] = ACTIONS(1962), + [anon_sym_i64] = ACTIONS(1962), + [anon_sym_u128] = ACTIONS(1962), + [anon_sym_i128] = ACTIONS(1962), + [anon_sym_isize] = ACTIONS(1962), + [anon_sym_usize] = ACTIONS(1962), + [anon_sym_f32] = ACTIONS(1962), + [anon_sym_f64] = ACTIONS(1962), + [anon_sym_bool] = ACTIONS(1962), + [anon_sym_str] = ACTIONS(1962), + [anon_sym_char] = ACTIONS(1962), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_COLON_COLON] = ACTIONS(1960), + [anon_sym_BANG] = ACTIONS(1960), + [anon_sym_AMP] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(1960), + [anon_sym_LT] = ACTIONS(1960), + [anon_sym_PIPE] = ACTIONS(1960), + [anon_sym_SQUOTE] = ACTIONS(1962), + [anon_sym_async] = ACTIONS(1962), + [anon_sym_break] = ACTIONS(1962), + [anon_sym_const] = ACTIONS(1962), + [anon_sym_continue] = ACTIONS(1962), + [anon_sym_default] = ACTIONS(1962), + [anon_sym_enum] = ACTIONS(1962), + [anon_sym_fn] = ACTIONS(1962), + [anon_sym_for] = ACTIONS(1962), + [anon_sym_if] = ACTIONS(1962), + [anon_sym_impl] = ACTIONS(1962), + [anon_sym_let] = ACTIONS(1962), + [anon_sym_loop] = ACTIONS(1962), + [anon_sym_match] = ACTIONS(1962), + [anon_sym_mod] = ACTIONS(1962), + [anon_sym_pub] = ACTIONS(1962), + [anon_sym_return] = ACTIONS(1962), + [anon_sym_static] = ACTIONS(1962), + [anon_sym_struct] = ACTIONS(1962), + [anon_sym_trait] = ACTIONS(1962), + [anon_sym_type] = ACTIONS(1962), + [anon_sym_union] = ACTIONS(1962), + [anon_sym_unsafe] = ACTIONS(1962), + [anon_sym_use] = ACTIONS(1962), + [anon_sym_while] = ACTIONS(1962), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_DOT_DOT] = ACTIONS(1960), + [anon_sym_yield] = ACTIONS(1962), + [anon_sym_move] = ACTIONS(1962), + [anon_sym_try] = ACTIONS(1962), + [sym_integer_literal] = ACTIONS(1960), + [aux_sym_string_literal_token1] = ACTIONS(1960), + [sym_char_literal] = ACTIONS(1960), + [anon_sym_true] = ACTIONS(1962), + [anon_sym_false] = ACTIONS(1962), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1962), + [sym_super] = ACTIONS(1962), + [sym_crate] = ACTIONS(1962), + [sym_metavariable] = ACTIONS(1960), + [sym_raw_string_literal] = ACTIONS(1960), + [sym_float_literal] = ACTIONS(1960), }, [547] = { [sym_line_comment] = STATE(547), [sym_block_comment] = STATE(547), - [ts_builtin_sym_end] = ACTIONS(1913), - [sym_identifier] = ACTIONS(1915), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_macro_rules_BANG] = ACTIONS(1913), - [anon_sym_LPAREN] = ACTIONS(1913), - [anon_sym_LBRACK] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1913), - [anon_sym_RBRACE] = ACTIONS(1913), - [anon_sym_STAR] = ACTIONS(1913), - [anon_sym_u8] = ACTIONS(1915), - [anon_sym_i8] = ACTIONS(1915), - [anon_sym_u16] = ACTIONS(1915), - [anon_sym_i16] = ACTIONS(1915), - [anon_sym_u32] = ACTIONS(1915), - [anon_sym_i32] = ACTIONS(1915), - [anon_sym_u64] = ACTIONS(1915), - [anon_sym_i64] = ACTIONS(1915), - [anon_sym_u128] = ACTIONS(1915), - [anon_sym_i128] = ACTIONS(1915), - [anon_sym_isize] = ACTIONS(1915), - [anon_sym_usize] = ACTIONS(1915), - [anon_sym_f32] = ACTIONS(1915), - [anon_sym_f64] = ACTIONS(1915), - [anon_sym_bool] = ACTIONS(1915), - [anon_sym_str] = ACTIONS(1915), - [anon_sym_char] = ACTIONS(1915), - [anon_sym_DASH] = ACTIONS(1913), - [anon_sym_COLON_COLON] = ACTIONS(1913), - [anon_sym_BANG] = ACTIONS(1913), - [anon_sym_AMP] = ACTIONS(1913), - [anon_sym_POUND] = ACTIONS(1913), - [anon_sym_LT] = ACTIONS(1913), - [anon_sym_PIPE] = ACTIONS(1913), - [anon_sym_SQUOTE] = ACTIONS(1915), - [anon_sym_async] = ACTIONS(1915), - [anon_sym_break] = ACTIONS(1915), - [anon_sym_const] = ACTIONS(1915), - [anon_sym_continue] = ACTIONS(1915), - [anon_sym_default] = ACTIONS(1915), - [anon_sym_enum] = ACTIONS(1915), - [anon_sym_fn] = ACTIONS(1915), - [anon_sym_for] = ACTIONS(1915), - [anon_sym_if] = ACTIONS(1915), - [anon_sym_impl] = ACTIONS(1915), - [anon_sym_let] = ACTIONS(1915), - [anon_sym_loop] = ACTIONS(1915), - [anon_sym_match] = ACTIONS(1915), - [anon_sym_mod] = ACTIONS(1915), - [anon_sym_pub] = ACTIONS(1915), - [anon_sym_return] = ACTIONS(1915), - [anon_sym_static] = ACTIONS(1915), - [anon_sym_struct] = ACTIONS(1915), - [anon_sym_trait] = ACTIONS(1915), - [anon_sym_type] = ACTIONS(1915), - [anon_sym_union] = ACTIONS(1915), - [anon_sym_unsafe] = ACTIONS(1915), - [anon_sym_use] = ACTIONS(1915), - [anon_sym_while] = ACTIONS(1915), - [anon_sym_extern] = ACTIONS(1915), - [anon_sym_DOT_DOT] = ACTIONS(1913), - [anon_sym_yield] = ACTIONS(1915), - [anon_sym_move] = ACTIONS(1915), - [anon_sym_try] = ACTIONS(1915), - [sym_integer_literal] = ACTIONS(1913), - [aux_sym_string_literal_token1] = ACTIONS(1913), - [sym_char_literal] = ACTIONS(1913), - [anon_sym_true] = ACTIONS(1915), - [anon_sym_false] = ACTIONS(1915), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1915), - [sym_super] = ACTIONS(1915), - [sym_crate] = ACTIONS(1915), - [sym_metavariable] = ACTIONS(1913), - [sym_raw_string_literal] = ACTIONS(1913), - [sym_float_literal] = ACTIONS(1913), + [ts_builtin_sym_end] = ACTIONS(1964), + [sym_identifier] = ACTIONS(1966), + [anon_sym_SEMI] = ACTIONS(1964), + [anon_sym_macro_rules_BANG] = ACTIONS(1964), + [anon_sym_LPAREN] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACE] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1964), + [anon_sym_STAR] = ACTIONS(1964), + [anon_sym_u8] = ACTIONS(1966), + [anon_sym_i8] = ACTIONS(1966), + [anon_sym_u16] = ACTIONS(1966), + [anon_sym_i16] = ACTIONS(1966), + [anon_sym_u32] = ACTIONS(1966), + [anon_sym_i32] = ACTIONS(1966), + [anon_sym_u64] = ACTIONS(1966), + [anon_sym_i64] = ACTIONS(1966), + [anon_sym_u128] = ACTIONS(1966), + [anon_sym_i128] = ACTIONS(1966), + [anon_sym_isize] = ACTIONS(1966), + [anon_sym_usize] = ACTIONS(1966), + [anon_sym_f32] = ACTIONS(1966), + [anon_sym_f64] = ACTIONS(1966), + [anon_sym_bool] = ACTIONS(1966), + [anon_sym_str] = ACTIONS(1966), + [anon_sym_char] = ACTIONS(1966), + [anon_sym_DASH] = ACTIONS(1964), + [anon_sym_COLON_COLON] = ACTIONS(1964), + [anon_sym_BANG] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(1964), + [anon_sym_LT] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(1964), + [anon_sym_SQUOTE] = ACTIONS(1966), + [anon_sym_async] = ACTIONS(1966), + [anon_sym_break] = ACTIONS(1966), + [anon_sym_const] = ACTIONS(1966), + [anon_sym_continue] = ACTIONS(1966), + [anon_sym_default] = ACTIONS(1966), + [anon_sym_enum] = ACTIONS(1966), + [anon_sym_fn] = ACTIONS(1966), + [anon_sym_for] = ACTIONS(1966), + [anon_sym_if] = ACTIONS(1966), + [anon_sym_impl] = ACTIONS(1966), + [anon_sym_let] = ACTIONS(1966), + [anon_sym_loop] = ACTIONS(1966), + [anon_sym_match] = ACTIONS(1966), + [anon_sym_mod] = ACTIONS(1966), + [anon_sym_pub] = ACTIONS(1966), + [anon_sym_return] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1966), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_trait] = ACTIONS(1966), + [anon_sym_type] = ACTIONS(1966), + [anon_sym_union] = ACTIONS(1966), + [anon_sym_unsafe] = ACTIONS(1966), + [anon_sym_use] = ACTIONS(1966), + [anon_sym_while] = ACTIONS(1966), + [anon_sym_extern] = ACTIONS(1966), + [anon_sym_DOT_DOT] = ACTIONS(1964), + [anon_sym_yield] = ACTIONS(1966), + [anon_sym_move] = ACTIONS(1966), + [anon_sym_try] = ACTIONS(1966), + [sym_integer_literal] = ACTIONS(1964), + [aux_sym_string_literal_token1] = ACTIONS(1964), + [sym_char_literal] = ACTIONS(1964), + [anon_sym_true] = ACTIONS(1966), + [anon_sym_false] = ACTIONS(1966), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1966), + [sym_super] = ACTIONS(1966), + [sym_crate] = ACTIONS(1966), + [sym_metavariable] = ACTIONS(1964), + [sym_raw_string_literal] = ACTIONS(1964), + [sym_float_literal] = ACTIONS(1964), }, [548] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [ts_builtin_sym_end] = ACTIONS(1917), - [sym_identifier] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_macro_rules_BANG] = ACTIONS(1917), - [anon_sym_LPAREN] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1917), - [anon_sym_LBRACE] = ACTIONS(1917), - [anon_sym_RBRACE] = ACTIONS(1917), - [anon_sym_STAR] = ACTIONS(1917), - [anon_sym_u8] = ACTIONS(1919), - [anon_sym_i8] = ACTIONS(1919), - [anon_sym_u16] = ACTIONS(1919), - [anon_sym_i16] = ACTIONS(1919), - [anon_sym_u32] = ACTIONS(1919), - [anon_sym_i32] = ACTIONS(1919), - [anon_sym_u64] = ACTIONS(1919), - [anon_sym_i64] = ACTIONS(1919), - [anon_sym_u128] = ACTIONS(1919), - [anon_sym_i128] = ACTIONS(1919), - [anon_sym_isize] = ACTIONS(1919), - [anon_sym_usize] = ACTIONS(1919), - [anon_sym_f32] = ACTIONS(1919), - [anon_sym_f64] = ACTIONS(1919), - [anon_sym_bool] = ACTIONS(1919), - [anon_sym_str] = ACTIONS(1919), - [anon_sym_char] = ACTIONS(1919), - [anon_sym_DASH] = ACTIONS(1917), - [anon_sym_COLON_COLON] = ACTIONS(1917), - [anon_sym_BANG] = ACTIONS(1917), - [anon_sym_AMP] = ACTIONS(1917), - [anon_sym_POUND] = ACTIONS(1917), - [anon_sym_LT] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_SQUOTE] = ACTIONS(1919), - [anon_sym_async] = ACTIONS(1919), - [anon_sym_break] = ACTIONS(1919), - [anon_sym_const] = ACTIONS(1919), - [anon_sym_continue] = ACTIONS(1919), - [anon_sym_default] = ACTIONS(1919), - [anon_sym_enum] = ACTIONS(1919), - [anon_sym_fn] = ACTIONS(1919), - [anon_sym_for] = ACTIONS(1919), - [anon_sym_if] = ACTIONS(1919), - [anon_sym_impl] = ACTIONS(1919), - [anon_sym_let] = ACTIONS(1919), - [anon_sym_loop] = ACTIONS(1919), - [anon_sym_match] = ACTIONS(1919), - [anon_sym_mod] = ACTIONS(1919), - [anon_sym_pub] = ACTIONS(1919), - [anon_sym_return] = ACTIONS(1919), - [anon_sym_static] = ACTIONS(1919), - [anon_sym_struct] = ACTIONS(1919), - [anon_sym_trait] = ACTIONS(1919), - [anon_sym_type] = ACTIONS(1919), - [anon_sym_union] = ACTIONS(1919), - [anon_sym_unsafe] = ACTIONS(1919), - [anon_sym_use] = ACTIONS(1919), - [anon_sym_while] = ACTIONS(1919), - [anon_sym_extern] = ACTIONS(1919), - [anon_sym_DOT_DOT] = ACTIONS(1917), - [anon_sym_yield] = ACTIONS(1919), - [anon_sym_move] = ACTIONS(1919), - [anon_sym_try] = ACTIONS(1919), - [sym_integer_literal] = ACTIONS(1917), - [aux_sym_string_literal_token1] = ACTIONS(1917), - [sym_char_literal] = ACTIONS(1917), - [anon_sym_true] = ACTIONS(1919), - [anon_sym_false] = ACTIONS(1919), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1919), - [sym_super] = ACTIONS(1919), - [sym_crate] = ACTIONS(1919), - [sym_metavariable] = ACTIONS(1917), - [sym_raw_string_literal] = ACTIONS(1917), - [sym_float_literal] = ACTIONS(1917), + [ts_builtin_sym_end] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym_macro_rules_BANG] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1968), + [anon_sym_u8] = ACTIONS(1970), + [anon_sym_i8] = ACTIONS(1970), + [anon_sym_u16] = ACTIONS(1970), + [anon_sym_i16] = ACTIONS(1970), + [anon_sym_u32] = ACTIONS(1970), + [anon_sym_i32] = ACTIONS(1970), + [anon_sym_u64] = ACTIONS(1970), + [anon_sym_i64] = ACTIONS(1970), + [anon_sym_u128] = ACTIONS(1970), + [anon_sym_i128] = ACTIONS(1970), + [anon_sym_isize] = ACTIONS(1970), + [anon_sym_usize] = ACTIONS(1970), + [anon_sym_f32] = ACTIONS(1970), + [anon_sym_f64] = ACTIONS(1970), + [anon_sym_bool] = ACTIONS(1970), + [anon_sym_str] = ACTIONS(1970), + [anon_sym_char] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1968), + [anon_sym_COLON_COLON] = ACTIONS(1968), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1968), + [anon_sym_PIPE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1970), + [anon_sym_async] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [anon_sym_fn] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_impl] = ACTIONS(1970), + [anon_sym_let] = ACTIONS(1970), + [anon_sym_loop] = ACTIONS(1970), + [anon_sym_match] = ACTIONS(1970), + [anon_sym_mod] = ACTIONS(1970), + [anon_sym_pub] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_struct] = ACTIONS(1970), + [anon_sym_trait] = ACTIONS(1970), + [anon_sym_type] = ACTIONS(1970), + [anon_sym_union] = ACTIONS(1970), + [anon_sym_unsafe] = ACTIONS(1970), + [anon_sym_use] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_extern] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_yield] = ACTIONS(1970), + [anon_sym_move] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1970), + [sym_integer_literal] = ACTIONS(1968), + [aux_sym_string_literal_token1] = ACTIONS(1968), + [sym_char_literal] = ACTIONS(1968), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1970), + [sym_super] = ACTIONS(1970), + [sym_crate] = ACTIONS(1970), + [sym_metavariable] = ACTIONS(1968), + [sym_raw_string_literal] = ACTIONS(1968), + [sym_float_literal] = ACTIONS(1968), }, [549] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [ts_builtin_sym_end] = ACTIONS(1921), - [sym_identifier] = ACTIONS(1923), - [anon_sym_SEMI] = ACTIONS(1921), - [anon_sym_macro_rules_BANG] = ACTIONS(1921), - [anon_sym_LPAREN] = ACTIONS(1921), - [anon_sym_LBRACK] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1921), - [anon_sym_RBRACE] = ACTIONS(1921), - [anon_sym_STAR] = ACTIONS(1921), - [anon_sym_u8] = ACTIONS(1923), - [anon_sym_i8] = ACTIONS(1923), - [anon_sym_u16] = ACTIONS(1923), - [anon_sym_i16] = ACTIONS(1923), - [anon_sym_u32] = ACTIONS(1923), - [anon_sym_i32] = ACTIONS(1923), - [anon_sym_u64] = ACTIONS(1923), - [anon_sym_i64] = ACTIONS(1923), - [anon_sym_u128] = ACTIONS(1923), - [anon_sym_i128] = ACTIONS(1923), - [anon_sym_isize] = ACTIONS(1923), - [anon_sym_usize] = ACTIONS(1923), - [anon_sym_f32] = ACTIONS(1923), - [anon_sym_f64] = ACTIONS(1923), - [anon_sym_bool] = ACTIONS(1923), - [anon_sym_str] = ACTIONS(1923), - [anon_sym_char] = ACTIONS(1923), - [anon_sym_DASH] = ACTIONS(1921), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_BANG] = ACTIONS(1921), - [anon_sym_AMP] = ACTIONS(1921), - [anon_sym_POUND] = ACTIONS(1921), - [anon_sym_LT] = ACTIONS(1921), - [anon_sym_PIPE] = ACTIONS(1921), - [anon_sym_SQUOTE] = ACTIONS(1923), - [anon_sym_async] = ACTIONS(1923), - [anon_sym_break] = ACTIONS(1923), - [anon_sym_const] = ACTIONS(1923), - [anon_sym_continue] = ACTIONS(1923), - [anon_sym_default] = ACTIONS(1923), - [anon_sym_enum] = ACTIONS(1923), - [anon_sym_fn] = ACTIONS(1923), - [anon_sym_for] = ACTIONS(1923), - [anon_sym_if] = ACTIONS(1923), - [anon_sym_impl] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1923), - [anon_sym_loop] = ACTIONS(1923), - [anon_sym_match] = ACTIONS(1923), - [anon_sym_mod] = ACTIONS(1923), - [anon_sym_pub] = ACTIONS(1923), - [anon_sym_return] = ACTIONS(1923), - [anon_sym_static] = ACTIONS(1923), - [anon_sym_struct] = ACTIONS(1923), - [anon_sym_trait] = ACTIONS(1923), - [anon_sym_type] = ACTIONS(1923), - [anon_sym_union] = ACTIONS(1923), - [anon_sym_unsafe] = ACTIONS(1923), - [anon_sym_use] = ACTIONS(1923), - [anon_sym_while] = ACTIONS(1923), - [anon_sym_extern] = ACTIONS(1923), - [anon_sym_DOT_DOT] = ACTIONS(1921), - [anon_sym_yield] = ACTIONS(1923), - [anon_sym_move] = ACTIONS(1923), - [anon_sym_try] = ACTIONS(1923), - [sym_integer_literal] = ACTIONS(1921), - [aux_sym_string_literal_token1] = ACTIONS(1921), - [sym_char_literal] = ACTIONS(1921), - [anon_sym_true] = ACTIONS(1923), - [anon_sym_false] = ACTIONS(1923), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1923), - [sym_super] = ACTIONS(1923), - [sym_crate] = ACTIONS(1923), - [sym_metavariable] = ACTIONS(1921), - [sym_raw_string_literal] = ACTIONS(1921), - [sym_float_literal] = ACTIONS(1921), + [ts_builtin_sym_end] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_macro_rules_BANG] = ACTIONS(1972), + [anon_sym_LPAREN] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_u8] = ACTIONS(1974), + [anon_sym_i8] = ACTIONS(1974), + [anon_sym_u16] = ACTIONS(1974), + [anon_sym_i16] = ACTIONS(1974), + [anon_sym_u32] = ACTIONS(1974), + [anon_sym_i32] = ACTIONS(1974), + [anon_sym_u64] = ACTIONS(1974), + [anon_sym_i64] = ACTIONS(1974), + [anon_sym_u128] = ACTIONS(1974), + [anon_sym_i128] = ACTIONS(1974), + [anon_sym_isize] = ACTIONS(1974), + [anon_sym_usize] = ACTIONS(1974), + [anon_sym_f32] = ACTIONS(1974), + [anon_sym_f64] = ACTIONS(1974), + [anon_sym_bool] = ACTIONS(1974), + [anon_sym_str] = ACTIONS(1974), + [anon_sym_char] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1972), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_POUND] = ACTIONS(1972), + [anon_sym_LT] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_SQUOTE] = ACTIONS(1974), + [anon_sym_async] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_fn] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_impl] = ACTIONS(1974), + [anon_sym_let] = ACTIONS(1974), + [anon_sym_loop] = ACTIONS(1974), + [anon_sym_match] = ACTIONS(1974), + [anon_sym_mod] = ACTIONS(1974), + [anon_sym_pub] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_trait] = ACTIONS(1974), + [anon_sym_type] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_unsafe] = ACTIONS(1974), + [anon_sym_use] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym_DOT_DOT] = ACTIONS(1972), + [anon_sym_yield] = ACTIONS(1974), + [anon_sym_move] = ACTIONS(1974), + [anon_sym_try] = ACTIONS(1974), + [sym_integer_literal] = ACTIONS(1972), + [aux_sym_string_literal_token1] = ACTIONS(1972), + [sym_char_literal] = ACTIONS(1972), + [anon_sym_true] = ACTIONS(1974), + [anon_sym_false] = ACTIONS(1974), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1974), + [sym_super] = ACTIONS(1974), + [sym_crate] = ACTIONS(1974), + [sym_metavariable] = ACTIONS(1972), + [sym_raw_string_literal] = ACTIONS(1972), + [sym_float_literal] = ACTIONS(1972), }, [550] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [ts_builtin_sym_end] = ACTIONS(1925), - [sym_identifier] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1925), - [anon_sym_macro_rules_BANG] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_LBRACK] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_STAR] = ACTIONS(1925), - [anon_sym_u8] = ACTIONS(1927), - [anon_sym_i8] = ACTIONS(1927), - [anon_sym_u16] = ACTIONS(1927), - [anon_sym_i16] = ACTIONS(1927), - [anon_sym_u32] = ACTIONS(1927), - [anon_sym_i32] = ACTIONS(1927), - [anon_sym_u64] = ACTIONS(1927), - [anon_sym_i64] = ACTIONS(1927), - [anon_sym_u128] = ACTIONS(1927), - [anon_sym_i128] = ACTIONS(1927), - [anon_sym_isize] = ACTIONS(1927), - [anon_sym_usize] = ACTIONS(1927), - [anon_sym_f32] = ACTIONS(1927), - [anon_sym_f64] = ACTIONS(1927), - [anon_sym_bool] = ACTIONS(1927), - [anon_sym_str] = ACTIONS(1927), - [anon_sym_char] = ACTIONS(1927), - [anon_sym_DASH] = ACTIONS(1925), - [anon_sym_COLON_COLON] = ACTIONS(1925), - [anon_sym_BANG] = ACTIONS(1925), - [anon_sym_AMP] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(1925), - [anon_sym_LT] = ACTIONS(1925), - [anon_sym_PIPE] = ACTIONS(1925), - [anon_sym_SQUOTE] = ACTIONS(1927), - [anon_sym_async] = ACTIONS(1927), - [anon_sym_break] = ACTIONS(1927), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_continue] = ACTIONS(1927), - [anon_sym_default] = ACTIONS(1927), - [anon_sym_enum] = ACTIONS(1927), - [anon_sym_fn] = ACTIONS(1927), - [anon_sym_for] = ACTIONS(1927), - [anon_sym_if] = ACTIONS(1927), - [anon_sym_impl] = ACTIONS(1927), - [anon_sym_let] = ACTIONS(1927), - [anon_sym_loop] = ACTIONS(1927), - [anon_sym_match] = ACTIONS(1927), - [anon_sym_mod] = ACTIONS(1927), - [anon_sym_pub] = ACTIONS(1927), - [anon_sym_return] = ACTIONS(1927), - [anon_sym_static] = ACTIONS(1927), - [anon_sym_struct] = ACTIONS(1927), - [anon_sym_trait] = ACTIONS(1927), - [anon_sym_type] = ACTIONS(1927), - [anon_sym_union] = ACTIONS(1927), - [anon_sym_unsafe] = ACTIONS(1927), - [anon_sym_use] = ACTIONS(1927), - [anon_sym_while] = ACTIONS(1927), - [anon_sym_extern] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_yield] = ACTIONS(1927), - [anon_sym_move] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1927), - [sym_integer_literal] = ACTIONS(1925), - [aux_sym_string_literal_token1] = ACTIONS(1925), - [sym_char_literal] = ACTIONS(1925), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1927), - [sym_super] = ACTIONS(1927), - [sym_crate] = ACTIONS(1927), - [sym_metavariable] = ACTIONS(1925), - [sym_raw_string_literal] = ACTIONS(1925), - [sym_float_literal] = ACTIONS(1925), + [ts_builtin_sym_end] = ACTIONS(1976), + [sym_identifier] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1976), + [anon_sym_macro_rules_BANG] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_u8] = ACTIONS(1978), + [anon_sym_i8] = ACTIONS(1978), + [anon_sym_u16] = ACTIONS(1978), + [anon_sym_i16] = ACTIONS(1978), + [anon_sym_u32] = ACTIONS(1978), + [anon_sym_i32] = ACTIONS(1978), + [anon_sym_u64] = ACTIONS(1978), + [anon_sym_i64] = ACTIONS(1978), + [anon_sym_u128] = ACTIONS(1978), + [anon_sym_i128] = ACTIONS(1978), + [anon_sym_isize] = ACTIONS(1978), + [anon_sym_usize] = ACTIONS(1978), + [anon_sym_f32] = ACTIONS(1978), + [anon_sym_f64] = ACTIONS(1978), + [anon_sym_bool] = ACTIONS(1978), + [anon_sym_str] = ACTIONS(1978), + [anon_sym_char] = ACTIONS(1978), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_COLON_COLON] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(1976), + [anon_sym_LT] = ACTIONS(1976), + [anon_sym_PIPE] = ACTIONS(1976), + [anon_sym_SQUOTE] = ACTIONS(1978), + [anon_sym_async] = ACTIONS(1978), + [anon_sym_break] = ACTIONS(1978), + [anon_sym_const] = ACTIONS(1978), + [anon_sym_continue] = ACTIONS(1978), + [anon_sym_default] = ACTIONS(1978), + [anon_sym_enum] = ACTIONS(1978), + [anon_sym_fn] = ACTIONS(1978), + [anon_sym_for] = ACTIONS(1978), + [anon_sym_if] = ACTIONS(1978), + [anon_sym_impl] = ACTIONS(1978), + [anon_sym_let] = ACTIONS(1978), + [anon_sym_loop] = ACTIONS(1978), + [anon_sym_match] = ACTIONS(1978), + [anon_sym_mod] = ACTIONS(1978), + [anon_sym_pub] = ACTIONS(1978), + [anon_sym_return] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1978), + [anon_sym_struct] = ACTIONS(1978), + [anon_sym_trait] = ACTIONS(1978), + [anon_sym_type] = ACTIONS(1978), + [anon_sym_union] = ACTIONS(1978), + [anon_sym_unsafe] = ACTIONS(1978), + [anon_sym_use] = ACTIONS(1978), + [anon_sym_while] = ACTIONS(1978), + [anon_sym_extern] = ACTIONS(1978), + [anon_sym_DOT_DOT] = ACTIONS(1976), + [anon_sym_yield] = ACTIONS(1978), + [anon_sym_move] = ACTIONS(1978), + [anon_sym_try] = ACTIONS(1978), + [sym_integer_literal] = ACTIONS(1976), + [aux_sym_string_literal_token1] = ACTIONS(1976), + [sym_char_literal] = ACTIONS(1976), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1978), + [sym_super] = ACTIONS(1978), + [sym_crate] = ACTIONS(1978), + [sym_metavariable] = ACTIONS(1976), + [sym_raw_string_literal] = ACTIONS(1976), + [sym_float_literal] = ACTIONS(1976), }, [551] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [ts_builtin_sym_end] = ACTIONS(1929), - [sym_identifier] = ACTIONS(1931), - [anon_sym_SEMI] = ACTIONS(1929), - [anon_sym_macro_rules_BANG] = ACTIONS(1929), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_LBRACK] = ACTIONS(1929), - [anon_sym_LBRACE] = ACTIONS(1929), - [anon_sym_RBRACE] = ACTIONS(1929), - [anon_sym_STAR] = ACTIONS(1929), - [anon_sym_u8] = ACTIONS(1931), - [anon_sym_i8] = ACTIONS(1931), - [anon_sym_u16] = ACTIONS(1931), - [anon_sym_i16] = ACTIONS(1931), - [anon_sym_u32] = ACTIONS(1931), - [anon_sym_i32] = ACTIONS(1931), - [anon_sym_u64] = ACTIONS(1931), - [anon_sym_i64] = ACTIONS(1931), - [anon_sym_u128] = ACTIONS(1931), - [anon_sym_i128] = ACTIONS(1931), - [anon_sym_isize] = ACTIONS(1931), - [anon_sym_usize] = ACTIONS(1931), - [anon_sym_f32] = ACTIONS(1931), - [anon_sym_f64] = ACTIONS(1931), - [anon_sym_bool] = ACTIONS(1931), - [anon_sym_str] = ACTIONS(1931), - [anon_sym_char] = ACTIONS(1931), - [anon_sym_DASH] = ACTIONS(1929), - [anon_sym_COLON_COLON] = ACTIONS(1929), - [anon_sym_BANG] = ACTIONS(1929), - [anon_sym_AMP] = ACTIONS(1929), - [anon_sym_POUND] = ACTIONS(1929), - [anon_sym_LT] = ACTIONS(1929), - [anon_sym_PIPE] = ACTIONS(1929), - [anon_sym_SQUOTE] = ACTIONS(1931), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_break] = ACTIONS(1931), - [anon_sym_const] = ACTIONS(1931), - [anon_sym_continue] = ACTIONS(1931), - [anon_sym_default] = ACTIONS(1931), - [anon_sym_enum] = ACTIONS(1931), - [anon_sym_fn] = ACTIONS(1931), - [anon_sym_for] = ACTIONS(1931), - [anon_sym_if] = ACTIONS(1931), - [anon_sym_impl] = ACTIONS(1931), - [anon_sym_let] = ACTIONS(1931), - [anon_sym_loop] = ACTIONS(1931), - [anon_sym_match] = ACTIONS(1931), - [anon_sym_mod] = ACTIONS(1931), - [anon_sym_pub] = ACTIONS(1931), - [anon_sym_return] = ACTIONS(1931), - [anon_sym_static] = ACTIONS(1931), - [anon_sym_struct] = ACTIONS(1931), - [anon_sym_trait] = ACTIONS(1931), - [anon_sym_type] = ACTIONS(1931), - [anon_sym_union] = ACTIONS(1931), - [anon_sym_unsafe] = ACTIONS(1931), - [anon_sym_use] = ACTIONS(1931), - [anon_sym_while] = ACTIONS(1931), - [anon_sym_extern] = ACTIONS(1931), - [anon_sym_DOT_DOT] = ACTIONS(1929), - [anon_sym_yield] = ACTIONS(1931), - [anon_sym_move] = ACTIONS(1931), - [anon_sym_try] = ACTIONS(1931), - [sym_integer_literal] = ACTIONS(1929), - [aux_sym_string_literal_token1] = ACTIONS(1929), - [sym_char_literal] = ACTIONS(1929), - [anon_sym_true] = ACTIONS(1931), - [anon_sym_false] = ACTIONS(1931), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1931), - [sym_super] = ACTIONS(1931), - [sym_crate] = ACTIONS(1931), - [sym_metavariable] = ACTIONS(1929), - [sym_raw_string_literal] = ACTIONS(1929), - [sym_float_literal] = ACTIONS(1929), + [ts_builtin_sym_end] = ACTIONS(1980), + [sym_identifier] = ACTIONS(1982), + [anon_sym_SEMI] = ACTIONS(1980), + [anon_sym_macro_rules_BANG] = ACTIONS(1980), + [anon_sym_LPAREN] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1980), + [anon_sym_RBRACE] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1980), + [anon_sym_u8] = ACTIONS(1982), + [anon_sym_i8] = ACTIONS(1982), + [anon_sym_u16] = ACTIONS(1982), + [anon_sym_i16] = ACTIONS(1982), + [anon_sym_u32] = ACTIONS(1982), + [anon_sym_i32] = ACTIONS(1982), + [anon_sym_u64] = ACTIONS(1982), + [anon_sym_i64] = ACTIONS(1982), + [anon_sym_u128] = ACTIONS(1982), + [anon_sym_i128] = ACTIONS(1982), + [anon_sym_isize] = ACTIONS(1982), + [anon_sym_usize] = ACTIONS(1982), + [anon_sym_f32] = ACTIONS(1982), + [anon_sym_f64] = ACTIONS(1982), + [anon_sym_bool] = ACTIONS(1982), + [anon_sym_str] = ACTIONS(1982), + [anon_sym_char] = ACTIONS(1982), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_COLON_COLON] = ACTIONS(1980), + [anon_sym_BANG] = ACTIONS(1980), + [anon_sym_AMP] = ACTIONS(1980), + [anon_sym_POUND] = ACTIONS(1980), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_SQUOTE] = ACTIONS(1982), + [anon_sym_async] = ACTIONS(1982), + [anon_sym_break] = ACTIONS(1982), + [anon_sym_const] = ACTIONS(1982), + [anon_sym_continue] = ACTIONS(1982), + [anon_sym_default] = ACTIONS(1982), + [anon_sym_enum] = ACTIONS(1982), + [anon_sym_fn] = ACTIONS(1982), + [anon_sym_for] = ACTIONS(1982), + [anon_sym_if] = ACTIONS(1982), + [anon_sym_impl] = ACTIONS(1982), + [anon_sym_let] = ACTIONS(1982), + [anon_sym_loop] = ACTIONS(1982), + [anon_sym_match] = ACTIONS(1982), + [anon_sym_mod] = ACTIONS(1982), + [anon_sym_pub] = ACTIONS(1982), + [anon_sym_return] = ACTIONS(1982), + [anon_sym_static] = ACTIONS(1982), + [anon_sym_struct] = ACTIONS(1982), + [anon_sym_trait] = ACTIONS(1982), + [anon_sym_type] = ACTIONS(1982), + [anon_sym_union] = ACTIONS(1982), + [anon_sym_unsafe] = ACTIONS(1982), + [anon_sym_use] = ACTIONS(1982), + [anon_sym_while] = ACTIONS(1982), + [anon_sym_extern] = ACTIONS(1982), + [anon_sym_DOT_DOT] = ACTIONS(1980), + [anon_sym_yield] = ACTIONS(1982), + [anon_sym_move] = ACTIONS(1982), + [anon_sym_try] = ACTIONS(1982), + [sym_integer_literal] = ACTIONS(1980), + [aux_sym_string_literal_token1] = ACTIONS(1980), + [sym_char_literal] = ACTIONS(1980), + [anon_sym_true] = ACTIONS(1982), + [anon_sym_false] = ACTIONS(1982), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1982), + [sym_super] = ACTIONS(1982), + [sym_crate] = ACTIONS(1982), + [sym_metavariable] = ACTIONS(1980), + [sym_raw_string_literal] = ACTIONS(1980), + [sym_float_literal] = ACTIONS(1980), }, [552] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [ts_builtin_sym_end] = ACTIONS(1933), - [sym_identifier] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1933), - [anon_sym_macro_rules_BANG] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_LBRACK] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_STAR] = ACTIONS(1933), - [anon_sym_u8] = ACTIONS(1935), - [anon_sym_i8] = ACTIONS(1935), - [anon_sym_u16] = ACTIONS(1935), - [anon_sym_i16] = ACTIONS(1935), - [anon_sym_u32] = ACTIONS(1935), - [anon_sym_i32] = ACTIONS(1935), - [anon_sym_u64] = ACTIONS(1935), - [anon_sym_i64] = ACTIONS(1935), - [anon_sym_u128] = ACTIONS(1935), - [anon_sym_i128] = ACTIONS(1935), - [anon_sym_isize] = ACTIONS(1935), - [anon_sym_usize] = ACTIONS(1935), - [anon_sym_f32] = ACTIONS(1935), - [anon_sym_f64] = ACTIONS(1935), - [anon_sym_bool] = ACTIONS(1935), - [anon_sym_str] = ACTIONS(1935), - [anon_sym_char] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1933), - [anon_sym_COLON_COLON] = ACTIONS(1933), - [anon_sym_BANG] = ACTIONS(1933), - [anon_sym_AMP] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(1933), - [anon_sym_LT] = ACTIONS(1933), - [anon_sym_PIPE] = ACTIONS(1933), - [anon_sym_SQUOTE] = ACTIONS(1935), - [anon_sym_async] = ACTIONS(1935), - [anon_sym_break] = ACTIONS(1935), - [anon_sym_const] = ACTIONS(1935), - [anon_sym_continue] = ACTIONS(1935), - [anon_sym_default] = ACTIONS(1935), - [anon_sym_enum] = ACTIONS(1935), - [anon_sym_fn] = ACTIONS(1935), - [anon_sym_for] = ACTIONS(1935), - [anon_sym_if] = ACTIONS(1935), - [anon_sym_impl] = ACTIONS(1935), - [anon_sym_let] = ACTIONS(1935), - [anon_sym_loop] = ACTIONS(1935), - [anon_sym_match] = ACTIONS(1935), - [anon_sym_mod] = ACTIONS(1935), - [anon_sym_pub] = ACTIONS(1935), - [anon_sym_return] = ACTIONS(1935), - [anon_sym_static] = ACTIONS(1935), - [anon_sym_struct] = ACTIONS(1935), - [anon_sym_trait] = ACTIONS(1935), - [anon_sym_type] = ACTIONS(1935), - [anon_sym_union] = ACTIONS(1935), - [anon_sym_unsafe] = ACTIONS(1935), - [anon_sym_use] = ACTIONS(1935), - [anon_sym_while] = ACTIONS(1935), - [anon_sym_extern] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_yield] = ACTIONS(1935), - [anon_sym_move] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1935), - [sym_integer_literal] = ACTIONS(1933), - [aux_sym_string_literal_token1] = ACTIONS(1933), - [sym_char_literal] = ACTIONS(1933), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1935), - [sym_super] = ACTIONS(1935), - [sym_crate] = ACTIONS(1935), - [sym_metavariable] = ACTIONS(1933), - [sym_raw_string_literal] = ACTIONS(1933), - [sym_float_literal] = ACTIONS(1933), + [ts_builtin_sym_end] = ACTIONS(1984), + [sym_identifier] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_macro_rules_BANG] = ACTIONS(1984), + [anon_sym_LPAREN] = ACTIONS(1984), + [anon_sym_LBRACK] = ACTIONS(1984), + [anon_sym_LBRACE] = ACTIONS(1984), + [anon_sym_RBRACE] = ACTIONS(1984), + [anon_sym_STAR] = ACTIONS(1984), + [anon_sym_u8] = ACTIONS(1986), + [anon_sym_i8] = ACTIONS(1986), + [anon_sym_u16] = ACTIONS(1986), + [anon_sym_i16] = ACTIONS(1986), + [anon_sym_u32] = ACTIONS(1986), + [anon_sym_i32] = ACTIONS(1986), + [anon_sym_u64] = ACTIONS(1986), + [anon_sym_i64] = ACTIONS(1986), + [anon_sym_u128] = ACTIONS(1986), + [anon_sym_i128] = ACTIONS(1986), + [anon_sym_isize] = ACTIONS(1986), + [anon_sym_usize] = ACTIONS(1986), + [anon_sym_f32] = ACTIONS(1986), + [anon_sym_f64] = ACTIONS(1986), + [anon_sym_bool] = ACTIONS(1986), + [anon_sym_str] = ACTIONS(1986), + [anon_sym_char] = ACTIONS(1986), + [anon_sym_DASH] = ACTIONS(1984), + [anon_sym_COLON_COLON] = ACTIONS(1984), + [anon_sym_BANG] = ACTIONS(1984), + [anon_sym_AMP] = ACTIONS(1984), + [anon_sym_POUND] = ACTIONS(1984), + [anon_sym_LT] = ACTIONS(1984), + [anon_sym_PIPE] = ACTIONS(1984), + [anon_sym_SQUOTE] = ACTIONS(1986), + [anon_sym_async] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_default] = ACTIONS(1986), + [anon_sym_enum] = ACTIONS(1986), + [anon_sym_fn] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_impl] = ACTIONS(1986), + [anon_sym_let] = ACTIONS(1986), + [anon_sym_loop] = ACTIONS(1986), + [anon_sym_match] = ACTIONS(1986), + [anon_sym_mod] = ACTIONS(1986), + [anon_sym_pub] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_static] = ACTIONS(1986), + [anon_sym_struct] = ACTIONS(1986), + [anon_sym_trait] = ACTIONS(1986), + [anon_sym_type] = ACTIONS(1986), + [anon_sym_union] = ACTIONS(1986), + [anon_sym_unsafe] = ACTIONS(1986), + [anon_sym_use] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_DOT_DOT] = ACTIONS(1984), + [anon_sym_yield] = ACTIONS(1986), + [anon_sym_move] = ACTIONS(1986), + [anon_sym_try] = ACTIONS(1986), + [sym_integer_literal] = ACTIONS(1984), + [aux_sym_string_literal_token1] = ACTIONS(1984), + [sym_char_literal] = ACTIONS(1984), + [anon_sym_true] = ACTIONS(1986), + [anon_sym_false] = ACTIONS(1986), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1986), + [sym_super] = ACTIONS(1986), + [sym_crate] = ACTIONS(1986), + [sym_metavariable] = ACTIONS(1984), + [sym_raw_string_literal] = ACTIONS(1984), + [sym_float_literal] = ACTIONS(1984), }, [553] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [ts_builtin_sym_end] = ACTIONS(1937), - [sym_identifier] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1937), - [anon_sym_macro_rules_BANG] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_LBRACK] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_STAR] = ACTIONS(1937), - [anon_sym_u8] = ACTIONS(1939), - [anon_sym_i8] = ACTIONS(1939), - [anon_sym_u16] = ACTIONS(1939), - [anon_sym_i16] = ACTIONS(1939), - [anon_sym_u32] = ACTIONS(1939), - [anon_sym_i32] = ACTIONS(1939), - [anon_sym_u64] = ACTIONS(1939), - [anon_sym_i64] = ACTIONS(1939), - [anon_sym_u128] = ACTIONS(1939), - [anon_sym_i128] = ACTIONS(1939), - [anon_sym_isize] = ACTIONS(1939), - [anon_sym_usize] = ACTIONS(1939), - [anon_sym_f32] = ACTIONS(1939), - [anon_sym_f64] = ACTIONS(1939), - [anon_sym_bool] = ACTIONS(1939), - [anon_sym_str] = ACTIONS(1939), - [anon_sym_char] = ACTIONS(1939), - [anon_sym_DASH] = ACTIONS(1937), - [anon_sym_COLON_COLON] = ACTIONS(1937), - [anon_sym_BANG] = ACTIONS(1937), - [anon_sym_AMP] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(1937), - [anon_sym_LT] = ACTIONS(1937), - [anon_sym_PIPE] = ACTIONS(1937), - [anon_sym_SQUOTE] = ACTIONS(1939), - [anon_sym_async] = ACTIONS(1939), - [anon_sym_break] = ACTIONS(1939), - [anon_sym_const] = ACTIONS(1939), - [anon_sym_continue] = ACTIONS(1939), - [anon_sym_default] = ACTIONS(1939), - [anon_sym_enum] = ACTIONS(1939), - [anon_sym_fn] = ACTIONS(1939), - [anon_sym_for] = ACTIONS(1939), - [anon_sym_if] = ACTIONS(1939), - [anon_sym_impl] = ACTIONS(1939), - [anon_sym_let] = ACTIONS(1939), - [anon_sym_loop] = ACTIONS(1939), - [anon_sym_match] = ACTIONS(1939), - [anon_sym_mod] = ACTIONS(1939), - [anon_sym_pub] = ACTIONS(1939), - [anon_sym_return] = ACTIONS(1939), - [anon_sym_static] = ACTIONS(1939), - [anon_sym_struct] = ACTIONS(1939), - [anon_sym_trait] = ACTIONS(1939), - [anon_sym_type] = ACTIONS(1939), - [anon_sym_union] = ACTIONS(1939), - [anon_sym_unsafe] = ACTIONS(1939), - [anon_sym_use] = ACTIONS(1939), - [anon_sym_while] = ACTIONS(1939), - [anon_sym_extern] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_yield] = ACTIONS(1939), - [anon_sym_move] = ACTIONS(1939), - [anon_sym_try] = ACTIONS(1939), - [sym_integer_literal] = ACTIONS(1937), - [aux_sym_string_literal_token1] = ACTIONS(1937), - [sym_char_literal] = ACTIONS(1937), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1939), - [sym_super] = ACTIONS(1939), - [sym_crate] = ACTIONS(1939), - [sym_metavariable] = ACTIONS(1937), - [sym_raw_string_literal] = ACTIONS(1937), - [sym_float_literal] = ACTIONS(1937), + [ts_builtin_sym_end] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_macro_rules_BANG] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_u8] = ACTIONS(1990), + [anon_sym_i8] = ACTIONS(1990), + [anon_sym_u16] = ACTIONS(1990), + [anon_sym_i16] = ACTIONS(1990), + [anon_sym_u32] = ACTIONS(1990), + [anon_sym_i32] = ACTIONS(1990), + [anon_sym_u64] = ACTIONS(1990), + [anon_sym_i64] = ACTIONS(1990), + [anon_sym_u128] = ACTIONS(1990), + [anon_sym_i128] = ACTIONS(1990), + [anon_sym_isize] = ACTIONS(1990), + [anon_sym_usize] = ACTIONS(1990), + [anon_sym_f32] = ACTIONS(1990), + [anon_sym_f64] = ACTIONS(1990), + [anon_sym_bool] = ACTIONS(1990), + [anon_sym_str] = ACTIONS(1990), + [anon_sym_char] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1988), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(1988), + [anon_sym_LT] = ACTIONS(1988), + [anon_sym_PIPE] = ACTIONS(1988), + [anon_sym_SQUOTE] = ACTIONS(1990), + [anon_sym_async] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_fn] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_impl] = ACTIONS(1990), + [anon_sym_let] = ACTIONS(1990), + [anon_sym_loop] = ACTIONS(1990), + [anon_sym_match] = ACTIONS(1990), + [anon_sym_mod] = ACTIONS(1990), + [anon_sym_pub] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_trait] = ACTIONS(1990), + [anon_sym_type] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_unsafe] = ACTIONS(1990), + [anon_sym_use] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_DOT_DOT] = ACTIONS(1988), + [anon_sym_yield] = ACTIONS(1990), + [anon_sym_move] = ACTIONS(1990), + [anon_sym_try] = ACTIONS(1990), + [sym_integer_literal] = ACTIONS(1988), + [aux_sym_string_literal_token1] = ACTIONS(1988), + [sym_char_literal] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1990), + [sym_super] = ACTIONS(1990), + [sym_crate] = ACTIONS(1990), + [sym_metavariable] = ACTIONS(1988), + [sym_raw_string_literal] = ACTIONS(1988), + [sym_float_literal] = ACTIONS(1988), }, [554] = { [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(1941), - [sym_identifier] = ACTIONS(1943), - [anon_sym_SEMI] = ACTIONS(1941), - [anon_sym_macro_rules_BANG] = ACTIONS(1941), - [anon_sym_LPAREN] = ACTIONS(1941), - [anon_sym_LBRACK] = ACTIONS(1941), - [anon_sym_LBRACE] = ACTIONS(1941), - [anon_sym_RBRACE] = ACTIONS(1941), - [anon_sym_STAR] = ACTIONS(1941), - [anon_sym_u8] = ACTIONS(1943), - [anon_sym_i8] = ACTIONS(1943), - [anon_sym_u16] = ACTIONS(1943), - [anon_sym_i16] = ACTIONS(1943), - [anon_sym_u32] = ACTIONS(1943), - [anon_sym_i32] = ACTIONS(1943), - [anon_sym_u64] = ACTIONS(1943), - [anon_sym_i64] = ACTIONS(1943), - [anon_sym_u128] = ACTIONS(1943), - [anon_sym_i128] = ACTIONS(1943), - [anon_sym_isize] = ACTIONS(1943), - [anon_sym_usize] = ACTIONS(1943), - [anon_sym_f32] = ACTIONS(1943), - [anon_sym_f64] = ACTIONS(1943), - [anon_sym_bool] = ACTIONS(1943), - [anon_sym_str] = ACTIONS(1943), - [anon_sym_char] = ACTIONS(1943), - [anon_sym_DASH] = ACTIONS(1941), - [anon_sym_COLON_COLON] = ACTIONS(1941), - [anon_sym_BANG] = ACTIONS(1941), - [anon_sym_AMP] = ACTIONS(1941), - [anon_sym_POUND] = ACTIONS(1941), - [anon_sym_LT] = ACTIONS(1941), - [anon_sym_PIPE] = ACTIONS(1941), - [anon_sym_SQUOTE] = ACTIONS(1943), - [anon_sym_async] = ACTIONS(1943), - [anon_sym_break] = ACTIONS(1943), - [anon_sym_const] = ACTIONS(1943), - [anon_sym_continue] = ACTIONS(1943), - [anon_sym_default] = ACTIONS(1943), - [anon_sym_enum] = ACTIONS(1943), - [anon_sym_fn] = ACTIONS(1943), - [anon_sym_for] = ACTIONS(1943), - [anon_sym_if] = ACTIONS(1943), - [anon_sym_impl] = ACTIONS(1943), - [anon_sym_let] = ACTIONS(1943), - [anon_sym_loop] = ACTIONS(1943), - [anon_sym_match] = ACTIONS(1943), - [anon_sym_mod] = ACTIONS(1943), - [anon_sym_pub] = ACTIONS(1943), - [anon_sym_return] = ACTIONS(1943), - [anon_sym_static] = ACTIONS(1943), - [anon_sym_struct] = ACTIONS(1943), - [anon_sym_trait] = ACTIONS(1943), - [anon_sym_type] = ACTIONS(1943), - [anon_sym_union] = ACTIONS(1943), - [anon_sym_unsafe] = ACTIONS(1943), - [anon_sym_use] = ACTIONS(1943), - [anon_sym_while] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1943), - [anon_sym_DOT_DOT] = ACTIONS(1941), - [anon_sym_yield] = ACTIONS(1943), - [anon_sym_move] = ACTIONS(1943), - [anon_sym_try] = ACTIONS(1943), - [sym_integer_literal] = ACTIONS(1941), - [aux_sym_string_literal_token1] = ACTIONS(1941), - [sym_char_literal] = ACTIONS(1941), - [anon_sym_true] = ACTIONS(1943), - [anon_sym_false] = ACTIONS(1943), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1943), - [sym_super] = ACTIONS(1943), - [sym_crate] = ACTIONS(1943), - [sym_metavariable] = ACTIONS(1941), - [sym_raw_string_literal] = ACTIONS(1941), - [sym_float_literal] = ACTIONS(1941), + [ts_builtin_sym_end] = ACTIONS(1992), + [sym_identifier] = ACTIONS(1994), + [anon_sym_SEMI] = ACTIONS(1992), + [anon_sym_macro_rules_BANG] = ACTIONS(1992), + [anon_sym_LPAREN] = ACTIONS(1992), + [anon_sym_LBRACK] = ACTIONS(1992), + [anon_sym_LBRACE] = ACTIONS(1992), + [anon_sym_RBRACE] = ACTIONS(1992), + [anon_sym_STAR] = ACTIONS(1992), + [anon_sym_u8] = ACTIONS(1994), + [anon_sym_i8] = ACTIONS(1994), + [anon_sym_u16] = ACTIONS(1994), + [anon_sym_i16] = ACTIONS(1994), + [anon_sym_u32] = ACTIONS(1994), + [anon_sym_i32] = ACTIONS(1994), + [anon_sym_u64] = ACTIONS(1994), + [anon_sym_i64] = ACTIONS(1994), + [anon_sym_u128] = ACTIONS(1994), + [anon_sym_i128] = ACTIONS(1994), + [anon_sym_isize] = ACTIONS(1994), + [anon_sym_usize] = ACTIONS(1994), + [anon_sym_f32] = ACTIONS(1994), + [anon_sym_f64] = ACTIONS(1994), + [anon_sym_bool] = ACTIONS(1994), + [anon_sym_str] = ACTIONS(1994), + [anon_sym_char] = ACTIONS(1994), + [anon_sym_DASH] = ACTIONS(1992), + [anon_sym_COLON_COLON] = ACTIONS(1992), + [anon_sym_BANG] = ACTIONS(1992), + [anon_sym_AMP] = ACTIONS(1992), + [anon_sym_POUND] = ACTIONS(1992), + [anon_sym_LT] = ACTIONS(1992), + [anon_sym_PIPE] = ACTIONS(1992), + [anon_sym_SQUOTE] = ACTIONS(1994), + [anon_sym_async] = ACTIONS(1994), + [anon_sym_break] = ACTIONS(1994), + [anon_sym_const] = ACTIONS(1994), + [anon_sym_continue] = ACTIONS(1994), + [anon_sym_default] = ACTIONS(1994), + [anon_sym_enum] = ACTIONS(1994), + [anon_sym_fn] = ACTIONS(1994), + [anon_sym_for] = ACTIONS(1994), + [anon_sym_if] = ACTIONS(1994), + [anon_sym_impl] = ACTIONS(1994), + [anon_sym_let] = ACTIONS(1994), + [anon_sym_loop] = ACTIONS(1994), + [anon_sym_match] = ACTIONS(1994), + [anon_sym_mod] = ACTIONS(1994), + [anon_sym_pub] = ACTIONS(1994), + [anon_sym_return] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1994), + [anon_sym_struct] = ACTIONS(1994), + [anon_sym_trait] = ACTIONS(1994), + [anon_sym_type] = ACTIONS(1994), + [anon_sym_union] = ACTIONS(1994), + [anon_sym_unsafe] = ACTIONS(1994), + [anon_sym_use] = ACTIONS(1994), + [anon_sym_while] = ACTIONS(1994), + [anon_sym_extern] = ACTIONS(1994), + [anon_sym_DOT_DOT] = ACTIONS(1992), + [anon_sym_yield] = ACTIONS(1994), + [anon_sym_move] = ACTIONS(1994), + [anon_sym_try] = ACTIONS(1994), + [sym_integer_literal] = ACTIONS(1992), + [aux_sym_string_literal_token1] = ACTIONS(1992), + [sym_char_literal] = ACTIONS(1992), + [anon_sym_true] = ACTIONS(1994), + [anon_sym_false] = ACTIONS(1994), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1994), + [sym_super] = ACTIONS(1994), + [sym_crate] = ACTIONS(1994), + [sym_metavariable] = ACTIONS(1992), + [sym_raw_string_literal] = ACTIONS(1992), + [sym_float_literal] = ACTIONS(1992), }, [555] = { [sym_line_comment] = STATE(555), [sym_block_comment] = STATE(555), - [ts_builtin_sym_end] = ACTIONS(1945), - [sym_identifier] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_macro_rules_BANG] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_LBRACK] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_STAR] = ACTIONS(1945), - [anon_sym_u8] = ACTIONS(1947), - [anon_sym_i8] = ACTIONS(1947), - [anon_sym_u16] = ACTIONS(1947), - [anon_sym_i16] = ACTIONS(1947), - [anon_sym_u32] = ACTIONS(1947), - [anon_sym_i32] = ACTIONS(1947), - [anon_sym_u64] = ACTIONS(1947), - [anon_sym_i64] = ACTIONS(1947), - [anon_sym_u128] = ACTIONS(1947), - [anon_sym_i128] = ACTIONS(1947), - [anon_sym_isize] = ACTIONS(1947), - [anon_sym_usize] = ACTIONS(1947), - [anon_sym_f32] = ACTIONS(1947), - [anon_sym_f64] = ACTIONS(1947), - [anon_sym_bool] = ACTIONS(1947), - [anon_sym_str] = ACTIONS(1947), - [anon_sym_char] = ACTIONS(1947), - [anon_sym_DASH] = ACTIONS(1945), - [anon_sym_COLON_COLON] = ACTIONS(1945), - [anon_sym_BANG] = ACTIONS(1945), - [anon_sym_AMP] = ACTIONS(1945), - [anon_sym_POUND] = ACTIONS(1945), - [anon_sym_LT] = ACTIONS(1945), - [anon_sym_PIPE] = ACTIONS(1945), - [anon_sym_SQUOTE] = ACTIONS(1947), - [anon_sym_async] = ACTIONS(1947), - [anon_sym_break] = ACTIONS(1947), - [anon_sym_const] = ACTIONS(1947), - [anon_sym_continue] = ACTIONS(1947), - [anon_sym_default] = ACTIONS(1947), - [anon_sym_enum] = ACTIONS(1947), - [anon_sym_fn] = ACTIONS(1947), - [anon_sym_for] = ACTIONS(1947), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_impl] = ACTIONS(1947), - [anon_sym_let] = ACTIONS(1947), - [anon_sym_loop] = ACTIONS(1947), - [anon_sym_match] = ACTIONS(1947), - [anon_sym_mod] = ACTIONS(1947), - [anon_sym_pub] = ACTIONS(1947), - [anon_sym_return] = ACTIONS(1947), - [anon_sym_static] = ACTIONS(1947), - [anon_sym_struct] = ACTIONS(1947), - [anon_sym_trait] = ACTIONS(1947), - [anon_sym_type] = ACTIONS(1947), - [anon_sym_union] = ACTIONS(1947), - [anon_sym_unsafe] = ACTIONS(1947), - [anon_sym_use] = ACTIONS(1947), - [anon_sym_while] = ACTIONS(1947), - [anon_sym_extern] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_yield] = ACTIONS(1947), - [anon_sym_move] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1947), - [sym_integer_literal] = ACTIONS(1945), - [aux_sym_string_literal_token1] = ACTIONS(1945), - [sym_char_literal] = ACTIONS(1945), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1947), - [sym_super] = ACTIONS(1947), - [sym_crate] = ACTIONS(1947), - [sym_metavariable] = ACTIONS(1945), - [sym_raw_string_literal] = ACTIONS(1945), - [sym_float_literal] = ACTIONS(1945), + [ts_builtin_sym_end] = ACTIONS(1996), + [sym_identifier] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1996), + [anon_sym_macro_rules_BANG] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1996), + [anon_sym_RBRACE] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1996), + [anon_sym_u8] = ACTIONS(1998), + [anon_sym_i8] = ACTIONS(1998), + [anon_sym_u16] = ACTIONS(1998), + [anon_sym_i16] = ACTIONS(1998), + [anon_sym_u32] = ACTIONS(1998), + [anon_sym_i32] = ACTIONS(1998), + [anon_sym_u64] = ACTIONS(1998), + [anon_sym_i64] = ACTIONS(1998), + [anon_sym_u128] = ACTIONS(1998), + [anon_sym_i128] = ACTIONS(1998), + [anon_sym_isize] = ACTIONS(1998), + [anon_sym_usize] = ACTIONS(1998), + [anon_sym_f32] = ACTIONS(1998), + [anon_sym_f64] = ACTIONS(1998), + [anon_sym_bool] = ACTIONS(1998), + [anon_sym_str] = ACTIONS(1998), + [anon_sym_char] = ACTIONS(1998), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_COLON_COLON] = ACTIONS(1996), + [anon_sym_BANG] = ACTIONS(1996), + [anon_sym_AMP] = ACTIONS(1996), + [anon_sym_POUND] = ACTIONS(1996), + [anon_sym_LT] = ACTIONS(1996), + [anon_sym_PIPE] = ACTIONS(1996), + [anon_sym_SQUOTE] = ACTIONS(1998), + [anon_sym_async] = ACTIONS(1998), + [anon_sym_break] = ACTIONS(1998), + [anon_sym_const] = ACTIONS(1998), + [anon_sym_continue] = ACTIONS(1998), + [anon_sym_default] = ACTIONS(1998), + [anon_sym_enum] = ACTIONS(1998), + [anon_sym_fn] = ACTIONS(1998), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_if] = ACTIONS(1998), + [anon_sym_impl] = ACTIONS(1998), + [anon_sym_let] = ACTIONS(1998), + [anon_sym_loop] = ACTIONS(1998), + [anon_sym_match] = ACTIONS(1998), + [anon_sym_mod] = ACTIONS(1998), + [anon_sym_pub] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(1998), + [anon_sym_static] = ACTIONS(1998), + [anon_sym_struct] = ACTIONS(1998), + [anon_sym_trait] = ACTIONS(1998), + [anon_sym_type] = ACTIONS(1998), + [anon_sym_union] = ACTIONS(1998), + [anon_sym_unsafe] = ACTIONS(1998), + [anon_sym_use] = ACTIONS(1998), + [anon_sym_while] = ACTIONS(1998), + [anon_sym_extern] = ACTIONS(1998), + [anon_sym_DOT_DOT] = ACTIONS(1996), + [anon_sym_yield] = ACTIONS(1998), + [anon_sym_move] = ACTIONS(1998), + [anon_sym_try] = ACTIONS(1998), + [sym_integer_literal] = ACTIONS(1996), + [aux_sym_string_literal_token1] = ACTIONS(1996), + [sym_char_literal] = ACTIONS(1996), + [anon_sym_true] = ACTIONS(1998), + [anon_sym_false] = ACTIONS(1998), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1998), + [sym_super] = ACTIONS(1998), + [sym_crate] = ACTIONS(1998), + [sym_metavariable] = ACTIONS(1996), + [sym_raw_string_literal] = ACTIONS(1996), + [sym_float_literal] = ACTIONS(1996), }, [556] = { [sym_line_comment] = STATE(556), [sym_block_comment] = STATE(556), - [ts_builtin_sym_end] = ACTIONS(1949), - [sym_identifier] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1949), - [anon_sym_macro_rules_BANG] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_LBRACK] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_STAR] = ACTIONS(1949), - [anon_sym_u8] = ACTIONS(1951), - [anon_sym_i8] = ACTIONS(1951), - [anon_sym_u16] = ACTIONS(1951), - [anon_sym_i16] = ACTIONS(1951), - [anon_sym_u32] = ACTIONS(1951), - [anon_sym_i32] = ACTIONS(1951), - [anon_sym_u64] = ACTIONS(1951), - [anon_sym_i64] = ACTIONS(1951), - [anon_sym_u128] = ACTIONS(1951), - [anon_sym_i128] = ACTIONS(1951), - [anon_sym_isize] = ACTIONS(1951), - [anon_sym_usize] = ACTIONS(1951), - [anon_sym_f32] = ACTIONS(1951), - [anon_sym_f64] = ACTIONS(1951), - [anon_sym_bool] = ACTIONS(1951), - [anon_sym_str] = ACTIONS(1951), - [anon_sym_char] = ACTIONS(1951), - [anon_sym_DASH] = ACTIONS(1949), - [anon_sym_COLON_COLON] = ACTIONS(1949), - [anon_sym_BANG] = ACTIONS(1949), - [anon_sym_AMP] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(1949), - [anon_sym_LT] = ACTIONS(1949), - [anon_sym_PIPE] = ACTIONS(1949), - [anon_sym_SQUOTE] = ACTIONS(1951), - [anon_sym_async] = ACTIONS(1951), - [anon_sym_break] = ACTIONS(1951), - [anon_sym_const] = ACTIONS(1951), - [anon_sym_continue] = ACTIONS(1951), - [anon_sym_default] = ACTIONS(1951), - [anon_sym_enum] = ACTIONS(1951), - [anon_sym_fn] = ACTIONS(1951), - [anon_sym_for] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_impl] = ACTIONS(1951), - [anon_sym_let] = ACTIONS(1951), - [anon_sym_loop] = ACTIONS(1951), - [anon_sym_match] = ACTIONS(1951), - [anon_sym_mod] = ACTIONS(1951), - [anon_sym_pub] = ACTIONS(1951), - [anon_sym_return] = ACTIONS(1951), - [anon_sym_static] = ACTIONS(1951), - [anon_sym_struct] = ACTIONS(1951), - [anon_sym_trait] = ACTIONS(1951), - [anon_sym_type] = ACTIONS(1951), - [anon_sym_union] = ACTIONS(1951), - [anon_sym_unsafe] = ACTIONS(1951), - [anon_sym_use] = ACTIONS(1951), - [anon_sym_while] = ACTIONS(1951), - [anon_sym_extern] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_yield] = ACTIONS(1951), - [anon_sym_move] = ACTIONS(1951), - [anon_sym_try] = ACTIONS(1951), - [sym_integer_literal] = ACTIONS(1949), - [aux_sym_string_literal_token1] = ACTIONS(1949), - [sym_char_literal] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1951), - [sym_super] = ACTIONS(1951), - [sym_crate] = ACTIONS(1951), - [sym_metavariable] = ACTIONS(1949), - [sym_raw_string_literal] = ACTIONS(1949), - [sym_float_literal] = ACTIONS(1949), + [ts_builtin_sym_end] = ACTIONS(2000), + [sym_identifier] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_macro_rules_BANG] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2000), + [anon_sym_u8] = ACTIONS(2002), + [anon_sym_i8] = ACTIONS(2002), + [anon_sym_u16] = ACTIONS(2002), + [anon_sym_i16] = ACTIONS(2002), + [anon_sym_u32] = ACTIONS(2002), + [anon_sym_i32] = ACTIONS(2002), + [anon_sym_u64] = ACTIONS(2002), + [anon_sym_i64] = ACTIONS(2002), + [anon_sym_u128] = ACTIONS(2002), + [anon_sym_i128] = ACTIONS(2002), + [anon_sym_isize] = ACTIONS(2002), + [anon_sym_usize] = ACTIONS(2002), + [anon_sym_f32] = ACTIONS(2002), + [anon_sym_f64] = ACTIONS(2002), + [anon_sym_bool] = ACTIONS(2002), + [anon_sym_str] = ACTIONS(2002), + [anon_sym_char] = ACTIONS(2002), + [anon_sym_DASH] = ACTIONS(2000), + [anon_sym_COLON_COLON] = ACTIONS(2000), + [anon_sym_BANG] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(2000), + [anon_sym_LT] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_SQUOTE] = ACTIONS(2002), + [anon_sym_async] = ACTIONS(2002), + [anon_sym_break] = ACTIONS(2002), + [anon_sym_const] = ACTIONS(2002), + [anon_sym_continue] = ACTIONS(2002), + [anon_sym_default] = ACTIONS(2002), + [anon_sym_enum] = ACTIONS(2002), + [anon_sym_fn] = ACTIONS(2002), + [anon_sym_for] = ACTIONS(2002), + [anon_sym_if] = ACTIONS(2002), + [anon_sym_impl] = ACTIONS(2002), + [anon_sym_let] = ACTIONS(2002), + [anon_sym_loop] = ACTIONS(2002), + [anon_sym_match] = ACTIONS(2002), + [anon_sym_mod] = ACTIONS(2002), + [anon_sym_pub] = ACTIONS(2002), + [anon_sym_return] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2002), + [anon_sym_struct] = ACTIONS(2002), + [anon_sym_trait] = ACTIONS(2002), + [anon_sym_type] = ACTIONS(2002), + [anon_sym_union] = ACTIONS(2002), + [anon_sym_unsafe] = ACTIONS(2002), + [anon_sym_use] = ACTIONS(2002), + [anon_sym_while] = ACTIONS(2002), + [anon_sym_extern] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2000), + [anon_sym_yield] = ACTIONS(2002), + [anon_sym_move] = ACTIONS(2002), + [anon_sym_try] = ACTIONS(2002), + [sym_integer_literal] = ACTIONS(2000), + [aux_sym_string_literal_token1] = ACTIONS(2000), + [sym_char_literal] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2002), + [anon_sym_false] = ACTIONS(2002), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2002), + [sym_super] = ACTIONS(2002), + [sym_crate] = ACTIONS(2002), + [sym_metavariable] = ACTIONS(2000), + [sym_raw_string_literal] = ACTIONS(2000), + [sym_float_literal] = ACTIONS(2000), }, [557] = { [sym_line_comment] = STATE(557), [sym_block_comment] = STATE(557), - [ts_builtin_sym_end] = ACTIONS(1953), - [sym_identifier] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1953), - [anon_sym_macro_rules_BANG] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_LBRACK] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_STAR] = ACTIONS(1953), - [anon_sym_u8] = ACTIONS(1955), - [anon_sym_i8] = ACTIONS(1955), - [anon_sym_u16] = ACTIONS(1955), - [anon_sym_i16] = ACTIONS(1955), - [anon_sym_u32] = ACTIONS(1955), - [anon_sym_i32] = ACTIONS(1955), - [anon_sym_u64] = ACTIONS(1955), - [anon_sym_i64] = ACTIONS(1955), - [anon_sym_u128] = ACTIONS(1955), - [anon_sym_i128] = ACTIONS(1955), - [anon_sym_isize] = ACTIONS(1955), - [anon_sym_usize] = ACTIONS(1955), - [anon_sym_f32] = ACTIONS(1955), - [anon_sym_f64] = ACTIONS(1955), - [anon_sym_bool] = ACTIONS(1955), - [anon_sym_str] = ACTIONS(1955), - [anon_sym_char] = ACTIONS(1955), - [anon_sym_DASH] = ACTIONS(1953), - [anon_sym_COLON_COLON] = ACTIONS(1953), - [anon_sym_BANG] = ACTIONS(1953), - [anon_sym_AMP] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(1953), - [anon_sym_LT] = ACTIONS(1953), - [anon_sym_PIPE] = ACTIONS(1953), - [anon_sym_SQUOTE] = ACTIONS(1955), - [anon_sym_async] = ACTIONS(1955), - [anon_sym_break] = ACTIONS(1955), - [anon_sym_const] = ACTIONS(1955), - [anon_sym_continue] = ACTIONS(1955), - [anon_sym_default] = ACTIONS(1955), - [anon_sym_enum] = ACTIONS(1955), - [anon_sym_fn] = ACTIONS(1955), - [anon_sym_for] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_impl] = ACTIONS(1955), - [anon_sym_let] = ACTIONS(1955), - [anon_sym_loop] = ACTIONS(1955), - [anon_sym_match] = ACTIONS(1955), - [anon_sym_mod] = ACTIONS(1955), - [anon_sym_pub] = ACTIONS(1955), - [anon_sym_return] = ACTIONS(1955), - [anon_sym_static] = ACTIONS(1955), - [anon_sym_struct] = ACTIONS(1955), - [anon_sym_trait] = ACTIONS(1955), - [anon_sym_type] = ACTIONS(1955), - [anon_sym_union] = ACTIONS(1955), - [anon_sym_unsafe] = ACTIONS(1955), - [anon_sym_use] = ACTIONS(1955), - [anon_sym_while] = ACTIONS(1955), - [anon_sym_extern] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_yield] = ACTIONS(1955), - [anon_sym_move] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1955), - [sym_integer_literal] = ACTIONS(1953), - [aux_sym_string_literal_token1] = ACTIONS(1953), - [sym_char_literal] = ACTIONS(1953), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1955), - [sym_super] = ACTIONS(1955), - [sym_crate] = ACTIONS(1955), - [sym_metavariable] = ACTIONS(1953), - [sym_raw_string_literal] = ACTIONS(1953), - [sym_float_literal] = ACTIONS(1953), + [ts_builtin_sym_end] = ACTIONS(2004), + [sym_identifier] = ACTIONS(2006), + [anon_sym_SEMI] = ACTIONS(2004), + [anon_sym_macro_rules_BANG] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2004), + [anon_sym_u8] = ACTIONS(2006), + [anon_sym_i8] = ACTIONS(2006), + [anon_sym_u16] = ACTIONS(2006), + [anon_sym_i16] = ACTIONS(2006), + [anon_sym_u32] = ACTIONS(2006), + [anon_sym_i32] = ACTIONS(2006), + [anon_sym_u64] = ACTIONS(2006), + [anon_sym_i64] = ACTIONS(2006), + [anon_sym_u128] = ACTIONS(2006), + [anon_sym_i128] = ACTIONS(2006), + [anon_sym_isize] = ACTIONS(2006), + [anon_sym_usize] = ACTIONS(2006), + [anon_sym_f32] = ACTIONS(2006), + [anon_sym_f64] = ACTIONS(2006), + [anon_sym_bool] = ACTIONS(2006), + [anon_sym_str] = ACTIONS(2006), + [anon_sym_char] = ACTIONS(2006), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_COLON_COLON] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_AMP] = ACTIONS(2004), + [anon_sym_POUND] = ACTIONS(2004), + [anon_sym_LT] = ACTIONS(2004), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_SQUOTE] = ACTIONS(2006), + [anon_sym_async] = ACTIONS(2006), + [anon_sym_break] = ACTIONS(2006), + [anon_sym_const] = ACTIONS(2006), + [anon_sym_continue] = ACTIONS(2006), + [anon_sym_default] = ACTIONS(2006), + [anon_sym_enum] = ACTIONS(2006), + [anon_sym_fn] = ACTIONS(2006), + [anon_sym_for] = ACTIONS(2006), + [anon_sym_if] = ACTIONS(2006), + [anon_sym_impl] = ACTIONS(2006), + [anon_sym_let] = ACTIONS(2006), + [anon_sym_loop] = ACTIONS(2006), + [anon_sym_match] = ACTIONS(2006), + [anon_sym_mod] = ACTIONS(2006), + [anon_sym_pub] = ACTIONS(2006), + [anon_sym_return] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2006), + [anon_sym_struct] = ACTIONS(2006), + [anon_sym_trait] = ACTIONS(2006), + [anon_sym_type] = ACTIONS(2006), + [anon_sym_union] = ACTIONS(2006), + [anon_sym_unsafe] = ACTIONS(2006), + [anon_sym_use] = ACTIONS(2006), + [anon_sym_while] = ACTIONS(2006), + [anon_sym_extern] = ACTIONS(2006), + [anon_sym_DOT_DOT] = ACTIONS(2004), + [anon_sym_yield] = ACTIONS(2006), + [anon_sym_move] = ACTIONS(2006), + [anon_sym_try] = ACTIONS(2006), + [sym_integer_literal] = ACTIONS(2004), + [aux_sym_string_literal_token1] = ACTIONS(2004), + [sym_char_literal] = ACTIONS(2004), + [anon_sym_true] = ACTIONS(2006), + [anon_sym_false] = ACTIONS(2006), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2006), + [sym_super] = ACTIONS(2006), + [sym_crate] = ACTIONS(2006), + [sym_metavariable] = ACTIONS(2004), + [sym_raw_string_literal] = ACTIONS(2004), + [sym_float_literal] = ACTIONS(2004), }, [558] = { [sym_line_comment] = STATE(558), [sym_block_comment] = STATE(558), - [ts_builtin_sym_end] = ACTIONS(1957), - [sym_identifier] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1957), - [anon_sym_macro_rules_BANG] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_LBRACK] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(1957), - [anon_sym_u8] = ACTIONS(1959), - [anon_sym_i8] = ACTIONS(1959), - [anon_sym_u16] = ACTIONS(1959), - [anon_sym_i16] = ACTIONS(1959), - [anon_sym_u32] = ACTIONS(1959), - [anon_sym_i32] = ACTIONS(1959), - [anon_sym_u64] = ACTIONS(1959), - [anon_sym_i64] = ACTIONS(1959), - [anon_sym_u128] = ACTIONS(1959), - [anon_sym_i128] = ACTIONS(1959), - [anon_sym_isize] = ACTIONS(1959), - [anon_sym_usize] = ACTIONS(1959), - [anon_sym_f32] = ACTIONS(1959), - [anon_sym_f64] = ACTIONS(1959), - [anon_sym_bool] = ACTIONS(1959), - [anon_sym_str] = ACTIONS(1959), - [anon_sym_char] = ACTIONS(1959), - [anon_sym_DASH] = ACTIONS(1957), - [anon_sym_COLON_COLON] = ACTIONS(1957), - [anon_sym_BANG] = ACTIONS(1957), - [anon_sym_AMP] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(1957), - [anon_sym_LT] = ACTIONS(1957), - [anon_sym_PIPE] = ACTIONS(1957), - [anon_sym_SQUOTE] = ACTIONS(1959), - [anon_sym_async] = ACTIONS(1959), - [anon_sym_break] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(1959), - [anon_sym_continue] = ACTIONS(1959), - [anon_sym_default] = ACTIONS(1959), - [anon_sym_enum] = ACTIONS(1959), - [anon_sym_fn] = ACTIONS(1959), - [anon_sym_for] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_impl] = ACTIONS(1959), - [anon_sym_let] = ACTIONS(1959), - [anon_sym_loop] = ACTIONS(1959), - [anon_sym_match] = ACTIONS(1959), - [anon_sym_mod] = ACTIONS(1959), - [anon_sym_pub] = ACTIONS(1959), - [anon_sym_return] = ACTIONS(1959), - [anon_sym_static] = ACTIONS(1959), - [anon_sym_struct] = ACTIONS(1959), - [anon_sym_trait] = ACTIONS(1959), - [anon_sym_type] = ACTIONS(1959), - [anon_sym_union] = ACTIONS(1959), - [anon_sym_unsafe] = ACTIONS(1959), - [anon_sym_use] = ACTIONS(1959), - [anon_sym_while] = ACTIONS(1959), - [anon_sym_extern] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_yield] = ACTIONS(1959), - [anon_sym_move] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1959), - [sym_integer_literal] = ACTIONS(1957), - [aux_sym_string_literal_token1] = ACTIONS(1957), - [sym_char_literal] = ACTIONS(1957), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1959), - [sym_super] = ACTIONS(1959), - [sym_crate] = ACTIONS(1959), - [sym_metavariable] = ACTIONS(1957), - [sym_raw_string_literal] = ACTIONS(1957), - [sym_float_literal] = ACTIONS(1957), + [ts_builtin_sym_end] = ACTIONS(2008), + [sym_identifier] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2008), + [anon_sym_macro_rules_BANG] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2008), + [anon_sym_u8] = ACTIONS(2010), + [anon_sym_i8] = ACTIONS(2010), + [anon_sym_u16] = ACTIONS(2010), + [anon_sym_i16] = ACTIONS(2010), + [anon_sym_u32] = ACTIONS(2010), + [anon_sym_i32] = ACTIONS(2010), + [anon_sym_u64] = ACTIONS(2010), + [anon_sym_i64] = ACTIONS(2010), + [anon_sym_u128] = ACTIONS(2010), + [anon_sym_i128] = ACTIONS(2010), + [anon_sym_isize] = ACTIONS(2010), + [anon_sym_usize] = ACTIONS(2010), + [anon_sym_f32] = ACTIONS(2010), + [anon_sym_f64] = ACTIONS(2010), + [anon_sym_bool] = ACTIONS(2010), + [anon_sym_str] = ACTIONS(2010), + [anon_sym_char] = ACTIONS(2010), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_COLON_COLON] = ACTIONS(2008), + [anon_sym_BANG] = ACTIONS(2008), + [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(2008), + [anon_sym_LT] = ACTIONS(2008), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_SQUOTE] = ACTIONS(2010), + [anon_sym_async] = ACTIONS(2010), + [anon_sym_break] = ACTIONS(2010), + [anon_sym_const] = ACTIONS(2010), + [anon_sym_continue] = ACTIONS(2010), + [anon_sym_default] = ACTIONS(2010), + [anon_sym_enum] = ACTIONS(2010), + [anon_sym_fn] = ACTIONS(2010), + [anon_sym_for] = ACTIONS(2010), + [anon_sym_if] = ACTIONS(2010), + [anon_sym_impl] = ACTIONS(2010), + [anon_sym_let] = ACTIONS(2010), + [anon_sym_loop] = ACTIONS(2010), + [anon_sym_match] = ACTIONS(2010), + [anon_sym_mod] = ACTIONS(2010), + [anon_sym_pub] = ACTIONS(2010), + [anon_sym_return] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2010), + [anon_sym_struct] = ACTIONS(2010), + [anon_sym_trait] = ACTIONS(2010), + [anon_sym_type] = ACTIONS(2010), + [anon_sym_union] = ACTIONS(2010), + [anon_sym_unsafe] = ACTIONS(2010), + [anon_sym_use] = ACTIONS(2010), + [anon_sym_while] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2010), + [anon_sym_DOT_DOT] = ACTIONS(2008), + [anon_sym_yield] = ACTIONS(2010), + [anon_sym_move] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(2010), + [sym_integer_literal] = ACTIONS(2008), + [aux_sym_string_literal_token1] = ACTIONS(2008), + [sym_char_literal] = ACTIONS(2008), + [anon_sym_true] = ACTIONS(2010), + [anon_sym_false] = ACTIONS(2010), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2010), + [sym_super] = ACTIONS(2010), + [sym_crate] = ACTIONS(2010), + [sym_metavariable] = ACTIONS(2008), + [sym_raw_string_literal] = ACTIONS(2008), + [sym_float_literal] = ACTIONS(2008), }, [559] = { [sym_line_comment] = STATE(559), [sym_block_comment] = STATE(559), - [ts_builtin_sym_end] = ACTIONS(1961), - [sym_identifier] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_macro_rules_BANG] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_STAR] = ACTIONS(1961), - [anon_sym_u8] = ACTIONS(1963), - [anon_sym_i8] = ACTIONS(1963), - [anon_sym_u16] = ACTIONS(1963), - [anon_sym_i16] = ACTIONS(1963), - [anon_sym_u32] = ACTIONS(1963), - [anon_sym_i32] = ACTIONS(1963), - [anon_sym_u64] = ACTIONS(1963), - [anon_sym_i64] = ACTIONS(1963), - [anon_sym_u128] = ACTIONS(1963), - [anon_sym_i128] = ACTIONS(1963), - [anon_sym_isize] = ACTIONS(1963), - [anon_sym_usize] = ACTIONS(1963), - [anon_sym_f32] = ACTIONS(1963), - [anon_sym_f64] = ACTIONS(1963), - [anon_sym_bool] = ACTIONS(1963), - [anon_sym_str] = ACTIONS(1963), - [anon_sym_char] = ACTIONS(1963), - [anon_sym_DASH] = ACTIONS(1961), - [anon_sym_COLON_COLON] = ACTIONS(1961), - [anon_sym_BANG] = ACTIONS(1961), - [anon_sym_AMP] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(1961), - [anon_sym_LT] = ACTIONS(1961), - [anon_sym_PIPE] = ACTIONS(1961), - [anon_sym_SQUOTE] = ACTIONS(1963), - [anon_sym_async] = ACTIONS(1963), - [anon_sym_break] = ACTIONS(1963), - [anon_sym_const] = ACTIONS(1963), - [anon_sym_continue] = ACTIONS(1963), - [anon_sym_default] = ACTIONS(1963), - [anon_sym_enum] = ACTIONS(1963), - [anon_sym_fn] = ACTIONS(1963), - [anon_sym_for] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_impl] = ACTIONS(1963), - [anon_sym_let] = ACTIONS(1963), - [anon_sym_loop] = ACTIONS(1963), - [anon_sym_match] = ACTIONS(1963), - [anon_sym_mod] = ACTIONS(1963), - [anon_sym_pub] = ACTIONS(1963), - [anon_sym_return] = ACTIONS(1963), - [anon_sym_static] = ACTIONS(1963), - [anon_sym_struct] = ACTIONS(1963), - [anon_sym_trait] = ACTIONS(1963), - [anon_sym_type] = ACTIONS(1963), - [anon_sym_union] = ACTIONS(1963), - [anon_sym_unsafe] = ACTIONS(1963), - [anon_sym_use] = ACTIONS(1963), - [anon_sym_while] = ACTIONS(1963), - [anon_sym_extern] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1961), - [anon_sym_yield] = ACTIONS(1963), - [anon_sym_move] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1963), - [sym_integer_literal] = ACTIONS(1961), - [aux_sym_string_literal_token1] = ACTIONS(1961), - [sym_char_literal] = ACTIONS(1961), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1963), - [sym_super] = ACTIONS(1963), - [sym_crate] = ACTIONS(1963), - [sym_metavariable] = ACTIONS(1961), - [sym_raw_string_literal] = ACTIONS(1961), - [sym_float_literal] = ACTIONS(1961), + [ts_builtin_sym_end] = ACTIONS(2012), + [sym_identifier] = ACTIONS(2014), + [anon_sym_SEMI] = ACTIONS(2012), + [anon_sym_macro_rules_BANG] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2012), + [anon_sym_u8] = ACTIONS(2014), + [anon_sym_i8] = ACTIONS(2014), + [anon_sym_u16] = ACTIONS(2014), + [anon_sym_i16] = ACTIONS(2014), + [anon_sym_u32] = ACTIONS(2014), + [anon_sym_i32] = ACTIONS(2014), + [anon_sym_u64] = ACTIONS(2014), + [anon_sym_i64] = ACTIONS(2014), + [anon_sym_u128] = ACTIONS(2014), + [anon_sym_i128] = ACTIONS(2014), + [anon_sym_isize] = ACTIONS(2014), + [anon_sym_usize] = ACTIONS(2014), + [anon_sym_f32] = ACTIONS(2014), + [anon_sym_f64] = ACTIONS(2014), + [anon_sym_bool] = ACTIONS(2014), + [anon_sym_str] = ACTIONS(2014), + [anon_sym_char] = ACTIONS(2014), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2012), + [anon_sym_BANG] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_POUND] = ACTIONS(2012), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_PIPE] = ACTIONS(2012), + [anon_sym_SQUOTE] = ACTIONS(2014), + [anon_sym_async] = ACTIONS(2014), + [anon_sym_break] = ACTIONS(2014), + [anon_sym_const] = ACTIONS(2014), + [anon_sym_continue] = ACTIONS(2014), + [anon_sym_default] = ACTIONS(2014), + [anon_sym_enum] = ACTIONS(2014), + [anon_sym_fn] = ACTIONS(2014), + [anon_sym_for] = ACTIONS(2014), + [anon_sym_if] = ACTIONS(2014), + [anon_sym_impl] = ACTIONS(2014), + [anon_sym_let] = ACTIONS(2014), + [anon_sym_loop] = ACTIONS(2014), + [anon_sym_match] = ACTIONS(2014), + [anon_sym_mod] = ACTIONS(2014), + [anon_sym_pub] = ACTIONS(2014), + [anon_sym_return] = ACTIONS(2014), + [anon_sym_static] = ACTIONS(2014), + [anon_sym_struct] = ACTIONS(2014), + [anon_sym_trait] = ACTIONS(2014), + [anon_sym_type] = ACTIONS(2014), + [anon_sym_union] = ACTIONS(2014), + [anon_sym_unsafe] = ACTIONS(2014), + [anon_sym_use] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2014), + [anon_sym_extern] = ACTIONS(2014), + [anon_sym_DOT_DOT] = ACTIONS(2012), + [anon_sym_yield] = ACTIONS(2014), + [anon_sym_move] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2014), + [sym_integer_literal] = ACTIONS(2012), + [aux_sym_string_literal_token1] = ACTIONS(2012), + [sym_char_literal] = ACTIONS(2012), + [anon_sym_true] = ACTIONS(2014), + [anon_sym_false] = ACTIONS(2014), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2014), + [sym_super] = ACTIONS(2014), + [sym_crate] = ACTIONS(2014), + [sym_metavariable] = ACTIONS(2012), + [sym_raw_string_literal] = ACTIONS(2012), + [sym_float_literal] = ACTIONS(2012), }, [560] = { [sym_line_comment] = STATE(560), [sym_block_comment] = STATE(560), - [ts_builtin_sym_end] = ACTIONS(1965), - [sym_identifier] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym_macro_rules_BANG] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_LBRACK] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_STAR] = ACTIONS(1965), - [anon_sym_u8] = ACTIONS(1967), - [anon_sym_i8] = ACTIONS(1967), - [anon_sym_u16] = ACTIONS(1967), - [anon_sym_i16] = ACTIONS(1967), - [anon_sym_u32] = ACTIONS(1967), - [anon_sym_i32] = ACTIONS(1967), - [anon_sym_u64] = ACTIONS(1967), - [anon_sym_i64] = ACTIONS(1967), - [anon_sym_u128] = ACTIONS(1967), - [anon_sym_i128] = ACTIONS(1967), - [anon_sym_isize] = ACTIONS(1967), - [anon_sym_usize] = ACTIONS(1967), - [anon_sym_f32] = ACTIONS(1967), - [anon_sym_f64] = ACTIONS(1967), - [anon_sym_bool] = ACTIONS(1967), - [anon_sym_str] = ACTIONS(1967), - [anon_sym_char] = ACTIONS(1967), - [anon_sym_DASH] = ACTIONS(1965), - [anon_sym_COLON_COLON] = ACTIONS(1965), - [anon_sym_BANG] = ACTIONS(1965), - [anon_sym_AMP] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(1965), - [anon_sym_LT] = ACTIONS(1965), - [anon_sym_PIPE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(1967), - [anon_sym_break] = ACTIONS(1967), - [anon_sym_const] = ACTIONS(1967), - [anon_sym_continue] = ACTIONS(1967), - [anon_sym_default] = ACTIONS(1967), - [anon_sym_enum] = ACTIONS(1967), - [anon_sym_fn] = ACTIONS(1967), - [anon_sym_for] = ACTIONS(1967), - [anon_sym_if] = ACTIONS(1967), - [anon_sym_impl] = ACTIONS(1967), - [anon_sym_let] = ACTIONS(1967), - [anon_sym_loop] = ACTIONS(1967), - [anon_sym_match] = ACTIONS(1967), - [anon_sym_mod] = ACTIONS(1967), - [anon_sym_pub] = ACTIONS(1967), - [anon_sym_return] = ACTIONS(1967), - [anon_sym_static] = ACTIONS(1967), - [anon_sym_struct] = ACTIONS(1967), - [anon_sym_trait] = ACTIONS(1967), - [anon_sym_type] = ACTIONS(1967), - [anon_sym_union] = ACTIONS(1967), - [anon_sym_unsafe] = ACTIONS(1967), - [anon_sym_use] = ACTIONS(1967), - [anon_sym_while] = ACTIONS(1967), - [anon_sym_extern] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1965), - [anon_sym_yield] = ACTIONS(1967), - [anon_sym_move] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(1967), - [sym_integer_literal] = ACTIONS(1965), - [aux_sym_string_literal_token1] = ACTIONS(1965), - [sym_char_literal] = ACTIONS(1965), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1967), - [sym_super] = ACTIONS(1967), - [sym_crate] = ACTIONS(1967), - [sym_metavariable] = ACTIONS(1965), - [sym_raw_string_literal] = ACTIONS(1965), - [sym_float_literal] = ACTIONS(1965), + [ts_builtin_sym_end] = ACTIONS(2016), + [sym_identifier] = ACTIONS(2018), + [anon_sym_SEMI] = ACTIONS(2016), + [anon_sym_macro_rules_BANG] = ACTIONS(2016), + [anon_sym_LPAREN] = ACTIONS(2016), + [anon_sym_LBRACK] = ACTIONS(2016), + [anon_sym_LBRACE] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2016), + [anon_sym_STAR] = ACTIONS(2016), + [anon_sym_u8] = ACTIONS(2018), + [anon_sym_i8] = ACTIONS(2018), + [anon_sym_u16] = ACTIONS(2018), + [anon_sym_i16] = ACTIONS(2018), + [anon_sym_u32] = ACTIONS(2018), + [anon_sym_i32] = ACTIONS(2018), + [anon_sym_u64] = ACTIONS(2018), + [anon_sym_i64] = ACTIONS(2018), + [anon_sym_u128] = ACTIONS(2018), + [anon_sym_i128] = ACTIONS(2018), + [anon_sym_isize] = ACTIONS(2018), + [anon_sym_usize] = ACTIONS(2018), + [anon_sym_f32] = ACTIONS(2018), + [anon_sym_f64] = ACTIONS(2018), + [anon_sym_bool] = ACTIONS(2018), + [anon_sym_str] = ACTIONS(2018), + [anon_sym_char] = ACTIONS(2018), + [anon_sym_DASH] = ACTIONS(2016), + [anon_sym_COLON_COLON] = ACTIONS(2016), + [anon_sym_BANG] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2016), + [anon_sym_POUND] = ACTIONS(2016), + [anon_sym_LT] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2016), + [anon_sym_SQUOTE] = ACTIONS(2018), + [anon_sym_async] = ACTIONS(2018), + [anon_sym_break] = ACTIONS(2018), + [anon_sym_const] = ACTIONS(2018), + [anon_sym_continue] = ACTIONS(2018), + [anon_sym_default] = ACTIONS(2018), + [anon_sym_enum] = ACTIONS(2018), + [anon_sym_fn] = ACTIONS(2018), + [anon_sym_for] = ACTIONS(2018), + [anon_sym_if] = ACTIONS(2018), + [anon_sym_impl] = ACTIONS(2018), + [anon_sym_let] = ACTIONS(2018), + [anon_sym_loop] = ACTIONS(2018), + [anon_sym_match] = ACTIONS(2018), + [anon_sym_mod] = ACTIONS(2018), + [anon_sym_pub] = ACTIONS(2018), + [anon_sym_return] = ACTIONS(2018), + [anon_sym_static] = ACTIONS(2018), + [anon_sym_struct] = ACTIONS(2018), + [anon_sym_trait] = ACTIONS(2018), + [anon_sym_type] = ACTIONS(2018), + [anon_sym_union] = ACTIONS(2018), + [anon_sym_unsafe] = ACTIONS(2018), + [anon_sym_use] = ACTIONS(2018), + [anon_sym_while] = ACTIONS(2018), + [anon_sym_extern] = ACTIONS(2018), + [anon_sym_DOT_DOT] = ACTIONS(2016), + [anon_sym_yield] = ACTIONS(2018), + [anon_sym_move] = ACTIONS(2018), + [anon_sym_try] = ACTIONS(2018), + [sym_integer_literal] = ACTIONS(2016), + [aux_sym_string_literal_token1] = ACTIONS(2016), + [sym_char_literal] = ACTIONS(2016), + [anon_sym_true] = ACTIONS(2018), + [anon_sym_false] = ACTIONS(2018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2018), + [sym_super] = ACTIONS(2018), + [sym_crate] = ACTIONS(2018), + [sym_metavariable] = ACTIONS(2016), + [sym_raw_string_literal] = ACTIONS(2016), + [sym_float_literal] = ACTIONS(2016), }, [561] = { [sym_line_comment] = STATE(561), [sym_block_comment] = STATE(561), - [ts_builtin_sym_end] = ACTIONS(1969), - [sym_identifier] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_macro_rules_BANG] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_LBRACK] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_STAR] = ACTIONS(1969), - [anon_sym_u8] = ACTIONS(1971), - [anon_sym_i8] = ACTIONS(1971), - [anon_sym_u16] = ACTIONS(1971), - [anon_sym_i16] = ACTIONS(1971), - [anon_sym_u32] = ACTIONS(1971), - [anon_sym_i32] = ACTIONS(1971), - [anon_sym_u64] = ACTIONS(1971), - [anon_sym_i64] = ACTIONS(1971), - [anon_sym_u128] = ACTIONS(1971), - [anon_sym_i128] = ACTIONS(1971), - [anon_sym_isize] = ACTIONS(1971), - [anon_sym_usize] = ACTIONS(1971), - [anon_sym_f32] = ACTIONS(1971), - [anon_sym_f64] = ACTIONS(1971), - [anon_sym_bool] = ACTIONS(1971), - [anon_sym_str] = ACTIONS(1971), - [anon_sym_char] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1969), - [anon_sym_COLON_COLON] = ACTIONS(1969), - [anon_sym_BANG] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(1969), - [anon_sym_LT] = ACTIONS(1969), - [anon_sym_PIPE] = ACTIONS(1969), - [anon_sym_SQUOTE] = ACTIONS(1971), - [anon_sym_async] = ACTIONS(1971), - [anon_sym_break] = ACTIONS(1971), - [anon_sym_const] = ACTIONS(1971), - [anon_sym_continue] = ACTIONS(1971), - [anon_sym_default] = ACTIONS(1971), - [anon_sym_enum] = ACTIONS(1971), - [anon_sym_fn] = ACTIONS(1971), - [anon_sym_for] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1971), - [anon_sym_impl] = ACTIONS(1971), - [anon_sym_let] = ACTIONS(1971), - [anon_sym_loop] = ACTIONS(1971), - [anon_sym_match] = ACTIONS(1971), - [anon_sym_mod] = ACTIONS(1971), - [anon_sym_pub] = ACTIONS(1971), - [anon_sym_return] = ACTIONS(1971), - [anon_sym_static] = ACTIONS(1971), - [anon_sym_struct] = ACTIONS(1971), - [anon_sym_trait] = ACTIONS(1971), - [anon_sym_type] = ACTIONS(1971), - [anon_sym_union] = ACTIONS(1971), - [anon_sym_unsafe] = ACTIONS(1971), - [anon_sym_use] = ACTIONS(1971), - [anon_sym_while] = ACTIONS(1971), - [anon_sym_extern] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1969), - [anon_sym_yield] = ACTIONS(1971), - [anon_sym_move] = ACTIONS(1971), - [anon_sym_try] = ACTIONS(1971), - [sym_integer_literal] = ACTIONS(1969), - [aux_sym_string_literal_token1] = ACTIONS(1969), - [sym_char_literal] = ACTIONS(1969), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1971), - [sym_super] = ACTIONS(1971), - [sym_crate] = ACTIONS(1971), - [sym_metavariable] = ACTIONS(1969), - [sym_raw_string_literal] = ACTIONS(1969), - [sym_float_literal] = ACTIONS(1969), + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_macro_rules_BANG] = ACTIONS(2020), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_STAR] = ACTIONS(2020), + [anon_sym_u8] = ACTIONS(2022), + [anon_sym_i8] = ACTIONS(2022), + [anon_sym_u16] = ACTIONS(2022), + [anon_sym_i16] = ACTIONS(2022), + [anon_sym_u32] = ACTIONS(2022), + [anon_sym_i32] = ACTIONS(2022), + [anon_sym_u64] = ACTIONS(2022), + [anon_sym_i64] = ACTIONS(2022), + [anon_sym_u128] = ACTIONS(2022), + [anon_sym_i128] = ACTIONS(2022), + [anon_sym_isize] = ACTIONS(2022), + [anon_sym_usize] = ACTIONS(2022), + [anon_sym_f32] = ACTIONS(2022), + [anon_sym_f64] = ACTIONS(2022), + [anon_sym_bool] = ACTIONS(2022), + [anon_sym_str] = ACTIONS(2022), + [anon_sym_char] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2020), + [anon_sym_COLON_COLON] = ACTIONS(2020), + [anon_sym_BANG] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2020), + [anon_sym_POUND] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [anon_sym_fn] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_impl] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_loop] = ACTIONS(2022), + [anon_sym_match] = ACTIONS(2022), + [anon_sym_mod] = ACTIONS(2022), + [anon_sym_pub] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_struct] = ACTIONS(2022), + [anon_sym_trait] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_union] = ACTIONS(2022), + [anon_sym_unsafe] = ACTIONS(2022), + [anon_sym_use] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_extern] = ACTIONS(2022), + [anon_sym_DOT_DOT] = ACTIONS(2020), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_move] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [sym_integer_literal] = ACTIONS(2020), + [aux_sym_string_literal_token1] = ACTIONS(2020), + [sym_char_literal] = ACTIONS(2020), + [anon_sym_true] = ACTIONS(2022), + [anon_sym_false] = ACTIONS(2022), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_crate] = ACTIONS(2022), + [sym_metavariable] = ACTIONS(2020), + [sym_raw_string_literal] = ACTIONS(2020), + [sym_float_literal] = ACTIONS(2020), }, [562] = { [sym_line_comment] = STATE(562), [sym_block_comment] = STATE(562), - [ts_builtin_sym_end] = ACTIONS(1973), - [sym_identifier] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_macro_rules_BANG] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_LBRACK] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_STAR] = ACTIONS(1973), - [anon_sym_u8] = ACTIONS(1975), - [anon_sym_i8] = ACTIONS(1975), - [anon_sym_u16] = ACTIONS(1975), - [anon_sym_i16] = ACTIONS(1975), - [anon_sym_u32] = ACTIONS(1975), - [anon_sym_i32] = ACTIONS(1975), - [anon_sym_u64] = ACTIONS(1975), - [anon_sym_i64] = ACTIONS(1975), - [anon_sym_u128] = ACTIONS(1975), - [anon_sym_i128] = ACTIONS(1975), - [anon_sym_isize] = ACTIONS(1975), - [anon_sym_usize] = ACTIONS(1975), - [anon_sym_f32] = ACTIONS(1975), - [anon_sym_f64] = ACTIONS(1975), - [anon_sym_bool] = ACTIONS(1975), - [anon_sym_str] = ACTIONS(1975), - [anon_sym_char] = ACTIONS(1975), - [anon_sym_DASH] = ACTIONS(1973), - [anon_sym_COLON_COLON] = ACTIONS(1973), - [anon_sym_BANG] = ACTIONS(1973), - [anon_sym_AMP] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(1973), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_PIPE] = ACTIONS(1973), - [anon_sym_SQUOTE] = ACTIONS(1975), - [anon_sym_async] = ACTIONS(1975), - [anon_sym_break] = ACTIONS(1975), - [anon_sym_const] = ACTIONS(1975), - [anon_sym_continue] = ACTIONS(1975), - [anon_sym_default] = ACTIONS(1975), - [anon_sym_enum] = ACTIONS(1975), - [anon_sym_fn] = ACTIONS(1975), - [anon_sym_for] = ACTIONS(1975), - [anon_sym_if] = ACTIONS(1975), - [anon_sym_impl] = ACTIONS(1975), - [anon_sym_let] = ACTIONS(1975), - [anon_sym_loop] = ACTIONS(1975), - [anon_sym_match] = ACTIONS(1975), - [anon_sym_mod] = ACTIONS(1975), - [anon_sym_pub] = ACTIONS(1975), - [anon_sym_return] = ACTIONS(1975), - [anon_sym_static] = ACTIONS(1975), - [anon_sym_struct] = ACTIONS(1975), - [anon_sym_trait] = ACTIONS(1975), - [anon_sym_type] = ACTIONS(1975), - [anon_sym_union] = ACTIONS(1975), - [anon_sym_unsafe] = ACTIONS(1975), - [anon_sym_use] = ACTIONS(1975), - [anon_sym_while] = ACTIONS(1975), - [anon_sym_extern] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1973), - [anon_sym_yield] = ACTIONS(1975), - [anon_sym_move] = ACTIONS(1975), - [anon_sym_try] = ACTIONS(1975), - [sym_integer_literal] = ACTIONS(1973), - [aux_sym_string_literal_token1] = ACTIONS(1973), - [sym_char_literal] = ACTIONS(1973), - [anon_sym_true] = ACTIONS(1975), - [anon_sym_false] = ACTIONS(1975), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1975), - [sym_super] = ACTIONS(1975), - [sym_crate] = ACTIONS(1975), - [sym_metavariable] = ACTIONS(1973), - [sym_raw_string_literal] = ACTIONS(1973), - [sym_float_literal] = ACTIONS(1973), + [ts_builtin_sym_end] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_macro_rules_BANG] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_STAR] = ACTIONS(2024), + [anon_sym_u8] = ACTIONS(2026), + [anon_sym_i8] = ACTIONS(2026), + [anon_sym_u16] = ACTIONS(2026), + [anon_sym_i16] = ACTIONS(2026), + [anon_sym_u32] = ACTIONS(2026), + [anon_sym_i32] = ACTIONS(2026), + [anon_sym_u64] = ACTIONS(2026), + [anon_sym_i64] = ACTIONS(2026), + [anon_sym_u128] = ACTIONS(2026), + [anon_sym_i128] = ACTIONS(2026), + [anon_sym_isize] = ACTIONS(2026), + [anon_sym_usize] = ACTIONS(2026), + [anon_sym_f32] = ACTIONS(2026), + [anon_sym_f64] = ACTIONS(2026), + [anon_sym_bool] = ACTIONS(2026), + [anon_sym_str] = ACTIONS(2026), + [anon_sym_char] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2024), + [anon_sym_COLON_COLON] = ACTIONS(2024), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_POUND] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_SQUOTE] = ACTIONS(2026), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_default] = ACTIONS(2026), + [anon_sym_enum] = ACTIONS(2026), + [anon_sym_fn] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_impl] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_loop] = ACTIONS(2026), + [anon_sym_match] = ACTIONS(2026), + [anon_sym_mod] = ACTIONS(2026), + [anon_sym_pub] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_struct] = ACTIONS(2026), + [anon_sym_trait] = ACTIONS(2026), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_union] = ACTIONS(2026), + [anon_sym_unsafe] = ACTIONS(2026), + [anon_sym_use] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_extern] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2024), + [anon_sym_yield] = ACTIONS(2026), + [anon_sym_move] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [sym_integer_literal] = ACTIONS(2024), + [aux_sym_string_literal_token1] = ACTIONS(2024), + [sym_char_literal] = ACTIONS(2024), + [anon_sym_true] = ACTIONS(2026), + [anon_sym_false] = ACTIONS(2026), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2026), + [sym_super] = ACTIONS(2026), + [sym_crate] = ACTIONS(2026), + [sym_metavariable] = ACTIONS(2024), + [sym_raw_string_literal] = ACTIONS(2024), + [sym_float_literal] = ACTIONS(2024), }, [563] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(1977), - [sym_identifier] = ACTIONS(1979), - [anon_sym_SEMI] = ACTIONS(1977), - [anon_sym_macro_rules_BANG] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_LBRACK] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_STAR] = ACTIONS(1977), - [anon_sym_u8] = ACTIONS(1979), - [anon_sym_i8] = ACTIONS(1979), - [anon_sym_u16] = ACTIONS(1979), - [anon_sym_i16] = ACTIONS(1979), - [anon_sym_u32] = ACTIONS(1979), - [anon_sym_i32] = ACTIONS(1979), - [anon_sym_u64] = ACTIONS(1979), - [anon_sym_i64] = ACTIONS(1979), - [anon_sym_u128] = ACTIONS(1979), - [anon_sym_i128] = ACTIONS(1979), - [anon_sym_isize] = ACTIONS(1979), - [anon_sym_usize] = ACTIONS(1979), - [anon_sym_f32] = ACTIONS(1979), - [anon_sym_f64] = ACTIONS(1979), - [anon_sym_bool] = ACTIONS(1979), - [anon_sym_str] = ACTIONS(1979), - [anon_sym_char] = ACTIONS(1979), - [anon_sym_DASH] = ACTIONS(1977), - [anon_sym_COLON_COLON] = ACTIONS(1977), - [anon_sym_BANG] = ACTIONS(1977), - [anon_sym_AMP] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(1977), - [anon_sym_LT] = ACTIONS(1977), - [anon_sym_PIPE] = ACTIONS(1977), - [anon_sym_SQUOTE] = ACTIONS(1979), - [anon_sym_async] = ACTIONS(1979), - [anon_sym_break] = ACTIONS(1979), - [anon_sym_const] = ACTIONS(1979), - [anon_sym_continue] = ACTIONS(1979), - [anon_sym_default] = ACTIONS(1979), - [anon_sym_enum] = ACTIONS(1979), - [anon_sym_fn] = ACTIONS(1979), - [anon_sym_for] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1979), - [anon_sym_impl] = ACTIONS(1979), - [anon_sym_let] = ACTIONS(1979), - [anon_sym_loop] = ACTIONS(1979), - [anon_sym_match] = ACTIONS(1979), - [anon_sym_mod] = ACTIONS(1979), - [anon_sym_pub] = ACTIONS(1979), - [anon_sym_return] = ACTIONS(1979), - [anon_sym_static] = ACTIONS(1979), - [anon_sym_struct] = ACTIONS(1979), - [anon_sym_trait] = ACTIONS(1979), - [anon_sym_type] = ACTIONS(1979), - [anon_sym_union] = ACTIONS(1979), - [anon_sym_unsafe] = ACTIONS(1979), - [anon_sym_use] = ACTIONS(1979), - [anon_sym_while] = ACTIONS(1979), - [anon_sym_extern] = ACTIONS(1979), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_yield] = ACTIONS(1979), - [anon_sym_move] = ACTIONS(1979), - [anon_sym_try] = ACTIONS(1979), - [sym_integer_literal] = ACTIONS(1977), - [aux_sym_string_literal_token1] = ACTIONS(1977), - [sym_char_literal] = ACTIONS(1977), - [anon_sym_true] = ACTIONS(1979), - [anon_sym_false] = ACTIONS(1979), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1979), - [sym_super] = ACTIONS(1979), - [sym_crate] = ACTIONS(1979), - [sym_metavariable] = ACTIONS(1977), - [sym_raw_string_literal] = ACTIONS(1977), - [sym_float_literal] = ACTIONS(1977), + [ts_builtin_sym_end] = ACTIONS(2028), + [sym_identifier] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2028), + [anon_sym_macro_rules_BANG] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_LBRACK] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_u8] = ACTIONS(2030), + [anon_sym_i8] = ACTIONS(2030), + [anon_sym_u16] = ACTIONS(2030), + [anon_sym_i16] = ACTIONS(2030), + [anon_sym_u32] = ACTIONS(2030), + [anon_sym_i32] = ACTIONS(2030), + [anon_sym_u64] = ACTIONS(2030), + [anon_sym_i64] = ACTIONS(2030), + [anon_sym_u128] = ACTIONS(2030), + [anon_sym_i128] = ACTIONS(2030), + [anon_sym_isize] = ACTIONS(2030), + [anon_sym_usize] = ACTIONS(2030), + [anon_sym_f32] = ACTIONS(2030), + [anon_sym_f64] = ACTIONS(2030), + [anon_sym_bool] = ACTIONS(2030), + [anon_sym_str] = ACTIONS(2030), + [anon_sym_char] = ACTIONS(2030), + [anon_sym_DASH] = ACTIONS(2028), + [anon_sym_COLON_COLON] = ACTIONS(2028), + [anon_sym_BANG] = ACTIONS(2028), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_POUND] = ACTIONS(2028), + [anon_sym_LT] = ACTIONS(2028), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_SQUOTE] = ACTIONS(2030), + [anon_sym_async] = ACTIONS(2030), + [anon_sym_break] = ACTIONS(2030), + [anon_sym_const] = ACTIONS(2030), + [anon_sym_continue] = ACTIONS(2030), + [anon_sym_default] = ACTIONS(2030), + [anon_sym_enum] = ACTIONS(2030), + [anon_sym_fn] = ACTIONS(2030), + [anon_sym_for] = ACTIONS(2030), + [anon_sym_if] = ACTIONS(2030), + [anon_sym_impl] = ACTIONS(2030), + [anon_sym_let] = ACTIONS(2030), + [anon_sym_loop] = ACTIONS(2030), + [anon_sym_match] = ACTIONS(2030), + [anon_sym_mod] = ACTIONS(2030), + [anon_sym_pub] = ACTIONS(2030), + [anon_sym_return] = ACTIONS(2030), + [anon_sym_static] = ACTIONS(2030), + [anon_sym_struct] = ACTIONS(2030), + [anon_sym_trait] = ACTIONS(2030), + [anon_sym_type] = ACTIONS(2030), + [anon_sym_union] = ACTIONS(2030), + [anon_sym_unsafe] = ACTIONS(2030), + [anon_sym_use] = ACTIONS(2030), + [anon_sym_while] = ACTIONS(2030), + [anon_sym_extern] = ACTIONS(2030), + [anon_sym_DOT_DOT] = ACTIONS(2028), + [anon_sym_yield] = ACTIONS(2030), + [anon_sym_move] = ACTIONS(2030), + [anon_sym_try] = ACTIONS(2030), + [sym_integer_literal] = ACTIONS(2028), + [aux_sym_string_literal_token1] = ACTIONS(2028), + [sym_char_literal] = ACTIONS(2028), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2030), + [sym_super] = ACTIONS(2030), + [sym_crate] = ACTIONS(2030), + [sym_metavariable] = ACTIONS(2028), + [sym_raw_string_literal] = ACTIONS(2028), + [sym_float_literal] = ACTIONS(2028), }, [564] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(890), - [sym_identifier] = ACTIONS(892), - [anon_sym_SEMI] = ACTIONS(890), - [anon_sym_macro_rules_BANG] = ACTIONS(890), - [anon_sym_LPAREN] = ACTIONS(890), - [anon_sym_LBRACK] = ACTIONS(890), - [anon_sym_LBRACE] = ACTIONS(890), - [anon_sym_RBRACE] = ACTIONS(890), - [anon_sym_STAR] = ACTIONS(890), - [anon_sym_u8] = ACTIONS(892), - [anon_sym_i8] = ACTIONS(892), - [anon_sym_u16] = ACTIONS(892), - [anon_sym_i16] = ACTIONS(892), - [anon_sym_u32] = ACTIONS(892), - [anon_sym_i32] = ACTIONS(892), - [anon_sym_u64] = ACTIONS(892), - [anon_sym_i64] = ACTIONS(892), - [anon_sym_u128] = ACTIONS(892), - [anon_sym_i128] = ACTIONS(892), - [anon_sym_isize] = ACTIONS(892), - [anon_sym_usize] = ACTIONS(892), - [anon_sym_f32] = ACTIONS(892), - [anon_sym_f64] = ACTIONS(892), - [anon_sym_bool] = ACTIONS(892), - [anon_sym_str] = ACTIONS(892), - [anon_sym_char] = ACTIONS(892), - [anon_sym_DASH] = ACTIONS(890), - [anon_sym_COLON_COLON] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(890), - [anon_sym_AMP] = ACTIONS(890), - [anon_sym_POUND] = ACTIONS(890), - [anon_sym_LT] = ACTIONS(890), - [anon_sym_PIPE] = ACTIONS(890), - [anon_sym_SQUOTE] = ACTIONS(892), - [anon_sym_async] = ACTIONS(892), - [anon_sym_break] = ACTIONS(892), - [anon_sym_const] = ACTIONS(892), - [anon_sym_continue] = ACTIONS(892), - [anon_sym_default] = ACTIONS(892), - [anon_sym_enum] = ACTIONS(892), - [anon_sym_fn] = ACTIONS(892), - [anon_sym_for] = ACTIONS(892), - [anon_sym_if] = ACTIONS(892), - [anon_sym_impl] = ACTIONS(892), - [anon_sym_let] = ACTIONS(892), - [anon_sym_loop] = ACTIONS(892), - [anon_sym_match] = ACTIONS(892), - [anon_sym_mod] = ACTIONS(892), - [anon_sym_pub] = ACTIONS(892), - [anon_sym_return] = ACTIONS(892), - [anon_sym_static] = ACTIONS(892), - [anon_sym_struct] = ACTIONS(892), - [anon_sym_trait] = ACTIONS(892), - [anon_sym_type] = ACTIONS(892), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(892), - [anon_sym_use] = ACTIONS(892), - [anon_sym_while] = ACTIONS(892), - [anon_sym_extern] = ACTIONS(892), - [anon_sym_DOT_DOT] = ACTIONS(890), - [anon_sym_yield] = ACTIONS(892), - [anon_sym_move] = ACTIONS(892), - [anon_sym_try] = ACTIONS(892), - [sym_integer_literal] = ACTIONS(890), - [aux_sym_string_literal_token1] = ACTIONS(890), - [sym_char_literal] = ACTIONS(890), - [anon_sym_true] = ACTIONS(892), - [anon_sym_false] = ACTIONS(892), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(892), - [sym_super] = ACTIONS(892), - [sym_crate] = ACTIONS(892), - [sym_metavariable] = ACTIONS(890), - [sym_raw_string_literal] = ACTIONS(890), - [sym_float_literal] = ACTIONS(890), + [ts_builtin_sym_end] = ACTIONS(2032), + [sym_identifier] = ACTIONS(2034), + [anon_sym_SEMI] = ACTIONS(2032), + [anon_sym_macro_rules_BANG] = ACTIONS(2032), + [anon_sym_LPAREN] = ACTIONS(2032), + [anon_sym_LBRACK] = ACTIONS(2032), + [anon_sym_LBRACE] = ACTIONS(2032), + [anon_sym_RBRACE] = ACTIONS(2032), + [anon_sym_STAR] = ACTIONS(2032), + [anon_sym_u8] = ACTIONS(2034), + [anon_sym_i8] = ACTIONS(2034), + [anon_sym_u16] = ACTIONS(2034), + [anon_sym_i16] = ACTIONS(2034), + [anon_sym_u32] = ACTIONS(2034), + [anon_sym_i32] = ACTIONS(2034), + [anon_sym_u64] = ACTIONS(2034), + [anon_sym_i64] = ACTIONS(2034), + [anon_sym_u128] = ACTIONS(2034), + [anon_sym_i128] = ACTIONS(2034), + [anon_sym_isize] = ACTIONS(2034), + [anon_sym_usize] = ACTIONS(2034), + [anon_sym_f32] = ACTIONS(2034), + [anon_sym_f64] = ACTIONS(2034), + [anon_sym_bool] = ACTIONS(2034), + [anon_sym_str] = ACTIONS(2034), + [anon_sym_char] = ACTIONS(2034), + [anon_sym_DASH] = ACTIONS(2032), + [anon_sym_COLON_COLON] = ACTIONS(2032), + [anon_sym_BANG] = ACTIONS(2032), + [anon_sym_AMP] = ACTIONS(2032), + [anon_sym_POUND] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(2032), + [anon_sym_PIPE] = ACTIONS(2032), + [anon_sym_SQUOTE] = ACTIONS(2034), + [anon_sym_async] = ACTIONS(2034), + [anon_sym_break] = ACTIONS(2034), + [anon_sym_const] = ACTIONS(2034), + [anon_sym_continue] = ACTIONS(2034), + [anon_sym_default] = ACTIONS(2034), + [anon_sym_enum] = ACTIONS(2034), + [anon_sym_fn] = ACTIONS(2034), + [anon_sym_for] = ACTIONS(2034), + [anon_sym_if] = ACTIONS(2034), + [anon_sym_impl] = ACTIONS(2034), + [anon_sym_let] = ACTIONS(2034), + [anon_sym_loop] = ACTIONS(2034), + [anon_sym_match] = ACTIONS(2034), + [anon_sym_mod] = ACTIONS(2034), + [anon_sym_pub] = ACTIONS(2034), + [anon_sym_return] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2034), + [anon_sym_struct] = ACTIONS(2034), + [anon_sym_trait] = ACTIONS(2034), + [anon_sym_type] = ACTIONS(2034), + [anon_sym_union] = ACTIONS(2034), + [anon_sym_unsafe] = ACTIONS(2034), + [anon_sym_use] = ACTIONS(2034), + [anon_sym_while] = ACTIONS(2034), + [anon_sym_extern] = ACTIONS(2034), + [anon_sym_DOT_DOT] = ACTIONS(2032), + [anon_sym_yield] = ACTIONS(2034), + [anon_sym_move] = ACTIONS(2034), + [anon_sym_try] = ACTIONS(2034), + [sym_integer_literal] = ACTIONS(2032), + [aux_sym_string_literal_token1] = ACTIONS(2032), + [sym_char_literal] = ACTIONS(2032), + [anon_sym_true] = ACTIONS(2034), + [anon_sym_false] = ACTIONS(2034), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2034), + [sym_super] = ACTIONS(2034), + [sym_crate] = ACTIONS(2034), + [sym_metavariable] = ACTIONS(2032), + [sym_raw_string_literal] = ACTIONS(2032), + [sym_float_literal] = ACTIONS(2032), }, [565] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(1981), - [sym_identifier] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1981), - [anon_sym_macro_rules_BANG] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_LBRACK] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_STAR] = ACTIONS(1981), - [anon_sym_u8] = ACTIONS(1983), - [anon_sym_i8] = ACTIONS(1983), - [anon_sym_u16] = ACTIONS(1983), - [anon_sym_i16] = ACTIONS(1983), - [anon_sym_u32] = ACTIONS(1983), - [anon_sym_i32] = ACTIONS(1983), - [anon_sym_u64] = ACTIONS(1983), - [anon_sym_i64] = ACTIONS(1983), - [anon_sym_u128] = ACTIONS(1983), - [anon_sym_i128] = ACTIONS(1983), - [anon_sym_isize] = ACTIONS(1983), - [anon_sym_usize] = ACTIONS(1983), - [anon_sym_f32] = ACTIONS(1983), - [anon_sym_f64] = ACTIONS(1983), - [anon_sym_bool] = ACTIONS(1983), - [anon_sym_str] = ACTIONS(1983), - [anon_sym_char] = ACTIONS(1983), - [anon_sym_DASH] = ACTIONS(1981), - [anon_sym_COLON_COLON] = ACTIONS(1981), - [anon_sym_BANG] = ACTIONS(1981), - [anon_sym_AMP] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(1981), - [anon_sym_LT] = ACTIONS(1981), - [anon_sym_PIPE] = ACTIONS(1981), - [anon_sym_SQUOTE] = ACTIONS(1983), - [anon_sym_async] = ACTIONS(1983), - [anon_sym_break] = ACTIONS(1983), - [anon_sym_const] = ACTIONS(1983), - [anon_sym_continue] = ACTIONS(1983), - [anon_sym_default] = ACTIONS(1983), - [anon_sym_enum] = ACTIONS(1983), - [anon_sym_fn] = ACTIONS(1983), - [anon_sym_for] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_impl] = ACTIONS(1983), - [anon_sym_let] = ACTIONS(1983), - [anon_sym_loop] = ACTIONS(1983), - [anon_sym_match] = ACTIONS(1983), - [anon_sym_mod] = ACTIONS(1983), - [anon_sym_pub] = ACTIONS(1983), - [anon_sym_return] = ACTIONS(1983), - [anon_sym_static] = ACTIONS(1983), - [anon_sym_struct] = ACTIONS(1983), - [anon_sym_trait] = ACTIONS(1983), - [anon_sym_type] = ACTIONS(1983), - [anon_sym_union] = ACTIONS(1983), - [anon_sym_unsafe] = ACTIONS(1983), - [anon_sym_use] = ACTIONS(1983), - [anon_sym_while] = ACTIONS(1983), - [anon_sym_extern] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1981), - [anon_sym_yield] = ACTIONS(1983), - [anon_sym_move] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1983), - [sym_integer_literal] = ACTIONS(1981), - [aux_sym_string_literal_token1] = ACTIONS(1981), - [sym_char_literal] = ACTIONS(1981), - [anon_sym_true] = ACTIONS(1983), - [anon_sym_false] = ACTIONS(1983), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1983), - [sym_super] = ACTIONS(1983), - [sym_crate] = ACTIONS(1983), - [sym_metavariable] = ACTIONS(1981), - [sym_raw_string_literal] = ACTIONS(1981), - [sym_float_literal] = ACTIONS(1981), + [ts_builtin_sym_end] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_macro_rules_BANG] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_u8] = ACTIONS(2038), + [anon_sym_i8] = ACTIONS(2038), + [anon_sym_u16] = ACTIONS(2038), + [anon_sym_i16] = ACTIONS(2038), + [anon_sym_u32] = ACTIONS(2038), + [anon_sym_i32] = ACTIONS(2038), + [anon_sym_u64] = ACTIONS(2038), + [anon_sym_i64] = ACTIONS(2038), + [anon_sym_u128] = ACTIONS(2038), + [anon_sym_i128] = ACTIONS(2038), + [anon_sym_isize] = ACTIONS(2038), + [anon_sym_usize] = ACTIONS(2038), + [anon_sym_f32] = ACTIONS(2038), + [anon_sym_f64] = ACTIONS(2038), + [anon_sym_bool] = ACTIONS(2038), + [anon_sym_str] = ACTIONS(2038), + [anon_sym_char] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_COLON_COLON] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_AMP] = ACTIONS(2036), + [anon_sym_POUND] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_PIPE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2038), + [anon_sym_async] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_default] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_fn] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_impl] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_loop] = ACTIONS(2038), + [anon_sym_match] = ACTIONS(2038), + [anon_sym_mod] = ACTIONS(2038), + [anon_sym_pub] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2038), + [anon_sym_trait] = ACTIONS(2038), + [anon_sym_type] = ACTIONS(2038), + [anon_sym_union] = ACTIONS(2038), + [anon_sym_unsafe] = ACTIONS(2038), + [anon_sym_use] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_DOT_DOT] = ACTIONS(2036), + [anon_sym_yield] = ACTIONS(2038), + [anon_sym_move] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [sym_integer_literal] = ACTIONS(2036), + [aux_sym_string_literal_token1] = ACTIONS(2036), + [sym_char_literal] = ACTIONS(2036), + [anon_sym_true] = ACTIONS(2038), + [anon_sym_false] = ACTIONS(2038), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_crate] = ACTIONS(2038), + [sym_metavariable] = ACTIONS(2036), + [sym_raw_string_literal] = ACTIONS(2036), + [sym_float_literal] = ACTIONS(2036), }, [566] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(1985), - [sym_identifier] = ACTIONS(1987), - [anon_sym_SEMI] = ACTIONS(1985), - [anon_sym_macro_rules_BANG] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_LBRACK] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_STAR] = ACTIONS(1985), - [anon_sym_u8] = ACTIONS(1987), - [anon_sym_i8] = ACTIONS(1987), - [anon_sym_u16] = ACTIONS(1987), - [anon_sym_i16] = ACTIONS(1987), - [anon_sym_u32] = ACTIONS(1987), - [anon_sym_i32] = ACTIONS(1987), - [anon_sym_u64] = ACTIONS(1987), - [anon_sym_i64] = ACTIONS(1987), - [anon_sym_u128] = ACTIONS(1987), - [anon_sym_i128] = ACTIONS(1987), - [anon_sym_isize] = ACTIONS(1987), - [anon_sym_usize] = ACTIONS(1987), - [anon_sym_f32] = ACTIONS(1987), - [anon_sym_f64] = ACTIONS(1987), - [anon_sym_bool] = ACTIONS(1987), - [anon_sym_str] = ACTIONS(1987), - [anon_sym_char] = ACTIONS(1987), - [anon_sym_DASH] = ACTIONS(1985), - [anon_sym_COLON_COLON] = ACTIONS(1985), - [anon_sym_BANG] = ACTIONS(1985), - [anon_sym_AMP] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(1985), - [anon_sym_LT] = ACTIONS(1985), - [anon_sym_PIPE] = ACTIONS(1985), - [anon_sym_SQUOTE] = ACTIONS(1987), - [anon_sym_async] = ACTIONS(1987), - [anon_sym_break] = ACTIONS(1987), - [anon_sym_const] = ACTIONS(1987), - [anon_sym_continue] = ACTIONS(1987), - [anon_sym_default] = ACTIONS(1987), - [anon_sym_enum] = ACTIONS(1987), - [anon_sym_fn] = ACTIONS(1987), - [anon_sym_for] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_impl] = ACTIONS(1987), - [anon_sym_let] = ACTIONS(1987), - [anon_sym_loop] = ACTIONS(1987), - [anon_sym_match] = ACTIONS(1987), - [anon_sym_mod] = ACTIONS(1987), - [anon_sym_pub] = ACTIONS(1987), - [anon_sym_return] = ACTIONS(1987), - [anon_sym_static] = ACTIONS(1987), - [anon_sym_struct] = ACTIONS(1987), - [anon_sym_trait] = ACTIONS(1987), - [anon_sym_type] = ACTIONS(1987), - [anon_sym_union] = ACTIONS(1987), - [anon_sym_unsafe] = ACTIONS(1987), - [anon_sym_use] = ACTIONS(1987), - [anon_sym_while] = ACTIONS(1987), - [anon_sym_extern] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1985), - [anon_sym_yield] = ACTIONS(1987), - [anon_sym_move] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1987), - [sym_integer_literal] = ACTIONS(1985), - [aux_sym_string_literal_token1] = ACTIONS(1985), - [sym_char_literal] = ACTIONS(1985), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = ACTIONS(1987), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1987), - [sym_super] = ACTIONS(1987), - [sym_crate] = ACTIONS(1987), - [sym_metavariable] = ACTIONS(1985), - [sym_raw_string_literal] = ACTIONS(1985), - [sym_float_literal] = ACTIONS(1985), + [ts_builtin_sym_end] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2042), + [anon_sym_SEMI] = ACTIONS(2040), + [anon_sym_macro_rules_BANG] = ACTIONS(2040), + [anon_sym_LPAREN] = ACTIONS(2040), + [anon_sym_LBRACK] = ACTIONS(2040), + [anon_sym_LBRACE] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2040), + [anon_sym_u8] = ACTIONS(2042), + [anon_sym_i8] = ACTIONS(2042), + [anon_sym_u16] = ACTIONS(2042), + [anon_sym_i16] = ACTIONS(2042), + [anon_sym_u32] = ACTIONS(2042), + [anon_sym_i32] = ACTIONS(2042), + [anon_sym_u64] = ACTIONS(2042), + [anon_sym_i64] = ACTIONS(2042), + [anon_sym_u128] = ACTIONS(2042), + [anon_sym_i128] = ACTIONS(2042), + [anon_sym_isize] = ACTIONS(2042), + [anon_sym_usize] = ACTIONS(2042), + [anon_sym_f32] = ACTIONS(2042), + [anon_sym_f64] = ACTIONS(2042), + [anon_sym_bool] = ACTIONS(2042), + [anon_sym_str] = ACTIONS(2042), + [anon_sym_char] = ACTIONS(2042), + [anon_sym_DASH] = ACTIONS(2040), + [anon_sym_COLON_COLON] = ACTIONS(2040), + [anon_sym_BANG] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2040), + [anon_sym_POUND] = ACTIONS(2040), + [anon_sym_LT] = ACTIONS(2040), + [anon_sym_PIPE] = ACTIONS(2040), + [anon_sym_SQUOTE] = ACTIONS(2042), + [anon_sym_async] = ACTIONS(2042), + [anon_sym_break] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [anon_sym_continue] = ACTIONS(2042), + [anon_sym_default] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_fn] = ACTIONS(2042), + [anon_sym_for] = ACTIONS(2042), + [anon_sym_if] = ACTIONS(2042), + [anon_sym_impl] = ACTIONS(2042), + [anon_sym_let] = ACTIONS(2042), + [anon_sym_loop] = ACTIONS(2042), + [anon_sym_match] = ACTIONS(2042), + [anon_sym_mod] = ACTIONS(2042), + [anon_sym_pub] = ACTIONS(2042), + [anon_sym_return] = ACTIONS(2042), + [anon_sym_static] = ACTIONS(2042), + [anon_sym_struct] = ACTIONS(2042), + [anon_sym_trait] = ACTIONS(2042), + [anon_sym_type] = ACTIONS(2042), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_unsafe] = ACTIONS(2042), + [anon_sym_use] = ACTIONS(2042), + [anon_sym_while] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2040), + [anon_sym_yield] = ACTIONS(2042), + [anon_sym_move] = ACTIONS(2042), + [anon_sym_try] = ACTIONS(2042), + [sym_integer_literal] = ACTIONS(2040), + [aux_sym_string_literal_token1] = ACTIONS(2040), + [sym_char_literal] = ACTIONS(2040), + [anon_sym_true] = ACTIONS(2042), + [anon_sym_false] = ACTIONS(2042), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2042), + [sym_super] = ACTIONS(2042), + [sym_crate] = ACTIONS(2042), + [sym_metavariable] = ACTIONS(2040), + [sym_raw_string_literal] = ACTIONS(2040), + [sym_float_literal] = ACTIONS(2040), }, [567] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(1989), - [sym_identifier] = ACTIONS(1991), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_macro_rules_BANG] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1989), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_STAR] = ACTIONS(1989), - [anon_sym_u8] = ACTIONS(1991), - [anon_sym_i8] = ACTIONS(1991), - [anon_sym_u16] = ACTIONS(1991), - [anon_sym_i16] = ACTIONS(1991), - [anon_sym_u32] = ACTIONS(1991), - [anon_sym_i32] = ACTIONS(1991), - [anon_sym_u64] = ACTIONS(1991), - [anon_sym_i64] = ACTIONS(1991), - [anon_sym_u128] = ACTIONS(1991), - [anon_sym_i128] = ACTIONS(1991), - [anon_sym_isize] = ACTIONS(1991), - [anon_sym_usize] = ACTIONS(1991), - [anon_sym_f32] = ACTIONS(1991), - [anon_sym_f64] = ACTIONS(1991), - [anon_sym_bool] = ACTIONS(1991), - [anon_sym_str] = ACTIONS(1991), - [anon_sym_char] = ACTIONS(1991), - [anon_sym_DASH] = ACTIONS(1989), - [anon_sym_COLON_COLON] = ACTIONS(1989), - [anon_sym_BANG] = ACTIONS(1989), - [anon_sym_AMP] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(1989), - [anon_sym_LT] = ACTIONS(1989), - [anon_sym_PIPE] = ACTIONS(1989), - [anon_sym_SQUOTE] = ACTIONS(1991), - [anon_sym_async] = ACTIONS(1991), - [anon_sym_break] = ACTIONS(1991), - [anon_sym_const] = ACTIONS(1991), - [anon_sym_continue] = ACTIONS(1991), - [anon_sym_default] = ACTIONS(1991), - [anon_sym_enum] = ACTIONS(1991), - [anon_sym_fn] = ACTIONS(1991), - [anon_sym_for] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_impl] = ACTIONS(1991), - [anon_sym_let] = ACTIONS(1991), - [anon_sym_loop] = ACTIONS(1991), - [anon_sym_match] = ACTIONS(1991), - [anon_sym_mod] = ACTIONS(1991), - [anon_sym_pub] = ACTIONS(1991), - [anon_sym_return] = ACTIONS(1991), - [anon_sym_static] = ACTIONS(1991), - [anon_sym_struct] = ACTIONS(1991), - [anon_sym_trait] = ACTIONS(1991), - [anon_sym_type] = ACTIONS(1991), - [anon_sym_union] = ACTIONS(1991), - [anon_sym_unsafe] = ACTIONS(1991), - [anon_sym_use] = ACTIONS(1991), - [anon_sym_while] = ACTIONS(1991), - [anon_sym_extern] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1989), - [anon_sym_yield] = ACTIONS(1991), - [anon_sym_move] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1991), - [sym_integer_literal] = ACTIONS(1989), - [aux_sym_string_literal_token1] = ACTIONS(1989), - [sym_char_literal] = ACTIONS(1989), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = ACTIONS(1991), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1991), - [sym_super] = ACTIONS(1991), - [sym_crate] = ACTIONS(1991), - [sym_metavariable] = ACTIONS(1989), - [sym_raw_string_literal] = ACTIONS(1989), - [sym_float_literal] = ACTIONS(1989), + [ts_builtin_sym_end] = ACTIONS(2044), + [sym_identifier] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_macro_rules_BANG] = ACTIONS(2044), + [anon_sym_LPAREN] = ACTIONS(2044), + [anon_sym_LBRACK] = ACTIONS(2044), + [anon_sym_LBRACE] = ACTIONS(2044), + [anon_sym_RBRACE] = ACTIONS(2044), + [anon_sym_STAR] = ACTIONS(2044), + [anon_sym_u8] = ACTIONS(2046), + [anon_sym_i8] = ACTIONS(2046), + [anon_sym_u16] = ACTIONS(2046), + [anon_sym_i16] = ACTIONS(2046), + [anon_sym_u32] = ACTIONS(2046), + [anon_sym_i32] = ACTIONS(2046), + [anon_sym_u64] = ACTIONS(2046), + [anon_sym_i64] = ACTIONS(2046), + [anon_sym_u128] = ACTIONS(2046), + [anon_sym_i128] = ACTIONS(2046), + [anon_sym_isize] = ACTIONS(2046), + [anon_sym_usize] = ACTIONS(2046), + [anon_sym_f32] = ACTIONS(2046), + [anon_sym_f64] = ACTIONS(2046), + [anon_sym_bool] = ACTIONS(2046), + [anon_sym_str] = ACTIONS(2046), + [anon_sym_char] = ACTIONS(2046), + [anon_sym_DASH] = ACTIONS(2044), + [anon_sym_COLON_COLON] = ACTIONS(2044), + [anon_sym_BANG] = ACTIONS(2044), + [anon_sym_AMP] = ACTIONS(2044), + [anon_sym_POUND] = ACTIONS(2044), + [anon_sym_LT] = ACTIONS(2044), + [anon_sym_PIPE] = ACTIONS(2044), + [anon_sym_SQUOTE] = ACTIONS(2046), + [anon_sym_async] = ACTIONS(2046), + [anon_sym_break] = ACTIONS(2046), + [anon_sym_const] = ACTIONS(2046), + [anon_sym_continue] = ACTIONS(2046), + [anon_sym_default] = ACTIONS(2046), + [anon_sym_enum] = ACTIONS(2046), + [anon_sym_fn] = ACTIONS(2046), + [anon_sym_for] = ACTIONS(2046), + [anon_sym_if] = ACTIONS(2046), + [anon_sym_impl] = ACTIONS(2046), + [anon_sym_let] = ACTIONS(2046), + [anon_sym_loop] = ACTIONS(2046), + [anon_sym_match] = ACTIONS(2046), + [anon_sym_mod] = ACTIONS(2046), + [anon_sym_pub] = ACTIONS(2046), + [anon_sym_return] = ACTIONS(2046), + [anon_sym_static] = ACTIONS(2046), + [anon_sym_struct] = ACTIONS(2046), + [anon_sym_trait] = ACTIONS(2046), + [anon_sym_type] = ACTIONS(2046), + [anon_sym_union] = ACTIONS(2046), + [anon_sym_unsafe] = ACTIONS(2046), + [anon_sym_use] = ACTIONS(2046), + [anon_sym_while] = ACTIONS(2046), + [anon_sym_extern] = ACTIONS(2046), + [anon_sym_DOT_DOT] = ACTIONS(2044), + [anon_sym_yield] = ACTIONS(2046), + [anon_sym_move] = ACTIONS(2046), + [anon_sym_try] = ACTIONS(2046), + [sym_integer_literal] = ACTIONS(2044), + [aux_sym_string_literal_token1] = ACTIONS(2044), + [sym_char_literal] = ACTIONS(2044), + [anon_sym_true] = ACTIONS(2046), + [anon_sym_false] = ACTIONS(2046), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2046), + [sym_super] = ACTIONS(2046), + [sym_crate] = ACTIONS(2046), + [sym_metavariable] = ACTIONS(2044), + [sym_raw_string_literal] = ACTIONS(2044), + [sym_float_literal] = ACTIONS(2044), }, [568] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(1993), - [sym_identifier] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1993), - [anon_sym_macro_rules_BANG] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_LBRACK] = ACTIONS(1993), - [anon_sym_LBRACE] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1993), - [anon_sym_STAR] = ACTIONS(1993), - [anon_sym_u8] = ACTIONS(1995), - [anon_sym_i8] = ACTIONS(1995), - [anon_sym_u16] = ACTIONS(1995), - [anon_sym_i16] = ACTIONS(1995), - [anon_sym_u32] = ACTIONS(1995), - [anon_sym_i32] = ACTIONS(1995), - [anon_sym_u64] = ACTIONS(1995), - [anon_sym_i64] = ACTIONS(1995), - [anon_sym_u128] = ACTIONS(1995), - [anon_sym_i128] = ACTIONS(1995), - [anon_sym_isize] = ACTIONS(1995), - [anon_sym_usize] = ACTIONS(1995), - [anon_sym_f32] = ACTIONS(1995), - [anon_sym_f64] = ACTIONS(1995), - [anon_sym_bool] = ACTIONS(1995), - [anon_sym_str] = ACTIONS(1995), - [anon_sym_char] = ACTIONS(1995), - [anon_sym_DASH] = ACTIONS(1993), - [anon_sym_COLON_COLON] = ACTIONS(1993), - [anon_sym_BANG] = ACTIONS(1993), - [anon_sym_AMP] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(1993), - [anon_sym_LT] = ACTIONS(1993), - [anon_sym_PIPE] = ACTIONS(1993), - [anon_sym_SQUOTE] = ACTIONS(1995), - [anon_sym_async] = ACTIONS(1995), - [anon_sym_break] = ACTIONS(1995), - [anon_sym_const] = ACTIONS(1995), - [anon_sym_continue] = ACTIONS(1995), - [anon_sym_default] = ACTIONS(1995), - [anon_sym_enum] = ACTIONS(1995), - [anon_sym_fn] = ACTIONS(1995), - [anon_sym_for] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_impl] = ACTIONS(1995), - [anon_sym_let] = ACTIONS(1995), - [anon_sym_loop] = ACTIONS(1995), - [anon_sym_match] = ACTIONS(1995), - [anon_sym_mod] = ACTIONS(1995), - [anon_sym_pub] = ACTIONS(1995), - [anon_sym_return] = ACTIONS(1995), - [anon_sym_static] = ACTIONS(1995), - [anon_sym_struct] = ACTIONS(1995), - [anon_sym_trait] = ACTIONS(1995), - [anon_sym_type] = ACTIONS(1995), - [anon_sym_union] = ACTIONS(1995), - [anon_sym_unsafe] = ACTIONS(1995), - [anon_sym_use] = ACTIONS(1995), - [anon_sym_while] = ACTIONS(1995), - [anon_sym_extern] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_yield] = ACTIONS(1995), - [anon_sym_move] = ACTIONS(1995), - [anon_sym_try] = ACTIONS(1995), - [sym_integer_literal] = ACTIONS(1993), - [aux_sym_string_literal_token1] = ACTIONS(1993), - [sym_char_literal] = ACTIONS(1993), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1995), - [sym_super] = ACTIONS(1995), - [sym_crate] = ACTIONS(1995), - [sym_metavariable] = ACTIONS(1993), - [sym_raw_string_literal] = ACTIONS(1993), - [sym_float_literal] = ACTIONS(1993), + [ts_builtin_sym_end] = ACTIONS(2048), + [sym_identifier] = ACTIONS(2050), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_macro_rules_BANG] = ACTIONS(2048), + [anon_sym_LPAREN] = ACTIONS(2048), + [anon_sym_LBRACK] = ACTIONS(2048), + [anon_sym_LBRACE] = ACTIONS(2048), + [anon_sym_RBRACE] = ACTIONS(2048), + [anon_sym_STAR] = ACTIONS(2048), + [anon_sym_u8] = ACTIONS(2050), + [anon_sym_i8] = ACTIONS(2050), + [anon_sym_u16] = ACTIONS(2050), + [anon_sym_i16] = ACTIONS(2050), + [anon_sym_u32] = ACTIONS(2050), + [anon_sym_i32] = ACTIONS(2050), + [anon_sym_u64] = ACTIONS(2050), + [anon_sym_i64] = ACTIONS(2050), + [anon_sym_u128] = ACTIONS(2050), + [anon_sym_i128] = ACTIONS(2050), + [anon_sym_isize] = ACTIONS(2050), + [anon_sym_usize] = ACTIONS(2050), + [anon_sym_f32] = ACTIONS(2050), + [anon_sym_f64] = ACTIONS(2050), + [anon_sym_bool] = ACTIONS(2050), + [anon_sym_str] = ACTIONS(2050), + [anon_sym_char] = ACTIONS(2050), + [anon_sym_DASH] = ACTIONS(2048), + [anon_sym_COLON_COLON] = ACTIONS(2048), + [anon_sym_BANG] = ACTIONS(2048), + [anon_sym_AMP] = ACTIONS(2048), + [anon_sym_POUND] = ACTIONS(2048), + [anon_sym_LT] = ACTIONS(2048), + [anon_sym_PIPE] = ACTIONS(2048), + [anon_sym_SQUOTE] = ACTIONS(2050), + [anon_sym_async] = ACTIONS(2050), + [anon_sym_break] = ACTIONS(2050), + [anon_sym_const] = ACTIONS(2050), + [anon_sym_continue] = ACTIONS(2050), + [anon_sym_default] = ACTIONS(2050), + [anon_sym_enum] = ACTIONS(2050), + [anon_sym_fn] = ACTIONS(2050), + [anon_sym_for] = ACTIONS(2050), + [anon_sym_if] = ACTIONS(2050), + [anon_sym_impl] = ACTIONS(2050), + [anon_sym_let] = ACTIONS(2050), + [anon_sym_loop] = ACTIONS(2050), + [anon_sym_match] = ACTIONS(2050), + [anon_sym_mod] = ACTIONS(2050), + [anon_sym_pub] = ACTIONS(2050), + [anon_sym_return] = ACTIONS(2050), + [anon_sym_static] = ACTIONS(2050), + [anon_sym_struct] = ACTIONS(2050), + [anon_sym_trait] = ACTIONS(2050), + [anon_sym_type] = ACTIONS(2050), + [anon_sym_union] = ACTIONS(2050), + [anon_sym_unsafe] = ACTIONS(2050), + [anon_sym_use] = ACTIONS(2050), + [anon_sym_while] = ACTIONS(2050), + [anon_sym_extern] = ACTIONS(2050), + [anon_sym_DOT_DOT] = ACTIONS(2048), + [anon_sym_yield] = ACTIONS(2050), + [anon_sym_move] = ACTIONS(2050), + [anon_sym_try] = ACTIONS(2050), + [sym_integer_literal] = ACTIONS(2048), + [aux_sym_string_literal_token1] = ACTIONS(2048), + [sym_char_literal] = ACTIONS(2048), + [anon_sym_true] = ACTIONS(2050), + [anon_sym_false] = ACTIONS(2050), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2050), + [sym_super] = ACTIONS(2050), + [sym_crate] = ACTIONS(2050), + [sym_metavariable] = ACTIONS(2048), + [sym_raw_string_literal] = ACTIONS(2048), + [sym_float_literal] = ACTIONS(2048), }, [569] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(1997), - [sym_identifier] = ACTIONS(1999), - [anon_sym_SEMI] = ACTIONS(1997), - [anon_sym_macro_rules_BANG] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_LBRACK] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_STAR] = ACTIONS(1997), - [anon_sym_u8] = ACTIONS(1999), - [anon_sym_i8] = ACTIONS(1999), - [anon_sym_u16] = ACTIONS(1999), - [anon_sym_i16] = ACTIONS(1999), - [anon_sym_u32] = ACTIONS(1999), - [anon_sym_i32] = ACTIONS(1999), - [anon_sym_u64] = ACTIONS(1999), - [anon_sym_i64] = ACTIONS(1999), - [anon_sym_u128] = ACTIONS(1999), - [anon_sym_i128] = ACTIONS(1999), - [anon_sym_isize] = ACTIONS(1999), - [anon_sym_usize] = ACTIONS(1999), - [anon_sym_f32] = ACTIONS(1999), - [anon_sym_f64] = ACTIONS(1999), - [anon_sym_bool] = ACTIONS(1999), - [anon_sym_str] = ACTIONS(1999), - [anon_sym_char] = ACTIONS(1999), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_COLON_COLON] = ACTIONS(1997), - [anon_sym_BANG] = ACTIONS(1997), - [anon_sym_AMP] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1997), - [anon_sym_PIPE] = ACTIONS(1997), - [anon_sym_SQUOTE] = ACTIONS(1999), - [anon_sym_async] = ACTIONS(1999), - [anon_sym_break] = ACTIONS(1999), - [anon_sym_const] = ACTIONS(1999), - [anon_sym_continue] = ACTIONS(1999), - [anon_sym_default] = ACTIONS(1999), - [anon_sym_enum] = ACTIONS(1999), - [anon_sym_fn] = ACTIONS(1999), - [anon_sym_for] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_impl] = ACTIONS(1999), - [anon_sym_let] = ACTIONS(1999), - [anon_sym_loop] = ACTIONS(1999), - [anon_sym_match] = ACTIONS(1999), - [anon_sym_mod] = ACTIONS(1999), - [anon_sym_pub] = ACTIONS(1999), - [anon_sym_return] = ACTIONS(1999), - [anon_sym_static] = ACTIONS(1999), - [anon_sym_struct] = ACTIONS(1999), - [anon_sym_trait] = ACTIONS(1999), - [anon_sym_type] = ACTIONS(1999), - [anon_sym_union] = ACTIONS(1999), - [anon_sym_unsafe] = ACTIONS(1999), - [anon_sym_use] = ACTIONS(1999), - [anon_sym_while] = ACTIONS(1999), - [anon_sym_extern] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1997), - [anon_sym_yield] = ACTIONS(1999), - [anon_sym_move] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1999), - [sym_integer_literal] = ACTIONS(1997), - [aux_sym_string_literal_token1] = ACTIONS(1997), - [sym_char_literal] = ACTIONS(1997), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1999), - [sym_super] = ACTIONS(1999), - [sym_crate] = ACTIONS(1999), - [sym_metavariable] = ACTIONS(1997), - [sym_raw_string_literal] = ACTIONS(1997), - [sym_float_literal] = ACTIONS(1997), + [ts_builtin_sym_end] = ACTIONS(2052), + [sym_identifier] = ACTIONS(2054), + [anon_sym_SEMI] = ACTIONS(2052), + [anon_sym_macro_rules_BANG] = ACTIONS(2052), + [anon_sym_LPAREN] = ACTIONS(2052), + [anon_sym_LBRACK] = ACTIONS(2052), + [anon_sym_LBRACE] = ACTIONS(2052), + [anon_sym_RBRACE] = ACTIONS(2052), + [anon_sym_STAR] = ACTIONS(2052), + [anon_sym_u8] = ACTIONS(2054), + [anon_sym_i8] = ACTIONS(2054), + [anon_sym_u16] = ACTIONS(2054), + [anon_sym_i16] = ACTIONS(2054), + [anon_sym_u32] = ACTIONS(2054), + [anon_sym_i32] = ACTIONS(2054), + [anon_sym_u64] = ACTIONS(2054), + [anon_sym_i64] = ACTIONS(2054), + [anon_sym_u128] = ACTIONS(2054), + [anon_sym_i128] = ACTIONS(2054), + [anon_sym_isize] = ACTIONS(2054), + [anon_sym_usize] = ACTIONS(2054), + [anon_sym_f32] = ACTIONS(2054), + [anon_sym_f64] = ACTIONS(2054), + [anon_sym_bool] = ACTIONS(2054), + [anon_sym_str] = ACTIONS(2054), + [anon_sym_char] = ACTIONS(2054), + [anon_sym_DASH] = ACTIONS(2052), + [anon_sym_COLON_COLON] = ACTIONS(2052), + [anon_sym_BANG] = ACTIONS(2052), + [anon_sym_AMP] = ACTIONS(2052), + [anon_sym_POUND] = ACTIONS(2052), + [anon_sym_LT] = ACTIONS(2052), + [anon_sym_PIPE] = ACTIONS(2052), + [anon_sym_SQUOTE] = ACTIONS(2054), + [anon_sym_async] = ACTIONS(2054), + [anon_sym_break] = ACTIONS(2054), + [anon_sym_const] = ACTIONS(2054), + [anon_sym_continue] = ACTIONS(2054), + [anon_sym_default] = ACTIONS(2054), + [anon_sym_enum] = ACTIONS(2054), + [anon_sym_fn] = ACTIONS(2054), + [anon_sym_for] = ACTIONS(2054), + [anon_sym_if] = ACTIONS(2054), + [anon_sym_impl] = ACTIONS(2054), + [anon_sym_let] = ACTIONS(2054), + [anon_sym_loop] = ACTIONS(2054), + [anon_sym_match] = ACTIONS(2054), + [anon_sym_mod] = ACTIONS(2054), + [anon_sym_pub] = ACTIONS(2054), + [anon_sym_return] = ACTIONS(2054), + [anon_sym_static] = ACTIONS(2054), + [anon_sym_struct] = ACTIONS(2054), + [anon_sym_trait] = ACTIONS(2054), + [anon_sym_type] = ACTIONS(2054), + [anon_sym_union] = ACTIONS(2054), + [anon_sym_unsafe] = ACTIONS(2054), + [anon_sym_use] = ACTIONS(2054), + [anon_sym_while] = ACTIONS(2054), + [anon_sym_extern] = ACTIONS(2054), + [anon_sym_DOT_DOT] = ACTIONS(2052), + [anon_sym_yield] = ACTIONS(2054), + [anon_sym_move] = ACTIONS(2054), + [anon_sym_try] = ACTIONS(2054), + [sym_integer_literal] = ACTIONS(2052), + [aux_sym_string_literal_token1] = ACTIONS(2052), + [sym_char_literal] = ACTIONS(2052), + [anon_sym_true] = ACTIONS(2054), + [anon_sym_false] = ACTIONS(2054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2054), + [sym_super] = ACTIONS(2054), + [sym_crate] = ACTIONS(2054), + [sym_metavariable] = ACTIONS(2052), + [sym_raw_string_literal] = ACTIONS(2052), + [sym_float_literal] = ACTIONS(2052), }, [570] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(2001), - [sym_identifier] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_macro_rules_BANG] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_LBRACK] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_STAR] = ACTIONS(2001), - [anon_sym_u8] = ACTIONS(2003), - [anon_sym_i8] = ACTIONS(2003), - [anon_sym_u16] = ACTIONS(2003), - [anon_sym_i16] = ACTIONS(2003), - [anon_sym_u32] = ACTIONS(2003), - [anon_sym_i32] = ACTIONS(2003), - [anon_sym_u64] = ACTIONS(2003), - [anon_sym_i64] = ACTIONS(2003), - [anon_sym_u128] = ACTIONS(2003), - [anon_sym_i128] = ACTIONS(2003), - [anon_sym_isize] = ACTIONS(2003), - [anon_sym_usize] = ACTIONS(2003), - [anon_sym_f32] = ACTIONS(2003), - [anon_sym_f64] = ACTIONS(2003), - [anon_sym_bool] = ACTIONS(2003), - [anon_sym_str] = ACTIONS(2003), - [anon_sym_char] = ACTIONS(2003), - [anon_sym_DASH] = ACTIONS(2001), - [anon_sym_COLON_COLON] = ACTIONS(2001), - [anon_sym_BANG] = ACTIONS(2001), - [anon_sym_AMP] = ACTIONS(2001), - [anon_sym_POUND] = ACTIONS(2001), - [anon_sym_LT] = ACTIONS(2001), - [anon_sym_PIPE] = ACTIONS(2001), - [anon_sym_SQUOTE] = ACTIONS(2003), - [anon_sym_async] = ACTIONS(2003), - [anon_sym_break] = ACTIONS(2003), - [anon_sym_const] = ACTIONS(2003), - [anon_sym_continue] = ACTIONS(2003), - [anon_sym_default] = ACTIONS(2003), - [anon_sym_enum] = ACTIONS(2003), - [anon_sym_fn] = ACTIONS(2003), - [anon_sym_for] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_impl] = ACTIONS(2003), - [anon_sym_let] = ACTIONS(2003), - [anon_sym_loop] = ACTIONS(2003), - [anon_sym_match] = ACTIONS(2003), - [anon_sym_mod] = ACTIONS(2003), - [anon_sym_pub] = ACTIONS(2003), - [anon_sym_return] = ACTIONS(2003), - [anon_sym_static] = ACTIONS(2003), - [anon_sym_struct] = ACTIONS(2003), - [anon_sym_trait] = ACTIONS(2003), - [anon_sym_type] = ACTIONS(2003), - [anon_sym_union] = ACTIONS(2003), - [anon_sym_unsafe] = ACTIONS(2003), - [anon_sym_use] = ACTIONS(2003), - [anon_sym_while] = ACTIONS(2003), - [anon_sym_extern] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2001), - [anon_sym_yield] = ACTIONS(2003), - [anon_sym_move] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2003), - [sym_integer_literal] = ACTIONS(2001), - [aux_sym_string_literal_token1] = ACTIONS(2001), - [sym_char_literal] = ACTIONS(2001), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2003), - [sym_super] = ACTIONS(2003), - [sym_crate] = ACTIONS(2003), - [sym_metavariable] = ACTIONS(2001), - [sym_raw_string_literal] = ACTIONS(2001), - [sym_float_literal] = ACTIONS(2001), + [ts_builtin_sym_end] = ACTIONS(2056), + [sym_identifier] = ACTIONS(2058), + [anon_sym_SEMI] = ACTIONS(2056), + [anon_sym_macro_rules_BANG] = ACTIONS(2056), + [anon_sym_LPAREN] = ACTIONS(2056), + [anon_sym_LBRACK] = ACTIONS(2056), + [anon_sym_LBRACE] = ACTIONS(2056), + [anon_sym_RBRACE] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2056), + [anon_sym_u8] = ACTIONS(2058), + [anon_sym_i8] = ACTIONS(2058), + [anon_sym_u16] = ACTIONS(2058), + [anon_sym_i16] = ACTIONS(2058), + [anon_sym_u32] = ACTIONS(2058), + [anon_sym_i32] = ACTIONS(2058), + [anon_sym_u64] = ACTIONS(2058), + [anon_sym_i64] = ACTIONS(2058), + [anon_sym_u128] = ACTIONS(2058), + [anon_sym_i128] = ACTIONS(2058), + [anon_sym_isize] = ACTIONS(2058), + [anon_sym_usize] = ACTIONS(2058), + [anon_sym_f32] = ACTIONS(2058), + [anon_sym_f64] = ACTIONS(2058), + [anon_sym_bool] = ACTIONS(2058), + [anon_sym_str] = ACTIONS(2058), + [anon_sym_char] = ACTIONS(2058), + [anon_sym_DASH] = ACTIONS(2056), + [anon_sym_COLON_COLON] = ACTIONS(2056), + [anon_sym_BANG] = ACTIONS(2056), + [anon_sym_AMP] = ACTIONS(2056), + [anon_sym_POUND] = ACTIONS(2056), + [anon_sym_LT] = ACTIONS(2056), + [anon_sym_PIPE] = ACTIONS(2056), + [anon_sym_SQUOTE] = ACTIONS(2058), + [anon_sym_async] = ACTIONS(2058), + [anon_sym_break] = ACTIONS(2058), + [anon_sym_const] = ACTIONS(2058), + [anon_sym_continue] = ACTIONS(2058), + [anon_sym_default] = ACTIONS(2058), + [anon_sym_enum] = ACTIONS(2058), + [anon_sym_fn] = ACTIONS(2058), + [anon_sym_for] = ACTIONS(2058), + [anon_sym_if] = ACTIONS(2058), + [anon_sym_impl] = ACTIONS(2058), + [anon_sym_let] = ACTIONS(2058), + [anon_sym_loop] = ACTIONS(2058), + [anon_sym_match] = ACTIONS(2058), + [anon_sym_mod] = ACTIONS(2058), + [anon_sym_pub] = ACTIONS(2058), + [anon_sym_return] = ACTIONS(2058), + [anon_sym_static] = ACTIONS(2058), + [anon_sym_struct] = ACTIONS(2058), + [anon_sym_trait] = ACTIONS(2058), + [anon_sym_type] = ACTIONS(2058), + [anon_sym_union] = ACTIONS(2058), + [anon_sym_unsafe] = ACTIONS(2058), + [anon_sym_use] = ACTIONS(2058), + [anon_sym_while] = ACTIONS(2058), + [anon_sym_extern] = ACTIONS(2058), + [anon_sym_DOT_DOT] = ACTIONS(2056), + [anon_sym_yield] = ACTIONS(2058), + [anon_sym_move] = ACTIONS(2058), + [anon_sym_try] = ACTIONS(2058), + [sym_integer_literal] = ACTIONS(2056), + [aux_sym_string_literal_token1] = ACTIONS(2056), + [sym_char_literal] = ACTIONS(2056), + [anon_sym_true] = ACTIONS(2058), + [anon_sym_false] = ACTIONS(2058), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2058), + [sym_super] = ACTIONS(2058), + [sym_crate] = ACTIONS(2058), + [sym_metavariable] = ACTIONS(2056), + [sym_raw_string_literal] = ACTIONS(2056), + [sym_float_literal] = ACTIONS(2056), }, [571] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2005), - [sym_identifier] = ACTIONS(2007), - [anon_sym_SEMI] = ACTIONS(2005), - [anon_sym_macro_rules_BANG] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_LBRACK] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_STAR] = ACTIONS(2005), - [anon_sym_u8] = ACTIONS(2007), - [anon_sym_i8] = ACTIONS(2007), - [anon_sym_u16] = ACTIONS(2007), - [anon_sym_i16] = ACTIONS(2007), - [anon_sym_u32] = ACTIONS(2007), - [anon_sym_i32] = ACTIONS(2007), - [anon_sym_u64] = ACTIONS(2007), - [anon_sym_i64] = ACTIONS(2007), - [anon_sym_u128] = ACTIONS(2007), - [anon_sym_i128] = ACTIONS(2007), - [anon_sym_isize] = ACTIONS(2007), - [anon_sym_usize] = ACTIONS(2007), - [anon_sym_f32] = ACTIONS(2007), - [anon_sym_f64] = ACTIONS(2007), - [anon_sym_bool] = ACTIONS(2007), - [anon_sym_str] = ACTIONS(2007), - [anon_sym_char] = ACTIONS(2007), - [anon_sym_DASH] = ACTIONS(2005), - [anon_sym_COLON_COLON] = ACTIONS(2005), - [anon_sym_BANG] = ACTIONS(2005), - [anon_sym_AMP] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(2005), - [anon_sym_LT] = ACTIONS(2005), - [anon_sym_PIPE] = ACTIONS(2005), - [anon_sym_SQUOTE] = ACTIONS(2007), - [anon_sym_async] = ACTIONS(2007), - [anon_sym_break] = ACTIONS(2007), - [anon_sym_const] = ACTIONS(2007), - [anon_sym_continue] = ACTIONS(2007), - [anon_sym_default] = ACTIONS(2007), - [anon_sym_enum] = ACTIONS(2007), - [anon_sym_fn] = ACTIONS(2007), - [anon_sym_for] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_impl] = ACTIONS(2007), - [anon_sym_let] = ACTIONS(2007), - [anon_sym_loop] = ACTIONS(2007), - [anon_sym_match] = ACTIONS(2007), - [anon_sym_mod] = ACTIONS(2007), - [anon_sym_pub] = ACTIONS(2007), - [anon_sym_return] = ACTIONS(2007), - [anon_sym_static] = ACTIONS(2007), - [anon_sym_struct] = ACTIONS(2007), - [anon_sym_trait] = ACTIONS(2007), - [anon_sym_type] = ACTIONS(2007), - [anon_sym_union] = ACTIONS(2007), - [anon_sym_unsafe] = ACTIONS(2007), - [anon_sym_use] = ACTIONS(2007), - [anon_sym_while] = ACTIONS(2007), - [anon_sym_extern] = ACTIONS(2007), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_yield] = ACTIONS(2007), - [anon_sym_move] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2007), - [sym_integer_literal] = ACTIONS(2005), - [aux_sym_string_literal_token1] = ACTIONS(2005), - [sym_char_literal] = ACTIONS(2005), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2007), - [sym_super] = ACTIONS(2007), - [sym_crate] = ACTIONS(2007), - [sym_metavariable] = ACTIONS(2005), - [sym_raw_string_literal] = ACTIONS(2005), - [sym_float_literal] = ACTIONS(2005), + [ts_builtin_sym_end] = ACTIONS(2060), + [sym_identifier] = ACTIONS(2062), + [anon_sym_SEMI] = ACTIONS(2060), + [anon_sym_macro_rules_BANG] = ACTIONS(2060), + [anon_sym_LPAREN] = ACTIONS(2060), + [anon_sym_LBRACK] = ACTIONS(2060), + [anon_sym_LBRACE] = ACTIONS(2060), + [anon_sym_RBRACE] = ACTIONS(2060), + [anon_sym_STAR] = ACTIONS(2060), + [anon_sym_u8] = ACTIONS(2062), + [anon_sym_i8] = ACTIONS(2062), + [anon_sym_u16] = ACTIONS(2062), + [anon_sym_i16] = ACTIONS(2062), + [anon_sym_u32] = ACTIONS(2062), + [anon_sym_i32] = ACTIONS(2062), + [anon_sym_u64] = ACTIONS(2062), + [anon_sym_i64] = ACTIONS(2062), + [anon_sym_u128] = ACTIONS(2062), + [anon_sym_i128] = ACTIONS(2062), + [anon_sym_isize] = ACTIONS(2062), + [anon_sym_usize] = ACTIONS(2062), + [anon_sym_f32] = ACTIONS(2062), + [anon_sym_f64] = ACTIONS(2062), + [anon_sym_bool] = ACTIONS(2062), + [anon_sym_str] = ACTIONS(2062), + [anon_sym_char] = ACTIONS(2062), + [anon_sym_DASH] = ACTIONS(2060), + [anon_sym_COLON_COLON] = ACTIONS(2060), + [anon_sym_BANG] = ACTIONS(2060), + [anon_sym_AMP] = ACTIONS(2060), + [anon_sym_POUND] = ACTIONS(2060), + [anon_sym_LT] = ACTIONS(2060), + [anon_sym_PIPE] = ACTIONS(2060), + [anon_sym_SQUOTE] = ACTIONS(2062), + [anon_sym_async] = ACTIONS(2062), + [anon_sym_break] = ACTIONS(2062), + [anon_sym_const] = ACTIONS(2062), + [anon_sym_continue] = ACTIONS(2062), + [anon_sym_default] = ACTIONS(2062), + [anon_sym_enum] = ACTIONS(2062), + [anon_sym_fn] = ACTIONS(2062), + [anon_sym_for] = ACTIONS(2062), + [anon_sym_if] = ACTIONS(2062), + [anon_sym_impl] = ACTIONS(2062), + [anon_sym_let] = ACTIONS(2062), + [anon_sym_loop] = ACTIONS(2062), + [anon_sym_match] = ACTIONS(2062), + [anon_sym_mod] = ACTIONS(2062), + [anon_sym_pub] = ACTIONS(2062), + [anon_sym_return] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2062), + [anon_sym_struct] = ACTIONS(2062), + [anon_sym_trait] = ACTIONS(2062), + [anon_sym_type] = ACTIONS(2062), + [anon_sym_union] = ACTIONS(2062), + [anon_sym_unsafe] = ACTIONS(2062), + [anon_sym_use] = ACTIONS(2062), + [anon_sym_while] = ACTIONS(2062), + [anon_sym_extern] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2060), + [anon_sym_yield] = ACTIONS(2062), + [anon_sym_move] = ACTIONS(2062), + [anon_sym_try] = ACTIONS(2062), + [sym_integer_literal] = ACTIONS(2060), + [aux_sym_string_literal_token1] = ACTIONS(2060), + [sym_char_literal] = ACTIONS(2060), + [anon_sym_true] = ACTIONS(2062), + [anon_sym_false] = ACTIONS(2062), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2062), + [sym_super] = ACTIONS(2062), + [sym_crate] = ACTIONS(2062), + [sym_metavariable] = ACTIONS(2060), + [sym_raw_string_literal] = ACTIONS(2060), + [sym_float_literal] = ACTIONS(2060), }, [572] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_macro_rules_BANG] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_LBRACK] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_STAR] = ACTIONS(2009), - [anon_sym_u8] = ACTIONS(2011), - [anon_sym_i8] = ACTIONS(2011), - [anon_sym_u16] = ACTIONS(2011), - [anon_sym_i16] = ACTIONS(2011), - [anon_sym_u32] = ACTIONS(2011), - [anon_sym_i32] = ACTIONS(2011), - [anon_sym_u64] = ACTIONS(2011), - [anon_sym_i64] = ACTIONS(2011), - [anon_sym_u128] = ACTIONS(2011), - [anon_sym_i128] = ACTIONS(2011), - [anon_sym_isize] = ACTIONS(2011), - [anon_sym_usize] = ACTIONS(2011), - [anon_sym_f32] = ACTIONS(2011), - [anon_sym_f64] = ACTIONS(2011), - [anon_sym_bool] = ACTIONS(2011), - [anon_sym_str] = ACTIONS(2011), - [anon_sym_char] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2009), - [anon_sym_COLON_COLON] = ACTIONS(2009), - [anon_sym_BANG] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2009), - [anon_sym_PIPE] = ACTIONS(2009), - [anon_sym_SQUOTE] = ACTIONS(2011), - [anon_sym_async] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_default] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_impl] = ACTIONS(2011), - [anon_sym_let] = ACTIONS(2011), - [anon_sym_loop] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_mod] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_static] = ACTIONS(2011), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_trait] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_use] = ACTIONS(2011), - [anon_sym_while] = ACTIONS(2011), - [anon_sym_extern] = ACTIONS(2011), - [anon_sym_DOT_DOT] = ACTIONS(2009), - [anon_sym_yield] = ACTIONS(2011), - [anon_sym_move] = ACTIONS(2011), - [anon_sym_try] = ACTIONS(2011), - [sym_integer_literal] = ACTIONS(2009), - [aux_sym_string_literal_token1] = ACTIONS(2009), - [sym_char_literal] = ACTIONS(2009), - [anon_sym_true] = ACTIONS(2011), - [anon_sym_false] = ACTIONS(2011), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2011), - [sym_super] = ACTIONS(2011), - [sym_crate] = ACTIONS(2011), - [sym_metavariable] = ACTIONS(2009), - [sym_raw_string_literal] = ACTIONS(2009), - [sym_float_literal] = ACTIONS(2009), + [ts_builtin_sym_end] = ACTIONS(2064), + [sym_identifier] = ACTIONS(2066), + [anon_sym_SEMI] = ACTIONS(2064), + [anon_sym_macro_rules_BANG] = ACTIONS(2064), + [anon_sym_LPAREN] = ACTIONS(2064), + [anon_sym_LBRACK] = ACTIONS(2064), + [anon_sym_LBRACE] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2064), + [anon_sym_STAR] = ACTIONS(2064), + [anon_sym_u8] = ACTIONS(2066), + [anon_sym_i8] = ACTIONS(2066), + [anon_sym_u16] = ACTIONS(2066), + [anon_sym_i16] = ACTIONS(2066), + [anon_sym_u32] = ACTIONS(2066), + [anon_sym_i32] = ACTIONS(2066), + [anon_sym_u64] = ACTIONS(2066), + [anon_sym_i64] = ACTIONS(2066), + [anon_sym_u128] = ACTIONS(2066), + [anon_sym_i128] = ACTIONS(2066), + [anon_sym_isize] = ACTIONS(2066), + [anon_sym_usize] = ACTIONS(2066), + [anon_sym_f32] = ACTIONS(2066), + [anon_sym_f64] = ACTIONS(2066), + [anon_sym_bool] = ACTIONS(2066), + [anon_sym_str] = ACTIONS(2066), + [anon_sym_char] = ACTIONS(2066), + [anon_sym_DASH] = ACTIONS(2064), + [anon_sym_COLON_COLON] = ACTIONS(2064), + [anon_sym_BANG] = ACTIONS(2064), + [anon_sym_AMP] = ACTIONS(2064), + [anon_sym_POUND] = ACTIONS(2064), + [anon_sym_LT] = ACTIONS(2064), + [anon_sym_PIPE] = ACTIONS(2064), + [anon_sym_SQUOTE] = ACTIONS(2066), + [anon_sym_async] = ACTIONS(2066), + [anon_sym_break] = ACTIONS(2066), + [anon_sym_const] = ACTIONS(2066), + [anon_sym_continue] = ACTIONS(2066), + [anon_sym_default] = ACTIONS(2066), + [anon_sym_enum] = ACTIONS(2066), + [anon_sym_fn] = ACTIONS(2066), + [anon_sym_for] = ACTIONS(2066), + [anon_sym_if] = ACTIONS(2066), + [anon_sym_impl] = ACTIONS(2066), + [anon_sym_let] = ACTIONS(2066), + [anon_sym_loop] = ACTIONS(2066), + [anon_sym_match] = ACTIONS(2066), + [anon_sym_mod] = ACTIONS(2066), + [anon_sym_pub] = ACTIONS(2066), + [anon_sym_return] = ACTIONS(2066), + [anon_sym_static] = ACTIONS(2066), + [anon_sym_struct] = ACTIONS(2066), + [anon_sym_trait] = ACTIONS(2066), + [anon_sym_type] = ACTIONS(2066), + [anon_sym_union] = ACTIONS(2066), + [anon_sym_unsafe] = ACTIONS(2066), + [anon_sym_use] = ACTIONS(2066), + [anon_sym_while] = ACTIONS(2066), + [anon_sym_extern] = ACTIONS(2066), + [anon_sym_DOT_DOT] = ACTIONS(2064), + [anon_sym_yield] = ACTIONS(2066), + [anon_sym_move] = ACTIONS(2066), + [anon_sym_try] = ACTIONS(2066), + [sym_integer_literal] = ACTIONS(2064), + [aux_sym_string_literal_token1] = ACTIONS(2064), + [sym_char_literal] = ACTIONS(2064), + [anon_sym_true] = ACTIONS(2066), + [anon_sym_false] = ACTIONS(2066), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2066), + [sym_super] = ACTIONS(2066), + [sym_crate] = ACTIONS(2066), + [sym_metavariable] = ACTIONS(2064), + [sym_raw_string_literal] = ACTIONS(2064), + [sym_float_literal] = ACTIONS(2064), }, [573] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(2013), - [sym_identifier] = ACTIONS(2015), - [anon_sym_SEMI] = ACTIONS(2013), - [anon_sym_macro_rules_BANG] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_LBRACK] = ACTIONS(2013), - [anon_sym_LBRACE] = ACTIONS(2013), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_STAR] = ACTIONS(2013), - [anon_sym_u8] = ACTIONS(2015), - [anon_sym_i8] = ACTIONS(2015), - [anon_sym_u16] = ACTIONS(2015), - [anon_sym_i16] = ACTIONS(2015), - [anon_sym_u32] = ACTIONS(2015), - [anon_sym_i32] = ACTIONS(2015), - [anon_sym_u64] = ACTIONS(2015), - [anon_sym_i64] = ACTIONS(2015), - [anon_sym_u128] = ACTIONS(2015), - [anon_sym_i128] = ACTIONS(2015), - [anon_sym_isize] = ACTIONS(2015), - [anon_sym_usize] = ACTIONS(2015), - [anon_sym_f32] = ACTIONS(2015), - [anon_sym_f64] = ACTIONS(2015), - [anon_sym_bool] = ACTIONS(2015), - [anon_sym_str] = ACTIONS(2015), - [anon_sym_char] = ACTIONS(2015), - [anon_sym_DASH] = ACTIONS(2013), - [anon_sym_COLON_COLON] = ACTIONS(2013), - [anon_sym_BANG] = ACTIONS(2013), - [anon_sym_AMP] = ACTIONS(2013), - [anon_sym_POUND] = ACTIONS(2013), - [anon_sym_LT] = ACTIONS(2013), - [anon_sym_PIPE] = ACTIONS(2013), - [anon_sym_SQUOTE] = ACTIONS(2015), - [anon_sym_async] = ACTIONS(2015), - [anon_sym_break] = ACTIONS(2015), - [anon_sym_const] = ACTIONS(2015), - [anon_sym_continue] = ACTIONS(2015), - [anon_sym_default] = ACTIONS(2015), - [anon_sym_enum] = ACTIONS(2015), - [anon_sym_fn] = ACTIONS(2015), - [anon_sym_for] = ACTIONS(2015), - [anon_sym_if] = ACTIONS(2015), - [anon_sym_impl] = ACTIONS(2015), - [anon_sym_let] = ACTIONS(2015), - [anon_sym_loop] = ACTIONS(2015), - [anon_sym_match] = ACTIONS(2015), - [anon_sym_mod] = ACTIONS(2015), - [anon_sym_pub] = ACTIONS(2015), - [anon_sym_return] = ACTIONS(2015), - [anon_sym_static] = ACTIONS(2015), - [anon_sym_struct] = ACTIONS(2015), - [anon_sym_trait] = ACTIONS(2015), - [anon_sym_type] = ACTIONS(2015), - [anon_sym_union] = ACTIONS(2015), - [anon_sym_unsafe] = ACTIONS(2015), - [anon_sym_use] = ACTIONS(2015), - [anon_sym_while] = ACTIONS(2015), - [anon_sym_extern] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2015), - [anon_sym_move] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2015), - [sym_integer_literal] = ACTIONS(2013), - [aux_sym_string_literal_token1] = ACTIONS(2013), - [sym_char_literal] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(2015), - [anon_sym_false] = ACTIONS(2015), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2015), - [sym_super] = ACTIONS(2015), - [sym_crate] = ACTIONS(2015), - [sym_metavariable] = ACTIONS(2013), - [sym_raw_string_literal] = ACTIONS(2013), - [sym_float_literal] = ACTIONS(2013), + [ts_builtin_sym_end] = ACTIONS(2068), + [sym_identifier] = ACTIONS(2070), + [anon_sym_SEMI] = ACTIONS(2068), + [anon_sym_macro_rules_BANG] = ACTIONS(2068), + [anon_sym_LPAREN] = ACTIONS(2068), + [anon_sym_LBRACK] = ACTIONS(2068), + [anon_sym_LBRACE] = ACTIONS(2068), + [anon_sym_RBRACE] = ACTIONS(2068), + [anon_sym_STAR] = ACTIONS(2068), + [anon_sym_u8] = ACTIONS(2070), + [anon_sym_i8] = ACTIONS(2070), + [anon_sym_u16] = ACTIONS(2070), + [anon_sym_i16] = ACTIONS(2070), + [anon_sym_u32] = ACTIONS(2070), + [anon_sym_i32] = ACTIONS(2070), + [anon_sym_u64] = ACTIONS(2070), + [anon_sym_i64] = ACTIONS(2070), + [anon_sym_u128] = ACTIONS(2070), + [anon_sym_i128] = ACTIONS(2070), + [anon_sym_isize] = ACTIONS(2070), + [anon_sym_usize] = ACTIONS(2070), + [anon_sym_f32] = ACTIONS(2070), + [anon_sym_f64] = ACTIONS(2070), + [anon_sym_bool] = ACTIONS(2070), + [anon_sym_str] = ACTIONS(2070), + [anon_sym_char] = ACTIONS(2070), + [anon_sym_DASH] = ACTIONS(2068), + [anon_sym_COLON_COLON] = ACTIONS(2068), + [anon_sym_BANG] = ACTIONS(2068), + [anon_sym_AMP] = ACTIONS(2068), + [anon_sym_POUND] = ACTIONS(2068), + [anon_sym_LT] = ACTIONS(2068), + [anon_sym_PIPE] = ACTIONS(2068), + [anon_sym_SQUOTE] = ACTIONS(2070), + [anon_sym_async] = ACTIONS(2070), + [anon_sym_break] = ACTIONS(2070), + [anon_sym_const] = ACTIONS(2070), + [anon_sym_continue] = ACTIONS(2070), + [anon_sym_default] = ACTIONS(2070), + [anon_sym_enum] = ACTIONS(2070), + [anon_sym_fn] = ACTIONS(2070), + [anon_sym_for] = ACTIONS(2070), + [anon_sym_if] = ACTIONS(2070), + [anon_sym_impl] = ACTIONS(2070), + [anon_sym_let] = ACTIONS(2070), + [anon_sym_loop] = ACTIONS(2070), + [anon_sym_match] = ACTIONS(2070), + [anon_sym_mod] = ACTIONS(2070), + [anon_sym_pub] = ACTIONS(2070), + [anon_sym_return] = ACTIONS(2070), + [anon_sym_static] = ACTIONS(2070), + [anon_sym_struct] = ACTIONS(2070), + [anon_sym_trait] = ACTIONS(2070), + [anon_sym_type] = ACTIONS(2070), + [anon_sym_union] = ACTIONS(2070), + [anon_sym_unsafe] = ACTIONS(2070), + [anon_sym_use] = ACTIONS(2070), + [anon_sym_while] = ACTIONS(2070), + [anon_sym_extern] = ACTIONS(2070), + [anon_sym_DOT_DOT] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2070), + [anon_sym_move] = ACTIONS(2070), + [anon_sym_try] = ACTIONS(2070), + [sym_integer_literal] = ACTIONS(2068), + [aux_sym_string_literal_token1] = ACTIONS(2068), + [sym_char_literal] = ACTIONS(2068), + [anon_sym_true] = ACTIONS(2070), + [anon_sym_false] = ACTIONS(2070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2070), + [sym_super] = ACTIONS(2070), + [sym_crate] = ACTIONS(2070), + [sym_metavariable] = ACTIONS(2068), + [sym_raw_string_literal] = ACTIONS(2068), + [sym_float_literal] = ACTIONS(2068), }, [574] = { + [sym_empty_statement] = STATE(1143), + [sym_macro_definition] = STATE(1143), + [sym_attribute_item] = STATE(1143), + [sym_inner_attribute_item] = STATE(1143), + [sym_mod_item] = STATE(1143), + [sym_foreign_mod_item] = STATE(1143), + [sym_struct_item] = STATE(1143), + [sym_union_item] = STATE(1143), + [sym_enum_item] = STATE(1143), + [sym_extern_crate_declaration] = STATE(1143), + [sym_const_item] = STATE(1143), + [sym_static_item] = STATE(1143), + [sym_type_item] = STATE(1143), + [sym_function_item] = STATE(1143), + [sym_function_signature_item] = STATE(1143), + [sym_function_modifiers] = STATE(3554), + [sym_impl_item] = STATE(1143), + [sym_trait_item] = STATE(1143), + [sym_associated_type] = STATE(1143), + [sym_let_declaration] = STATE(1143), + [sym_use_declaration] = STATE(1143), + [sym_extern_modifier] = STATE(2155), + [sym_visibility_modifier] = STATE(1923), + [sym_bracketed_type] = STATE(3383), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_macro_invocation] = STATE(1143), + [sym_scoped_identifier] = STATE(3220), [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2017), - [sym_identifier] = ACTIONS(2019), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_macro_rules_BANG] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_LBRACE] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_STAR] = ACTIONS(2017), - [anon_sym_u8] = ACTIONS(2019), - [anon_sym_i8] = ACTIONS(2019), - [anon_sym_u16] = ACTIONS(2019), - [anon_sym_i16] = ACTIONS(2019), - [anon_sym_u32] = ACTIONS(2019), - [anon_sym_i32] = ACTIONS(2019), - [anon_sym_u64] = ACTIONS(2019), - [anon_sym_i64] = ACTIONS(2019), - [anon_sym_u128] = ACTIONS(2019), - [anon_sym_i128] = ACTIONS(2019), - [anon_sym_isize] = ACTIONS(2019), - [anon_sym_usize] = ACTIONS(2019), - [anon_sym_f32] = ACTIONS(2019), - [anon_sym_f64] = ACTIONS(2019), - [anon_sym_bool] = ACTIONS(2019), - [anon_sym_str] = ACTIONS(2019), - [anon_sym_char] = ACTIONS(2019), - [anon_sym_DASH] = ACTIONS(2017), - [anon_sym_COLON_COLON] = ACTIONS(2017), - [anon_sym_BANG] = ACTIONS(2017), - [anon_sym_AMP] = ACTIONS(2017), - [anon_sym_POUND] = ACTIONS(2017), - [anon_sym_LT] = ACTIONS(2017), - [anon_sym_PIPE] = ACTIONS(2017), - [anon_sym_SQUOTE] = ACTIONS(2019), - [anon_sym_async] = ACTIONS(2019), - [anon_sym_break] = ACTIONS(2019), - [anon_sym_const] = ACTIONS(2019), - [anon_sym_continue] = ACTIONS(2019), - [anon_sym_default] = ACTIONS(2019), - [anon_sym_enum] = ACTIONS(2019), - [anon_sym_fn] = ACTIONS(2019), - [anon_sym_for] = ACTIONS(2019), - [anon_sym_if] = ACTIONS(2019), - [anon_sym_impl] = ACTIONS(2019), - [anon_sym_let] = ACTIONS(2019), - [anon_sym_loop] = ACTIONS(2019), - [anon_sym_match] = ACTIONS(2019), - [anon_sym_mod] = ACTIONS(2019), - [anon_sym_pub] = ACTIONS(2019), - [anon_sym_return] = ACTIONS(2019), - [anon_sym_static] = ACTIONS(2019), - [anon_sym_struct] = ACTIONS(2019), - [anon_sym_trait] = ACTIONS(2019), - [anon_sym_type] = ACTIONS(2019), - [anon_sym_union] = ACTIONS(2019), - [anon_sym_unsafe] = ACTIONS(2019), - [anon_sym_use] = ACTIONS(2019), - [anon_sym_while] = ACTIONS(2019), - [anon_sym_extern] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2019), - [anon_sym_move] = ACTIONS(2019), - [anon_sym_try] = ACTIONS(2019), - [sym_integer_literal] = ACTIONS(2017), - [aux_sym_string_literal_token1] = ACTIONS(2017), - [sym_char_literal] = ACTIONS(2017), - [anon_sym_true] = ACTIONS(2019), - [anon_sym_false] = ACTIONS(2019), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2019), - [sym_super] = ACTIONS(2019), - [sym_crate] = ACTIONS(2019), - [sym_metavariable] = ACTIONS(2017), - [sym_raw_string_literal] = ACTIONS(2017), - [sym_float_literal] = ACTIONS(2017), + [aux_sym_declaration_list_repeat1] = STATE(475), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_macro_rules_BANG] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_u8] = ACTIONS(1644), + [anon_sym_i8] = ACTIONS(1644), + [anon_sym_u16] = ACTIONS(1644), + [anon_sym_i16] = ACTIONS(1644), + [anon_sym_u32] = ACTIONS(1644), + [anon_sym_i32] = ACTIONS(1644), + [anon_sym_u64] = ACTIONS(1644), + [anon_sym_i64] = ACTIONS(1644), + [anon_sym_u128] = ACTIONS(1644), + [anon_sym_i128] = ACTIONS(1644), + [anon_sym_isize] = ACTIONS(1644), + [anon_sym_usize] = ACTIONS(1644), + [anon_sym_f32] = ACTIONS(1644), + [anon_sym_f64] = ACTIONS(1644), + [anon_sym_bool] = ACTIONS(1644), + [anon_sym_str] = ACTIONS(1644), + [anon_sym_char] = ACTIONS(1644), + [anon_sym_COLON_COLON] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_default] = ACTIONS(1652), + [anon_sym_enum] = ACTIONS(1654), + [anon_sym_fn] = ACTIONS(1656), + [anon_sym_impl] = ACTIONS(1658), + [anon_sym_let] = ACTIONS(1660), + [anon_sym_mod] = ACTIONS(1662), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_struct] = ACTIONS(1666), + [anon_sym_trait] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(1670), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_unsafe] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1680), + [sym_super] = ACTIONS(1680), + [sym_crate] = ACTIONS(1682), + [sym_metavariable] = ACTIONS(1684), }, [575] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2021), - [sym_identifier] = ACTIONS(2023), - [anon_sym_SEMI] = ACTIONS(2021), - [anon_sym_macro_rules_BANG] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_LBRACK] = ACTIONS(2021), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_u8] = ACTIONS(2023), - [anon_sym_i8] = ACTIONS(2023), - [anon_sym_u16] = ACTIONS(2023), - [anon_sym_i16] = ACTIONS(2023), - [anon_sym_u32] = ACTIONS(2023), - [anon_sym_i32] = ACTIONS(2023), - [anon_sym_u64] = ACTIONS(2023), - [anon_sym_i64] = ACTIONS(2023), - [anon_sym_u128] = ACTIONS(2023), - [anon_sym_i128] = ACTIONS(2023), - [anon_sym_isize] = ACTIONS(2023), - [anon_sym_usize] = ACTIONS(2023), - [anon_sym_f32] = ACTIONS(2023), - [anon_sym_f64] = ACTIONS(2023), - [anon_sym_bool] = ACTIONS(2023), - [anon_sym_str] = ACTIONS(2023), - [anon_sym_char] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2021), - [anon_sym_COLON_COLON] = ACTIONS(2021), - [anon_sym_BANG] = ACTIONS(2021), - [anon_sym_AMP] = ACTIONS(2021), - [anon_sym_POUND] = ACTIONS(2021), - [anon_sym_LT] = ACTIONS(2021), - [anon_sym_PIPE] = ACTIONS(2021), - [anon_sym_SQUOTE] = ACTIONS(2023), - [anon_sym_async] = ACTIONS(2023), - [anon_sym_break] = ACTIONS(2023), - [anon_sym_const] = ACTIONS(2023), - [anon_sym_continue] = ACTIONS(2023), - [anon_sym_default] = ACTIONS(2023), - [anon_sym_enum] = ACTIONS(2023), - [anon_sym_fn] = ACTIONS(2023), - [anon_sym_for] = ACTIONS(2023), - [anon_sym_if] = ACTIONS(2023), - [anon_sym_impl] = ACTIONS(2023), - [anon_sym_let] = ACTIONS(2023), - [anon_sym_loop] = ACTIONS(2023), - [anon_sym_match] = ACTIONS(2023), - [anon_sym_mod] = ACTIONS(2023), - [anon_sym_pub] = ACTIONS(2023), - [anon_sym_return] = ACTIONS(2023), - [anon_sym_static] = ACTIONS(2023), - [anon_sym_struct] = ACTIONS(2023), - [anon_sym_trait] = ACTIONS(2023), - [anon_sym_type] = ACTIONS(2023), - [anon_sym_union] = ACTIONS(2023), - [anon_sym_unsafe] = ACTIONS(2023), - [anon_sym_use] = ACTIONS(2023), - [anon_sym_while] = ACTIONS(2023), - [anon_sym_extern] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2021), - [anon_sym_yield] = ACTIONS(2023), - [anon_sym_move] = ACTIONS(2023), - [anon_sym_try] = ACTIONS(2023), - [sym_integer_literal] = ACTIONS(2021), - [aux_sym_string_literal_token1] = ACTIONS(2021), - [sym_char_literal] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(2023), - [anon_sym_false] = ACTIONS(2023), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2023), - [sym_super] = ACTIONS(2023), - [sym_crate] = ACTIONS(2023), - [sym_metavariable] = ACTIONS(2021), - [sym_raw_string_literal] = ACTIONS(2021), - [sym_float_literal] = ACTIONS(2021), + [ts_builtin_sym_end] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2076), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_macro_rules_BANG] = ACTIONS(2074), + [anon_sym_LPAREN] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_RBRACE] = ACTIONS(2074), + [anon_sym_STAR] = ACTIONS(2074), + [anon_sym_u8] = ACTIONS(2076), + [anon_sym_i8] = ACTIONS(2076), + [anon_sym_u16] = ACTIONS(2076), + [anon_sym_i16] = ACTIONS(2076), + [anon_sym_u32] = ACTIONS(2076), + [anon_sym_i32] = ACTIONS(2076), + [anon_sym_u64] = ACTIONS(2076), + [anon_sym_i64] = ACTIONS(2076), + [anon_sym_u128] = ACTIONS(2076), + [anon_sym_i128] = ACTIONS(2076), + [anon_sym_isize] = ACTIONS(2076), + [anon_sym_usize] = ACTIONS(2076), + [anon_sym_f32] = ACTIONS(2076), + [anon_sym_f64] = ACTIONS(2076), + [anon_sym_bool] = ACTIONS(2076), + [anon_sym_str] = ACTIONS(2076), + [anon_sym_char] = ACTIONS(2076), + [anon_sym_DASH] = ACTIONS(2074), + [anon_sym_COLON_COLON] = ACTIONS(2074), + [anon_sym_BANG] = ACTIONS(2074), + [anon_sym_AMP] = ACTIONS(2074), + [anon_sym_POUND] = ACTIONS(2074), + [anon_sym_LT] = ACTIONS(2074), + [anon_sym_PIPE] = ACTIONS(2074), + [anon_sym_SQUOTE] = ACTIONS(2076), + [anon_sym_async] = ACTIONS(2076), + [anon_sym_break] = ACTIONS(2076), + [anon_sym_const] = ACTIONS(2076), + [anon_sym_continue] = ACTIONS(2076), + [anon_sym_default] = ACTIONS(2076), + [anon_sym_enum] = ACTIONS(2076), + [anon_sym_fn] = ACTIONS(2076), + [anon_sym_for] = ACTIONS(2076), + [anon_sym_if] = ACTIONS(2076), + [anon_sym_impl] = ACTIONS(2076), + [anon_sym_let] = ACTIONS(2076), + [anon_sym_loop] = ACTIONS(2076), + [anon_sym_match] = ACTIONS(2076), + [anon_sym_mod] = ACTIONS(2076), + [anon_sym_pub] = ACTIONS(2076), + [anon_sym_return] = ACTIONS(2076), + [anon_sym_static] = ACTIONS(2076), + [anon_sym_struct] = ACTIONS(2076), + [anon_sym_trait] = ACTIONS(2076), + [anon_sym_type] = ACTIONS(2076), + [anon_sym_union] = ACTIONS(2076), + [anon_sym_unsafe] = ACTIONS(2076), + [anon_sym_use] = ACTIONS(2076), + [anon_sym_while] = ACTIONS(2076), + [anon_sym_extern] = ACTIONS(2076), + [anon_sym_DOT_DOT] = ACTIONS(2074), + [anon_sym_yield] = ACTIONS(2076), + [anon_sym_move] = ACTIONS(2076), + [anon_sym_try] = ACTIONS(2076), + [sym_integer_literal] = ACTIONS(2074), + [aux_sym_string_literal_token1] = ACTIONS(2074), + [sym_char_literal] = ACTIONS(2074), + [anon_sym_true] = ACTIONS(2076), + [anon_sym_false] = ACTIONS(2076), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2076), + [sym_super] = ACTIONS(2076), + [sym_crate] = ACTIONS(2076), + [sym_metavariable] = ACTIONS(2074), + [sym_raw_string_literal] = ACTIONS(2074), + [sym_float_literal] = ACTIONS(2074), }, [576] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(2025), - [sym_identifier] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_macro_rules_BANG] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(2025), - [anon_sym_u8] = ACTIONS(2027), - [anon_sym_i8] = ACTIONS(2027), - [anon_sym_u16] = ACTIONS(2027), - [anon_sym_i16] = ACTIONS(2027), - [anon_sym_u32] = ACTIONS(2027), - [anon_sym_i32] = ACTIONS(2027), - [anon_sym_u64] = ACTIONS(2027), - [anon_sym_i64] = ACTIONS(2027), - [anon_sym_u128] = ACTIONS(2027), - [anon_sym_i128] = ACTIONS(2027), - [anon_sym_isize] = ACTIONS(2027), - [anon_sym_usize] = ACTIONS(2027), - [anon_sym_f32] = ACTIONS(2027), - [anon_sym_f64] = ACTIONS(2027), - [anon_sym_bool] = ACTIONS(2027), - [anon_sym_str] = ACTIONS(2027), - [anon_sym_char] = ACTIONS(2027), - [anon_sym_DASH] = ACTIONS(2025), - [anon_sym_COLON_COLON] = ACTIONS(2025), - [anon_sym_BANG] = ACTIONS(2025), - [anon_sym_AMP] = ACTIONS(2025), - [anon_sym_POUND] = ACTIONS(2025), - [anon_sym_LT] = ACTIONS(2025), - [anon_sym_PIPE] = ACTIONS(2025), - [anon_sym_SQUOTE] = ACTIONS(2027), - [anon_sym_async] = ACTIONS(2027), - [anon_sym_break] = ACTIONS(2027), - [anon_sym_const] = ACTIONS(2027), - [anon_sym_continue] = ACTIONS(2027), - [anon_sym_default] = ACTIONS(2027), - [anon_sym_enum] = ACTIONS(2027), - [anon_sym_fn] = ACTIONS(2027), - [anon_sym_for] = ACTIONS(2027), - [anon_sym_if] = ACTIONS(2027), - [anon_sym_impl] = ACTIONS(2027), - [anon_sym_let] = ACTIONS(2027), - [anon_sym_loop] = ACTIONS(2027), - [anon_sym_match] = ACTIONS(2027), - [anon_sym_mod] = ACTIONS(2027), - [anon_sym_pub] = ACTIONS(2027), - [anon_sym_return] = ACTIONS(2027), - [anon_sym_static] = ACTIONS(2027), - [anon_sym_struct] = ACTIONS(2027), - [anon_sym_trait] = ACTIONS(2027), - [anon_sym_type] = ACTIONS(2027), - [anon_sym_union] = ACTIONS(2027), - [anon_sym_unsafe] = ACTIONS(2027), - [anon_sym_use] = ACTIONS(2027), - [anon_sym_while] = ACTIONS(2027), - [anon_sym_extern] = ACTIONS(2027), - [anon_sym_DOT_DOT] = ACTIONS(2025), - [anon_sym_yield] = ACTIONS(2027), - [anon_sym_move] = ACTIONS(2027), - [anon_sym_try] = ACTIONS(2027), - [sym_integer_literal] = ACTIONS(2025), - [aux_sym_string_literal_token1] = ACTIONS(2025), - [sym_char_literal] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(2027), - [anon_sym_false] = ACTIONS(2027), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2027), - [sym_super] = ACTIONS(2027), - [sym_crate] = ACTIONS(2027), - [sym_metavariable] = ACTIONS(2025), - [sym_raw_string_literal] = ACTIONS(2025), - [sym_float_literal] = ACTIONS(2025), + [ts_builtin_sym_end] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_macro_rules_BANG] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_STAR] = ACTIONS(2078), + [anon_sym_u8] = ACTIONS(2080), + [anon_sym_i8] = ACTIONS(2080), + [anon_sym_u16] = ACTIONS(2080), + [anon_sym_i16] = ACTIONS(2080), + [anon_sym_u32] = ACTIONS(2080), + [anon_sym_i32] = ACTIONS(2080), + [anon_sym_u64] = ACTIONS(2080), + [anon_sym_i64] = ACTIONS(2080), + [anon_sym_u128] = ACTIONS(2080), + [anon_sym_i128] = ACTIONS(2080), + [anon_sym_isize] = ACTIONS(2080), + [anon_sym_usize] = ACTIONS(2080), + [anon_sym_f32] = ACTIONS(2080), + [anon_sym_f64] = ACTIONS(2080), + [anon_sym_bool] = ACTIONS(2080), + [anon_sym_str] = ACTIONS(2080), + [anon_sym_char] = ACTIONS(2080), + [anon_sym_DASH] = ACTIONS(2078), + [anon_sym_COLON_COLON] = ACTIONS(2078), + [anon_sym_BANG] = ACTIONS(2078), + [anon_sym_AMP] = ACTIONS(2078), + [anon_sym_POUND] = ACTIONS(2078), + [anon_sym_LT] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_SQUOTE] = ACTIONS(2080), + [anon_sym_async] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_default] = ACTIONS(2080), + [anon_sym_enum] = ACTIONS(2080), + [anon_sym_fn] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_impl] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_loop] = ACTIONS(2080), + [anon_sym_match] = ACTIONS(2080), + [anon_sym_mod] = ACTIONS(2080), + [anon_sym_pub] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_static] = ACTIONS(2080), + [anon_sym_struct] = ACTIONS(2080), + [anon_sym_trait] = ACTIONS(2080), + [anon_sym_type] = ACTIONS(2080), + [anon_sym_union] = ACTIONS(2080), + [anon_sym_unsafe] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym_DOT_DOT] = ACTIONS(2078), + [anon_sym_yield] = ACTIONS(2080), + [anon_sym_move] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [sym_integer_literal] = ACTIONS(2078), + [aux_sym_string_literal_token1] = ACTIONS(2078), + [sym_char_literal] = ACTIONS(2078), + [anon_sym_true] = ACTIONS(2080), + [anon_sym_false] = ACTIONS(2080), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2080), + [sym_super] = ACTIONS(2080), + [sym_crate] = ACTIONS(2080), + [sym_metavariable] = ACTIONS(2078), + [sym_raw_string_literal] = ACTIONS(2078), + [sym_float_literal] = ACTIONS(2078), }, [577] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(2029), - [sym_identifier] = ACTIONS(2031), - [anon_sym_SEMI] = ACTIONS(2029), - [anon_sym_macro_rules_BANG] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(2029), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_RBRACE] = ACTIONS(2029), - [anon_sym_STAR] = ACTIONS(2029), - [anon_sym_u8] = ACTIONS(2031), - [anon_sym_i8] = ACTIONS(2031), - [anon_sym_u16] = ACTIONS(2031), - [anon_sym_i16] = ACTIONS(2031), - [anon_sym_u32] = ACTIONS(2031), - [anon_sym_i32] = ACTIONS(2031), - [anon_sym_u64] = ACTIONS(2031), - [anon_sym_i64] = ACTIONS(2031), - [anon_sym_u128] = ACTIONS(2031), - [anon_sym_i128] = ACTIONS(2031), - [anon_sym_isize] = ACTIONS(2031), - [anon_sym_usize] = ACTIONS(2031), - [anon_sym_f32] = ACTIONS(2031), - [anon_sym_f64] = ACTIONS(2031), - [anon_sym_bool] = ACTIONS(2031), - [anon_sym_str] = ACTIONS(2031), - [anon_sym_char] = ACTIONS(2031), - [anon_sym_DASH] = ACTIONS(2029), - [anon_sym_COLON_COLON] = ACTIONS(2029), - [anon_sym_BANG] = ACTIONS(2029), - [anon_sym_AMP] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(2029), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(2029), - [anon_sym_SQUOTE] = ACTIONS(2031), - [anon_sym_async] = ACTIONS(2031), - [anon_sym_break] = ACTIONS(2031), - [anon_sym_const] = ACTIONS(2031), - [anon_sym_continue] = ACTIONS(2031), - [anon_sym_default] = ACTIONS(2031), - [anon_sym_enum] = ACTIONS(2031), - [anon_sym_fn] = ACTIONS(2031), - [anon_sym_for] = ACTIONS(2031), - [anon_sym_if] = ACTIONS(2031), - [anon_sym_impl] = ACTIONS(2031), - [anon_sym_let] = ACTIONS(2031), - [anon_sym_loop] = ACTIONS(2031), - [anon_sym_match] = ACTIONS(2031), - [anon_sym_mod] = ACTIONS(2031), - [anon_sym_pub] = ACTIONS(2031), - [anon_sym_return] = ACTIONS(2031), - [anon_sym_static] = ACTIONS(2031), - [anon_sym_struct] = ACTIONS(2031), - [anon_sym_trait] = ACTIONS(2031), - [anon_sym_type] = ACTIONS(2031), - [anon_sym_union] = ACTIONS(2031), - [anon_sym_unsafe] = ACTIONS(2031), - [anon_sym_use] = ACTIONS(2031), - [anon_sym_while] = ACTIONS(2031), - [anon_sym_extern] = ACTIONS(2031), - [anon_sym_DOT_DOT] = ACTIONS(2029), - [anon_sym_yield] = ACTIONS(2031), - [anon_sym_move] = ACTIONS(2031), - [anon_sym_try] = ACTIONS(2031), - [sym_integer_literal] = ACTIONS(2029), - [aux_sym_string_literal_token1] = ACTIONS(2029), - [sym_char_literal] = ACTIONS(2029), - [anon_sym_true] = ACTIONS(2031), - [anon_sym_false] = ACTIONS(2031), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2031), - [sym_super] = ACTIONS(2031), - [sym_crate] = ACTIONS(2031), - [sym_metavariable] = ACTIONS(2029), - [sym_raw_string_literal] = ACTIONS(2029), - [sym_float_literal] = ACTIONS(2029), + [ts_builtin_sym_end] = ACTIONS(2082), + [sym_identifier] = ACTIONS(2084), + [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_macro_rules_BANG] = ACTIONS(2082), + [anon_sym_LPAREN] = ACTIONS(2082), + [anon_sym_LBRACK] = ACTIONS(2082), + [anon_sym_LBRACE] = ACTIONS(2082), + [anon_sym_RBRACE] = ACTIONS(2082), + [anon_sym_STAR] = ACTIONS(2082), + [anon_sym_u8] = ACTIONS(2084), + [anon_sym_i8] = ACTIONS(2084), + [anon_sym_u16] = ACTIONS(2084), + [anon_sym_i16] = ACTIONS(2084), + [anon_sym_u32] = ACTIONS(2084), + [anon_sym_i32] = ACTIONS(2084), + [anon_sym_u64] = ACTIONS(2084), + [anon_sym_i64] = ACTIONS(2084), + [anon_sym_u128] = ACTIONS(2084), + [anon_sym_i128] = ACTIONS(2084), + [anon_sym_isize] = ACTIONS(2084), + [anon_sym_usize] = ACTIONS(2084), + [anon_sym_f32] = ACTIONS(2084), + [anon_sym_f64] = ACTIONS(2084), + [anon_sym_bool] = ACTIONS(2084), + [anon_sym_str] = ACTIONS(2084), + [anon_sym_char] = ACTIONS(2084), + [anon_sym_DASH] = ACTIONS(2082), + [anon_sym_COLON_COLON] = ACTIONS(2082), + [anon_sym_BANG] = ACTIONS(2082), + [anon_sym_AMP] = ACTIONS(2082), + [anon_sym_POUND] = ACTIONS(2082), + [anon_sym_LT] = ACTIONS(2082), + [anon_sym_PIPE] = ACTIONS(2082), + [anon_sym_SQUOTE] = ACTIONS(2084), + [anon_sym_async] = ACTIONS(2084), + [anon_sym_break] = ACTIONS(2084), + [anon_sym_const] = ACTIONS(2084), + [anon_sym_continue] = ACTIONS(2084), + [anon_sym_default] = ACTIONS(2084), + [anon_sym_enum] = ACTIONS(2084), + [anon_sym_fn] = ACTIONS(2084), + [anon_sym_for] = ACTIONS(2084), + [anon_sym_if] = ACTIONS(2084), + [anon_sym_impl] = ACTIONS(2084), + [anon_sym_let] = ACTIONS(2084), + [anon_sym_loop] = ACTIONS(2084), + [anon_sym_match] = ACTIONS(2084), + [anon_sym_mod] = ACTIONS(2084), + [anon_sym_pub] = ACTIONS(2084), + [anon_sym_return] = ACTIONS(2084), + [anon_sym_static] = ACTIONS(2084), + [anon_sym_struct] = ACTIONS(2084), + [anon_sym_trait] = ACTIONS(2084), + [anon_sym_type] = ACTIONS(2084), + [anon_sym_union] = ACTIONS(2084), + [anon_sym_unsafe] = ACTIONS(2084), + [anon_sym_use] = ACTIONS(2084), + [anon_sym_while] = ACTIONS(2084), + [anon_sym_extern] = ACTIONS(2084), + [anon_sym_DOT_DOT] = ACTIONS(2082), + [anon_sym_yield] = ACTIONS(2084), + [anon_sym_move] = ACTIONS(2084), + [anon_sym_try] = ACTIONS(2084), + [sym_integer_literal] = ACTIONS(2082), + [aux_sym_string_literal_token1] = ACTIONS(2082), + [sym_char_literal] = ACTIONS(2082), + [anon_sym_true] = ACTIONS(2084), + [anon_sym_false] = ACTIONS(2084), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2084), + [sym_super] = ACTIONS(2084), + [sym_crate] = ACTIONS(2084), + [sym_metavariable] = ACTIONS(2082), + [sym_raw_string_literal] = ACTIONS(2082), + [sym_float_literal] = ACTIONS(2082), }, [578] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(2033), - [sym_identifier] = ACTIONS(2035), - [anon_sym_SEMI] = ACTIONS(2033), - [anon_sym_macro_rules_BANG] = ACTIONS(2033), - [anon_sym_LPAREN] = ACTIONS(2033), - [anon_sym_LBRACK] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(2033), - [anon_sym_RBRACE] = ACTIONS(2033), - [anon_sym_STAR] = ACTIONS(2033), - [anon_sym_u8] = ACTIONS(2035), - [anon_sym_i8] = ACTIONS(2035), - [anon_sym_u16] = ACTIONS(2035), - [anon_sym_i16] = ACTIONS(2035), - [anon_sym_u32] = ACTIONS(2035), - [anon_sym_i32] = ACTIONS(2035), - [anon_sym_u64] = ACTIONS(2035), - [anon_sym_i64] = ACTIONS(2035), - [anon_sym_u128] = ACTIONS(2035), - [anon_sym_i128] = ACTIONS(2035), - [anon_sym_isize] = ACTIONS(2035), - [anon_sym_usize] = ACTIONS(2035), - [anon_sym_f32] = ACTIONS(2035), - [anon_sym_f64] = ACTIONS(2035), - [anon_sym_bool] = ACTIONS(2035), - [anon_sym_str] = ACTIONS(2035), - [anon_sym_char] = ACTIONS(2035), - [anon_sym_DASH] = ACTIONS(2033), - [anon_sym_COLON_COLON] = ACTIONS(2033), - [anon_sym_BANG] = ACTIONS(2033), - [anon_sym_AMP] = ACTIONS(2033), - [anon_sym_POUND] = ACTIONS(2033), - [anon_sym_LT] = ACTIONS(2033), - [anon_sym_PIPE] = ACTIONS(2033), - [anon_sym_SQUOTE] = ACTIONS(2035), - [anon_sym_async] = ACTIONS(2035), - [anon_sym_break] = ACTIONS(2035), - [anon_sym_const] = ACTIONS(2035), - [anon_sym_continue] = ACTIONS(2035), - [anon_sym_default] = ACTIONS(2035), - [anon_sym_enum] = ACTIONS(2035), - [anon_sym_fn] = ACTIONS(2035), - [anon_sym_for] = ACTIONS(2035), - [anon_sym_if] = ACTIONS(2035), - [anon_sym_impl] = ACTIONS(2035), - [anon_sym_let] = ACTIONS(2035), - [anon_sym_loop] = ACTIONS(2035), - [anon_sym_match] = ACTIONS(2035), - [anon_sym_mod] = ACTIONS(2035), - [anon_sym_pub] = ACTIONS(2035), - [anon_sym_return] = ACTIONS(2035), - [anon_sym_static] = ACTIONS(2035), - [anon_sym_struct] = ACTIONS(2035), - [anon_sym_trait] = ACTIONS(2035), - [anon_sym_type] = ACTIONS(2035), - [anon_sym_union] = ACTIONS(2035), - [anon_sym_unsafe] = ACTIONS(2035), - [anon_sym_use] = ACTIONS(2035), - [anon_sym_while] = ACTIONS(2035), - [anon_sym_extern] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2033), - [anon_sym_yield] = ACTIONS(2035), - [anon_sym_move] = ACTIONS(2035), - [anon_sym_try] = ACTIONS(2035), - [sym_integer_literal] = ACTIONS(2033), - [aux_sym_string_literal_token1] = ACTIONS(2033), - [sym_char_literal] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(2035), - [anon_sym_false] = ACTIONS(2035), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2035), - [sym_super] = ACTIONS(2035), - [sym_crate] = ACTIONS(2035), - [sym_metavariable] = ACTIONS(2033), - [sym_raw_string_literal] = ACTIONS(2033), - [sym_float_literal] = ACTIONS(2033), + [ts_builtin_sym_end] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2088), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_macro_rules_BANG] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_STAR] = ACTIONS(2086), + [anon_sym_u8] = ACTIONS(2088), + [anon_sym_i8] = ACTIONS(2088), + [anon_sym_u16] = ACTIONS(2088), + [anon_sym_i16] = ACTIONS(2088), + [anon_sym_u32] = ACTIONS(2088), + [anon_sym_i32] = ACTIONS(2088), + [anon_sym_u64] = ACTIONS(2088), + [anon_sym_i64] = ACTIONS(2088), + [anon_sym_u128] = ACTIONS(2088), + [anon_sym_i128] = ACTIONS(2088), + [anon_sym_isize] = ACTIONS(2088), + [anon_sym_usize] = ACTIONS(2088), + [anon_sym_f32] = ACTIONS(2088), + [anon_sym_f64] = ACTIONS(2088), + [anon_sym_bool] = ACTIONS(2088), + [anon_sym_str] = ACTIONS(2088), + [anon_sym_char] = ACTIONS(2088), + [anon_sym_DASH] = ACTIONS(2086), + [anon_sym_COLON_COLON] = ACTIONS(2086), + [anon_sym_BANG] = ACTIONS(2086), + [anon_sym_AMP] = ACTIONS(2086), + [anon_sym_POUND] = ACTIONS(2086), + [anon_sym_LT] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(2086), + [anon_sym_SQUOTE] = ACTIONS(2088), + [anon_sym_async] = ACTIONS(2088), + [anon_sym_break] = ACTIONS(2088), + [anon_sym_const] = ACTIONS(2088), + [anon_sym_continue] = ACTIONS(2088), + [anon_sym_default] = ACTIONS(2088), + [anon_sym_enum] = ACTIONS(2088), + [anon_sym_fn] = ACTIONS(2088), + [anon_sym_for] = ACTIONS(2088), + [anon_sym_if] = ACTIONS(2088), + [anon_sym_impl] = ACTIONS(2088), + [anon_sym_let] = ACTIONS(2088), + [anon_sym_loop] = ACTIONS(2088), + [anon_sym_match] = ACTIONS(2088), + [anon_sym_mod] = ACTIONS(2088), + [anon_sym_pub] = ACTIONS(2088), + [anon_sym_return] = ACTIONS(2088), + [anon_sym_static] = ACTIONS(2088), + [anon_sym_struct] = ACTIONS(2088), + [anon_sym_trait] = ACTIONS(2088), + [anon_sym_type] = ACTIONS(2088), + [anon_sym_union] = ACTIONS(2088), + [anon_sym_unsafe] = ACTIONS(2088), + [anon_sym_use] = ACTIONS(2088), + [anon_sym_while] = ACTIONS(2088), + [anon_sym_extern] = ACTIONS(2088), + [anon_sym_DOT_DOT] = ACTIONS(2086), + [anon_sym_yield] = ACTIONS(2088), + [anon_sym_move] = ACTIONS(2088), + [anon_sym_try] = ACTIONS(2088), + [sym_integer_literal] = ACTIONS(2086), + [aux_sym_string_literal_token1] = ACTIONS(2086), + [sym_char_literal] = ACTIONS(2086), + [anon_sym_true] = ACTIONS(2088), + [anon_sym_false] = ACTIONS(2088), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2088), + [sym_super] = ACTIONS(2088), + [sym_crate] = ACTIONS(2088), + [sym_metavariable] = ACTIONS(2086), + [sym_raw_string_literal] = ACTIONS(2086), + [sym_float_literal] = ACTIONS(2086), }, [579] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(2037), - [sym_identifier] = ACTIONS(2039), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_macro_rules_BANG] = ACTIONS(2037), - [anon_sym_LPAREN] = ACTIONS(2037), - [anon_sym_LBRACK] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2037), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_STAR] = ACTIONS(2037), - [anon_sym_u8] = ACTIONS(2039), - [anon_sym_i8] = ACTIONS(2039), - [anon_sym_u16] = ACTIONS(2039), - [anon_sym_i16] = ACTIONS(2039), - [anon_sym_u32] = ACTIONS(2039), - [anon_sym_i32] = ACTIONS(2039), - [anon_sym_u64] = ACTIONS(2039), - [anon_sym_i64] = ACTIONS(2039), - [anon_sym_u128] = ACTIONS(2039), - [anon_sym_i128] = ACTIONS(2039), - [anon_sym_isize] = ACTIONS(2039), - [anon_sym_usize] = ACTIONS(2039), - [anon_sym_f32] = ACTIONS(2039), - [anon_sym_f64] = ACTIONS(2039), - [anon_sym_bool] = ACTIONS(2039), - [anon_sym_str] = ACTIONS(2039), - [anon_sym_char] = ACTIONS(2039), - [anon_sym_DASH] = ACTIONS(2037), - [anon_sym_COLON_COLON] = ACTIONS(2037), - [anon_sym_BANG] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(2037), - [anon_sym_POUND] = ACTIONS(2037), - [anon_sym_LT] = ACTIONS(2037), - [anon_sym_PIPE] = ACTIONS(2037), - [anon_sym_SQUOTE] = ACTIONS(2039), - [anon_sym_async] = ACTIONS(2039), - [anon_sym_break] = ACTIONS(2039), - [anon_sym_const] = ACTIONS(2039), - [anon_sym_continue] = ACTIONS(2039), - [anon_sym_default] = ACTIONS(2039), - [anon_sym_enum] = ACTIONS(2039), - [anon_sym_fn] = ACTIONS(2039), - [anon_sym_for] = ACTIONS(2039), - [anon_sym_if] = ACTIONS(2039), - [anon_sym_impl] = ACTIONS(2039), - [anon_sym_let] = ACTIONS(2039), - [anon_sym_loop] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2039), - [anon_sym_mod] = ACTIONS(2039), - [anon_sym_pub] = ACTIONS(2039), - [anon_sym_return] = ACTIONS(2039), - [anon_sym_static] = ACTIONS(2039), - [anon_sym_struct] = ACTIONS(2039), - [anon_sym_trait] = ACTIONS(2039), - [anon_sym_type] = ACTIONS(2039), - [anon_sym_union] = ACTIONS(2039), - [anon_sym_unsafe] = ACTIONS(2039), - [anon_sym_use] = ACTIONS(2039), - [anon_sym_while] = ACTIONS(2039), - [anon_sym_extern] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2037), - [anon_sym_yield] = ACTIONS(2039), - [anon_sym_move] = ACTIONS(2039), - [anon_sym_try] = ACTIONS(2039), - [sym_integer_literal] = ACTIONS(2037), - [aux_sym_string_literal_token1] = ACTIONS(2037), - [sym_char_literal] = ACTIONS(2037), - [anon_sym_true] = ACTIONS(2039), - [anon_sym_false] = ACTIONS(2039), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2039), - [sym_super] = ACTIONS(2039), - [sym_crate] = ACTIONS(2039), - [sym_metavariable] = ACTIONS(2037), - [sym_raw_string_literal] = ACTIONS(2037), - [sym_float_literal] = ACTIONS(2037), + [ts_builtin_sym_end] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2092), + [anon_sym_SEMI] = ACTIONS(2090), + [anon_sym_macro_rules_BANG] = ACTIONS(2090), + [anon_sym_LPAREN] = ACTIONS(2090), + [anon_sym_LBRACK] = ACTIONS(2090), + [anon_sym_LBRACE] = ACTIONS(2090), + [anon_sym_RBRACE] = ACTIONS(2090), + [anon_sym_STAR] = ACTIONS(2090), + [anon_sym_u8] = ACTIONS(2092), + [anon_sym_i8] = ACTIONS(2092), + [anon_sym_u16] = ACTIONS(2092), + [anon_sym_i16] = ACTIONS(2092), + [anon_sym_u32] = ACTIONS(2092), + [anon_sym_i32] = ACTIONS(2092), + [anon_sym_u64] = ACTIONS(2092), + [anon_sym_i64] = ACTIONS(2092), + [anon_sym_u128] = ACTIONS(2092), + [anon_sym_i128] = ACTIONS(2092), + [anon_sym_isize] = ACTIONS(2092), + [anon_sym_usize] = ACTIONS(2092), + [anon_sym_f32] = ACTIONS(2092), + [anon_sym_f64] = ACTIONS(2092), + [anon_sym_bool] = ACTIONS(2092), + [anon_sym_str] = ACTIONS(2092), + [anon_sym_char] = ACTIONS(2092), + [anon_sym_DASH] = ACTIONS(2090), + [anon_sym_COLON_COLON] = ACTIONS(2090), + [anon_sym_BANG] = ACTIONS(2090), + [anon_sym_AMP] = ACTIONS(2090), + [anon_sym_POUND] = ACTIONS(2090), + [anon_sym_LT] = ACTIONS(2090), + [anon_sym_PIPE] = ACTIONS(2090), + [anon_sym_SQUOTE] = ACTIONS(2092), + [anon_sym_async] = ACTIONS(2092), + [anon_sym_break] = ACTIONS(2092), + [anon_sym_const] = ACTIONS(2092), + [anon_sym_continue] = ACTIONS(2092), + [anon_sym_default] = ACTIONS(2092), + [anon_sym_enum] = ACTIONS(2092), + [anon_sym_fn] = ACTIONS(2092), + [anon_sym_for] = ACTIONS(2092), + [anon_sym_if] = ACTIONS(2092), + [anon_sym_impl] = ACTIONS(2092), + [anon_sym_let] = ACTIONS(2092), + [anon_sym_loop] = ACTIONS(2092), + [anon_sym_match] = ACTIONS(2092), + [anon_sym_mod] = ACTIONS(2092), + [anon_sym_pub] = ACTIONS(2092), + [anon_sym_return] = ACTIONS(2092), + [anon_sym_static] = ACTIONS(2092), + [anon_sym_struct] = ACTIONS(2092), + [anon_sym_trait] = ACTIONS(2092), + [anon_sym_type] = ACTIONS(2092), + [anon_sym_union] = ACTIONS(2092), + [anon_sym_unsafe] = ACTIONS(2092), + [anon_sym_use] = ACTIONS(2092), + [anon_sym_while] = ACTIONS(2092), + [anon_sym_extern] = ACTIONS(2092), + [anon_sym_DOT_DOT] = ACTIONS(2090), + [anon_sym_yield] = ACTIONS(2092), + [anon_sym_move] = ACTIONS(2092), + [anon_sym_try] = ACTIONS(2092), + [sym_integer_literal] = ACTIONS(2090), + [aux_sym_string_literal_token1] = ACTIONS(2090), + [sym_char_literal] = ACTIONS(2090), + [anon_sym_true] = ACTIONS(2092), + [anon_sym_false] = ACTIONS(2092), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2092), + [sym_super] = ACTIONS(2092), + [sym_crate] = ACTIONS(2092), + [sym_metavariable] = ACTIONS(2090), + [sym_raw_string_literal] = ACTIONS(2090), + [sym_float_literal] = ACTIONS(2090), }, [580] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2041), - [sym_identifier] = ACTIONS(2043), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_macro_rules_BANG] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_u8] = ACTIONS(2043), - [anon_sym_i8] = ACTIONS(2043), - [anon_sym_u16] = ACTIONS(2043), - [anon_sym_i16] = ACTIONS(2043), - [anon_sym_u32] = ACTIONS(2043), - [anon_sym_i32] = ACTIONS(2043), - [anon_sym_u64] = ACTIONS(2043), - [anon_sym_i64] = ACTIONS(2043), - [anon_sym_u128] = ACTIONS(2043), - [anon_sym_i128] = ACTIONS(2043), - [anon_sym_isize] = ACTIONS(2043), - [anon_sym_usize] = ACTIONS(2043), - [anon_sym_f32] = ACTIONS(2043), - [anon_sym_f64] = ACTIONS(2043), - [anon_sym_bool] = ACTIONS(2043), - [anon_sym_str] = ACTIONS(2043), - [anon_sym_char] = ACTIONS(2043), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_COLON_COLON] = ACTIONS(2041), - [anon_sym_BANG] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_SQUOTE] = ACTIONS(2043), - [anon_sym_async] = ACTIONS(2043), - [anon_sym_break] = ACTIONS(2043), - [anon_sym_const] = ACTIONS(2043), - [anon_sym_continue] = ACTIONS(2043), - [anon_sym_default] = ACTIONS(2043), - [anon_sym_enum] = ACTIONS(2043), - [anon_sym_fn] = ACTIONS(2043), - [anon_sym_for] = ACTIONS(2043), - [anon_sym_if] = ACTIONS(2043), - [anon_sym_impl] = ACTIONS(2043), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_loop] = ACTIONS(2043), - [anon_sym_match] = ACTIONS(2043), - [anon_sym_mod] = ACTIONS(2043), - [anon_sym_pub] = ACTIONS(2043), - [anon_sym_return] = ACTIONS(2043), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_struct] = ACTIONS(2043), - [anon_sym_trait] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_union] = ACTIONS(2043), - [anon_sym_unsafe] = ACTIONS(2043), - [anon_sym_use] = ACTIONS(2043), - [anon_sym_while] = ACTIONS(2043), - [anon_sym_extern] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2043), - [anon_sym_move] = ACTIONS(2043), - [anon_sym_try] = ACTIONS(2043), - [sym_integer_literal] = ACTIONS(2041), - [aux_sym_string_literal_token1] = ACTIONS(2041), - [sym_char_literal] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(2043), - [anon_sym_false] = ACTIONS(2043), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2043), - [sym_super] = ACTIONS(2043), - [sym_crate] = ACTIONS(2043), - [sym_metavariable] = ACTIONS(2041), - [sym_raw_string_literal] = ACTIONS(2041), - [sym_float_literal] = ACTIONS(2041), + [ts_builtin_sym_end] = ACTIONS(2094), + [sym_identifier] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2094), + [anon_sym_macro_rules_BANG] = ACTIONS(2094), + [anon_sym_LPAREN] = ACTIONS(2094), + [anon_sym_LBRACK] = ACTIONS(2094), + [anon_sym_LBRACE] = ACTIONS(2094), + [anon_sym_RBRACE] = ACTIONS(2094), + [anon_sym_STAR] = ACTIONS(2094), + [anon_sym_u8] = ACTIONS(2096), + [anon_sym_i8] = ACTIONS(2096), + [anon_sym_u16] = ACTIONS(2096), + [anon_sym_i16] = ACTIONS(2096), + [anon_sym_u32] = ACTIONS(2096), + [anon_sym_i32] = ACTIONS(2096), + [anon_sym_u64] = ACTIONS(2096), + [anon_sym_i64] = ACTIONS(2096), + [anon_sym_u128] = ACTIONS(2096), + [anon_sym_i128] = ACTIONS(2096), + [anon_sym_isize] = ACTIONS(2096), + [anon_sym_usize] = ACTIONS(2096), + [anon_sym_f32] = ACTIONS(2096), + [anon_sym_f64] = ACTIONS(2096), + [anon_sym_bool] = ACTIONS(2096), + [anon_sym_str] = ACTIONS(2096), + [anon_sym_char] = ACTIONS(2096), + [anon_sym_DASH] = ACTIONS(2094), + [anon_sym_COLON_COLON] = ACTIONS(2094), + [anon_sym_BANG] = ACTIONS(2094), + [anon_sym_AMP] = ACTIONS(2094), + [anon_sym_POUND] = ACTIONS(2094), + [anon_sym_LT] = ACTIONS(2094), + [anon_sym_PIPE] = ACTIONS(2094), + [anon_sym_SQUOTE] = ACTIONS(2096), + [anon_sym_async] = ACTIONS(2096), + [anon_sym_break] = ACTIONS(2096), + [anon_sym_const] = ACTIONS(2096), + [anon_sym_continue] = ACTIONS(2096), + [anon_sym_default] = ACTIONS(2096), + [anon_sym_enum] = ACTIONS(2096), + [anon_sym_fn] = ACTIONS(2096), + [anon_sym_for] = ACTIONS(2096), + [anon_sym_if] = ACTIONS(2096), + [anon_sym_impl] = ACTIONS(2096), + [anon_sym_let] = ACTIONS(2096), + [anon_sym_loop] = ACTIONS(2096), + [anon_sym_match] = ACTIONS(2096), + [anon_sym_mod] = ACTIONS(2096), + [anon_sym_pub] = ACTIONS(2096), + [anon_sym_return] = ACTIONS(2096), + [anon_sym_static] = ACTIONS(2096), + [anon_sym_struct] = ACTIONS(2096), + [anon_sym_trait] = ACTIONS(2096), + [anon_sym_type] = ACTIONS(2096), + [anon_sym_union] = ACTIONS(2096), + [anon_sym_unsafe] = ACTIONS(2096), + [anon_sym_use] = ACTIONS(2096), + [anon_sym_while] = ACTIONS(2096), + [anon_sym_extern] = ACTIONS(2096), + [anon_sym_DOT_DOT] = ACTIONS(2094), + [anon_sym_yield] = ACTIONS(2096), + [anon_sym_move] = ACTIONS(2096), + [anon_sym_try] = ACTIONS(2096), + [sym_integer_literal] = ACTIONS(2094), + [aux_sym_string_literal_token1] = ACTIONS(2094), + [sym_char_literal] = ACTIONS(2094), + [anon_sym_true] = ACTIONS(2096), + [anon_sym_false] = ACTIONS(2096), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2096), + [sym_super] = ACTIONS(2096), + [sym_crate] = ACTIONS(2096), + [sym_metavariable] = ACTIONS(2094), + [sym_raw_string_literal] = ACTIONS(2094), + [sym_float_literal] = ACTIONS(2094), }, [581] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2045), - [sym_identifier] = ACTIONS(2047), - [anon_sym_SEMI] = ACTIONS(2045), - [anon_sym_macro_rules_BANG] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(2045), - [anon_sym_LBRACK] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_RBRACE] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_u8] = ACTIONS(2047), - [anon_sym_i8] = ACTIONS(2047), - [anon_sym_u16] = ACTIONS(2047), - [anon_sym_i16] = ACTIONS(2047), - [anon_sym_u32] = ACTIONS(2047), - [anon_sym_i32] = ACTIONS(2047), - [anon_sym_u64] = ACTIONS(2047), - [anon_sym_i64] = ACTIONS(2047), - [anon_sym_u128] = ACTIONS(2047), - [anon_sym_i128] = ACTIONS(2047), - [anon_sym_isize] = ACTIONS(2047), - [anon_sym_usize] = ACTIONS(2047), - [anon_sym_f32] = ACTIONS(2047), - [anon_sym_f64] = ACTIONS(2047), - [anon_sym_bool] = ACTIONS(2047), - [anon_sym_str] = ACTIONS(2047), - [anon_sym_char] = ACTIONS(2047), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_COLON_COLON] = ACTIONS(2045), - [anon_sym_BANG] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2045), - [anon_sym_LT] = ACTIONS(2045), - [anon_sym_PIPE] = ACTIONS(2045), - [anon_sym_SQUOTE] = ACTIONS(2047), - [anon_sym_async] = ACTIONS(2047), - [anon_sym_break] = ACTIONS(2047), - [anon_sym_const] = ACTIONS(2047), - [anon_sym_continue] = ACTIONS(2047), - [anon_sym_default] = ACTIONS(2047), - [anon_sym_enum] = ACTIONS(2047), - [anon_sym_fn] = ACTIONS(2047), - [anon_sym_for] = ACTIONS(2047), - [anon_sym_if] = ACTIONS(2047), - [anon_sym_impl] = ACTIONS(2047), - [anon_sym_let] = ACTIONS(2047), - [anon_sym_loop] = ACTIONS(2047), - [anon_sym_match] = ACTIONS(2047), - [anon_sym_mod] = ACTIONS(2047), - [anon_sym_pub] = ACTIONS(2047), - [anon_sym_return] = ACTIONS(2047), - [anon_sym_static] = ACTIONS(2047), - [anon_sym_struct] = ACTIONS(2047), - [anon_sym_trait] = ACTIONS(2047), - [anon_sym_type] = ACTIONS(2047), - [anon_sym_union] = ACTIONS(2047), - [anon_sym_unsafe] = ACTIONS(2047), - [anon_sym_use] = ACTIONS(2047), - [anon_sym_while] = ACTIONS(2047), - [anon_sym_extern] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2047), - [anon_sym_move] = ACTIONS(2047), - [anon_sym_try] = ACTIONS(2047), - [sym_integer_literal] = ACTIONS(2045), - [aux_sym_string_literal_token1] = ACTIONS(2045), - [sym_char_literal] = ACTIONS(2045), - [anon_sym_true] = ACTIONS(2047), - [anon_sym_false] = ACTIONS(2047), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2047), - [sym_super] = ACTIONS(2047), - [sym_crate] = ACTIONS(2047), - [sym_metavariable] = ACTIONS(2045), - [sym_raw_string_literal] = ACTIONS(2045), - [sym_float_literal] = ACTIONS(2045), + [ts_builtin_sym_end] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2100), + [anon_sym_SEMI] = ACTIONS(2098), + [anon_sym_macro_rules_BANG] = ACTIONS(2098), + [anon_sym_LPAREN] = ACTIONS(2098), + [anon_sym_LBRACK] = ACTIONS(2098), + [anon_sym_LBRACE] = ACTIONS(2098), + [anon_sym_RBRACE] = ACTIONS(2098), + [anon_sym_STAR] = ACTIONS(2098), + [anon_sym_u8] = ACTIONS(2100), + [anon_sym_i8] = ACTIONS(2100), + [anon_sym_u16] = ACTIONS(2100), + [anon_sym_i16] = ACTIONS(2100), + [anon_sym_u32] = ACTIONS(2100), + [anon_sym_i32] = ACTIONS(2100), + [anon_sym_u64] = ACTIONS(2100), + [anon_sym_i64] = ACTIONS(2100), + [anon_sym_u128] = ACTIONS(2100), + [anon_sym_i128] = ACTIONS(2100), + [anon_sym_isize] = ACTIONS(2100), + [anon_sym_usize] = ACTIONS(2100), + [anon_sym_f32] = ACTIONS(2100), + [anon_sym_f64] = ACTIONS(2100), + [anon_sym_bool] = ACTIONS(2100), + [anon_sym_str] = ACTIONS(2100), + [anon_sym_char] = ACTIONS(2100), + [anon_sym_DASH] = ACTIONS(2098), + [anon_sym_COLON_COLON] = ACTIONS(2098), + [anon_sym_BANG] = ACTIONS(2098), + [anon_sym_AMP] = ACTIONS(2098), + [anon_sym_POUND] = ACTIONS(2098), + [anon_sym_LT] = ACTIONS(2098), + [anon_sym_PIPE] = ACTIONS(2098), + [anon_sym_SQUOTE] = ACTIONS(2100), + [anon_sym_async] = ACTIONS(2100), + [anon_sym_break] = ACTIONS(2100), + [anon_sym_const] = ACTIONS(2100), + [anon_sym_continue] = ACTIONS(2100), + [anon_sym_default] = ACTIONS(2100), + [anon_sym_enum] = ACTIONS(2100), + [anon_sym_fn] = ACTIONS(2100), + [anon_sym_for] = ACTIONS(2100), + [anon_sym_if] = ACTIONS(2100), + [anon_sym_impl] = ACTIONS(2100), + [anon_sym_let] = ACTIONS(2100), + [anon_sym_loop] = ACTIONS(2100), + [anon_sym_match] = ACTIONS(2100), + [anon_sym_mod] = ACTIONS(2100), + [anon_sym_pub] = ACTIONS(2100), + [anon_sym_return] = ACTIONS(2100), + [anon_sym_static] = ACTIONS(2100), + [anon_sym_struct] = ACTIONS(2100), + [anon_sym_trait] = ACTIONS(2100), + [anon_sym_type] = ACTIONS(2100), + [anon_sym_union] = ACTIONS(2100), + [anon_sym_unsafe] = ACTIONS(2100), + [anon_sym_use] = ACTIONS(2100), + [anon_sym_while] = ACTIONS(2100), + [anon_sym_extern] = ACTIONS(2100), + [anon_sym_DOT_DOT] = ACTIONS(2098), + [anon_sym_yield] = ACTIONS(2100), + [anon_sym_move] = ACTIONS(2100), + [anon_sym_try] = ACTIONS(2100), + [sym_integer_literal] = ACTIONS(2098), + [aux_sym_string_literal_token1] = ACTIONS(2098), + [sym_char_literal] = ACTIONS(2098), + [anon_sym_true] = ACTIONS(2100), + [anon_sym_false] = ACTIONS(2100), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2100), + [sym_super] = ACTIONS(2100), + [sym_crate] = ACTIONS(2100), + [sym_metavariable] = ACTIONS(2098), + [sym_raw_string_literal] = ACTIONS(2098), + [sym_float_literal] = ACTIONS(2098), }, [582] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(2049), - [sym_identifier] = ACTIONS(2051), - [anon_sym_SEMI] = ACTIONS(2049), - [anon_sym_macro_rules_BANG] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(2049), - [anon_sym_LBRACK] = ACTIONS(2049), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_u8] = ACTIONS(2051), - [anon_sym_i8] = ACTIONS(2051), - [anon_sym_u16] = ACTIONS(2051), - [anon_sym_i16] = ACTIONS(2051), - [anon_sym_u32] = ACTIONS(2051), - [anon_sym_i32] = ACTIONS(2051), - [anon_sym_u64] = ACTIONS(2051), - [anon_sym_i64] = ACTIONS(2051), - [anon_sym_u128] = ACTIONS(2051), - [anon_sym_i128] = ACTIONS(2051), - [anon_sym_isize] = ACTIONS(2051), - [anon_sym_usize] = ACTIONS(2051), - [anon_sym_f32] = ACTIONS(2051), - [anon_sym_f64] = ACTIONS(2051), - [anon_sym_bool] = ACTIONS(2051), - [anon_sym_str] = ACTIONS(2051), - [anon_sym_char] = ACTIONS(2051), - [anon_sym_DASH] = ACTIONS(2049), - [anon_sym_COLON_COLON] = ACTIONS(2049), - [anon_sym_BANG] = ACTIONS(2049), - [anon_sym_AMP] = ACTIONS(2049), - [anon_sym_POUND] = ACTIONS(2049), - [anon_sym_LT] = ACTIONS(2049), - [anon_sym_PIPE] = ACTIONS(2049), - [anon_sym_SQUOTE] = ACTIONS(2051), - [anon_sym_async] = ACTIONS(2051), - [anon_sym_break] = ACTIONS(2051), - [anon_sym_const] = ACTIONS(2051), - [anon_sym_continue] = ACTIONS(2051), - [anon_sym_default] = ACTIONS(2051), - [anon_sym_enum] = ACTIONS(2051), - [anon_sym_fn] = ACTIONS(2051), - [anon_sym_for] = ACTIONS(2051), - [anon_sym_if] = ACTIONS(2051), - [anon_sym_impl] = ACTIONS(2051), - [anon_sym_let] = ACTIONS(2051), - [anon_sym_loop] = ACTIONS(2051), - [anon_sym_match] = ACTIONS(2051), - [anon_sym_mod] = ACTIONS(2051), - [anon_sym_pub] = ACTIONS(2051), - [anon_sym_return] = ACTIONS(2051), - [anon_sym_static] = ACTIONS(2051), - [anon_sym_struct] = ACTIONS(2051), - [anon_sym_trait] = ACTIONS(2051), - [anon_sym_type] = ACTIONS(2051), - [anon_sym_union] = ACTIONS(2051), - [anon_sym_unsafe] = ACTIONS(2051), - [anon_sym_use] = ACTIONS(2051), - [anon_sym_while] = ACTIONS(2051), - [anon_sym_extern] = ACTIONS(2051), - [anon_sym_DOT_DOT] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2051), - [anon_sym_move] = ACTIONS(2051), - [anon_sym_try] = ACTIONS(2051), - [sym_integer_literal] = ACTIONS(2049), - [aux_sym_string_literal_token1] = ACTIONS(2049), - [sym_char_literal] = ACTIONS(2049), - [anon_sym_true] = ACTIONS(2051), - [anon_sym_false] = ACTIONS(2051), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2051), - [sym_super] = ACTIONS(2051), - [sym_crate] = ACTIONS(2051), - [sym_metavariable] = ACTIONS(2049), - [sym_raw_string_literal] = ACTIONS(2049), - [sym_float_literal] = ACTIONS(2049), + [ts_builtin_sym_end] = ACTIONS(2102), + [sym_identifier] = ACTIONS(2104), + [anon_sym_SEMI] = ACTIONS(2102), + [anon_sym_macro_rules_BANG] = ACTIONS(2102), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_LBRACK] = ACTIONS(2102), + [anon_sym_LBRACE] = ACTIONS(2102), + [anon_sym_RBRACE] = ACTIONS(2102), + [anon_sym_STAR] = ACTIONS(2102), + [anon_sym_u8] = ACTIONS(2104), + [anon_sym_i8] = ACTIONS(2104), + [anon_sym_u16] = ACTIONS(2104), + [anon_sym_i16] = ACTIONS(2104), + [anon_sym_u32] = ACTIONS(2104), + [anon_sym_i32] = ACTIONS(2104), + [anon_sym_u64] = ACTIONS(2104), + [anon_sym_i64] = ACTIONS(2104), + [anon_sym_u128] = ACTIONS(2104), + [anon_sym_i128] = ACTIONS(2104), + [anon_sym_isize] = ACTIONS(2104), + [anon_sym_usize] = ACTIONS(2104), + [anon_sym_f32] = ACTIONS(2104), + [anon_sym_f64] = ACTIONS(2104), + [anon_sym_bool] = ACTIONS(2104), + [anon_sym_str] = ACTIONS(2104), + [anon_sym_char] = ACTIONS(2104), + [anon_sym_DASH] = ACTIONS(2102), + [anon_sym_COLON_COLON] = ACTIONS(2102), + [anon_sym_BANG] = ACTIONS(2102), + [anon_sym_AMP] = ACTIONS(2102), + [anon_sym_POUND] = ACTIONS(2102), + [anon_sym_LT] = ACTIONS(2102), + [anon_sym_PIPE] = ACTIONS(2102), + [anon_sym_SQUOTE] = ACTIONS(2104), + [anon_sym_async] = ACTIONS(2104), + [anon_sym_break] = ACTIONS(2104), + [anon_sym_const] = ACTIONS(2104), + [anon_sym_continue] = ACTIONS(2104), + [anon_sym_default] = ACTIONS(2104), + [anon_sym_enum] = ACTIONS(2104), + [anon_sym_fn] = ACTIONS(2104), + [anon_sym_for] = ACTIONS(2104), + [anon_sym_if] = ACTIONS(2104), + [anon_sym_impl] = ACTIONS(2104), + [anon_sym_let] = ACTIONS(2104), + [anon_sym_loop] = ACTIONS(2104), + [anon_sym_match] = ACTIONS(2104), + [anon_sym_mod] = ACTIONS(2104), + [anon_sym_pub] = ACTIONS(2104), + [anon_sym_return] = ACTIONS(2104), + [anon_sym_static] = ACTIONS(2104), + [anon_sym_struct] = ACTIONS(2104), + [anon_sym_trait] = ACTIONS(2104), + [anon_sym_type] = ACTIONS(2104), + [anon_sym_union] = ACTIONS(2104), + [anon_sym_unsafe] = ACTIONS(2104), + [anon_sym_use] = ACTIONS(2104), + [anon_sym_while] = ACTIONS(2104), + [anon_sym_extern] = ACTIONS(2104), + [anon_sym_DOT_DOT] = ACTIONS(2102), + [anon_sym_yield] = ACTIONS(2104), + [anon_sym_move] = ACTIONS(2104), + [anon_sym_try] = ACTIONS(2104), + [sym_integer_literal] = ACTIONS(2102), + [aux_sym_string_literal_token1] = ACTIONS(2102), + [sym_char_literal] = ACTIONS(2102), + [anon_sym_true] = ACTIONS(2104), + [anon_sym_false] = ACTIONS(2104), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2104), + [sym_super] = ACTIONS(2104), + [sym_crate] = ACTIONS(2104), + [sym_metavariable] = ACTIONS(2102), + [sym_raw_string_literal] = ACTIONS(2102), + [sym_float_literal] = ACTIONS(2102), }, [583] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(2053), - [sym_identifier] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2053), - [anon_sym_macro_rules_BANG] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(2053), - [anon_sym_LBRACK] = ACTIONS(2053), - [anon_sym_LBRACE] = ACTIONS(2053), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_STAR] = ACTIONS(2053), - [anon_sym_u8] = ACTIONS(2055), - [anon_sym_i8] = ACTIONS(2055), - [anon_sym_u16] = ACTIONS(2055), - [anon_sym_i16] = ACTIONS(2055), - [anon_sym_u32] = ACTIONS(2055), - [anon_sym_i32] = ACTIONS(2055), - [anon_sym_u64] = ACTIONS(2055), - [anon_sym_i64] = ACTIONS(2055), - [anon_sym_u128] = ACTIONS(2055), - [anon_sym_i128] = ACTIONS(2055), - [anon_sym_isize] = ACTIONS(2055), - [anon_sym_usize] = ACTIONS(2055), - [anon_sym_f32] = ACTIONS(2055), - [anon_sym_f64] = ACTIONS(2055), - [anon_sym_bool] = ACTIONS(2055), - [anon_sym_str] = ACTIONS(2055), - [anon_sym_char] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2053), - [anon_sym_COLON_COLON] = ACTIONS(2053), - [anon_sym_BANG] = ACTIONS(2053), - [anon_sym_AMP] = ACTIONS(2053), - [anon_sym_POUND] = ACTIONS(2053), - [anon_sym_LT] = ACTIONS(2053), - [anon_sym_PIPE] = ACTIONS(2053), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [anon_sym_fn] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_impl] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_loop] = ACTIONS(2055), - [anon_sym_match] = ACTIONS(2055), - [anon_sym_mod] = ACTIONS(2055), - [anon_sym_pub] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_struct] = ACTIONS(2055), - [anon_sym_trait] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_union] = ACTIONS(2055), - [anon_sym_unsafe] = ACTIONS(2055), - [anon_sym_use] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_extern] = ACTIONS(2055), - [anon_sym_DOT_DOT] = ACTIONS(2053), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_move] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [sym_integer_literal] = ACTIONS(2053), - [aux_sym_string_literal_token1] = ACTIONS(2053), - [sym_char_literal] = ACTIONS(2053), - [anon_sym_true] = ACTIONS(2055), - [anon_sym_false] = ACTIONS(2055), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_crate] = ACTIONS(2055), - [sym_metavariable] = ACTIONS(2053), - [sym_raw_string_literal] = ACTIONS(2053), - [sym_float_literal] = ACTIONS(2053), + [ts_builtin_sym_end] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2108), + [anon_sym_SEMI] = ACTIONS(2106), + [anon_sym_macro_rules_BANG] = ACTIONS(2106), + [anon_sym_LPAREN] = ACTIONS(2106), + [anon_sym_LBRACK] = ACTIONS(2106), + [anon_sym_LBRACE] = ACTIONS(2106), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_u8] = ACTIONS(2108), + [anon_sym_i8] = ACTIONS(2108), + [anon_sym_u16] = ACTIONS(2108), + [anon_sym_i16] = ACTIONS(2108), + [anon_sym_u32] = ACTIONS(2108), + [anon_sym_i32] = ACTIONS(2108), + [anon_sym_u64] = ACTIONS(2108), + [anon_sym_i64] = ACTIONS(2108), + [anon_sym_u128] = ACTIONS(2108), + [anon_sym_i128] = ACTIONS(2108), + [anon_sym_isize] = ACTIONS(2108), + [anon_sym_usize] = ACTIONS(2108), + [anon_sym_f32] = ACTIONS(2108), + [anon_sym_f64] = ACTIONS(2108), + [anon_sym_bool] = ACTIONS(2108), + [anon_sym_str] = ACTIONS(2108), + [anon_sym_char] = ACTIONS(2108), + [anon_sym_DASH] = ACTIONS(2106), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [anon_sym_BANG] = ACTIONS(2106), + [anon_sym_AMP] = ACTIONS(2106), + [anon_sym_POUND] = ACTIONS(2106), + [anon_sym_LT] = ACTIONS(2106), + [anon_sym_PIPE] = ACTIONS(2106), + [anon_sym_SQUOTE] = ACTIONS(2108), + [anon_sym_async] = ACTIONS(2108), + [anon_sym_break] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_continue] = ACTIONS(2108), + [anon_sym_default] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_fn] = ACTIONS(2108), + [anon_sym_for] = ACTIONS(2108), + [anon_sym_if] = ACTIONS(2108), + [anon_sym_impl] = ACTIONS(2108), + [anon_sym_let] = ACTIONS(2108), + [anon_sym_loop] = ACTIONS(2108), + [anon_sym_match] = ACTIONS(2108), + [anon_sym_mod] = ACTIONS(2108), + [anon_sym_pub] = ACTIONS(2108), + [anon_sym_return] = ACTIONS(2108), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_trait] = ACTIONS(2108), + [anon_sym_type] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_unsafe] = ACTIONS(2108), + [anon_sym_use] = ACTIONS(2108), + [anon_sym_while] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym_DOT_DOT] = ACTIONS(2106), + [anon_sym_yield] = ACTIONS(2108), + [anon_sym_move] = ACTIONS(2108), + [anon_sym_try] = ACTIONS(2108), + [sym_integer_literal] = ACTIONS(2106), + [aux_sym_string_literal_token1] = ACTIONS(2106), + [sym_char_literal] = ACTIONS(2106), + [anon_sym_true] = ACTIONS(2108), + [anon_sym_false] = ACTIONS(2108), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2108), + [sym_super] = ACTIONS(2108), + [sym_crate] = ACTIONS(2108), + [sym_metavariable] = ACTIONS(2106), + [sym_raw_string_literal] = ACTIONS(2106), + [sym_float_literal] = ACTIONS(2106), }, [584] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [ts_builtin_sym_end] = ACTIONS(2057), - [sym_identifier] = ACTIONS(2059), - [anon_sym_SEMI] = ACTIONS(2057), - [anon_sym_macro_rules_BANG] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(2057), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_STAR] = ACTIONS(2057), - [anon_sym_u8] = ACTIONS(2059), - [anon_sym_i8] = ACTIONS(2059), - [anon_sym_u16] = ACTIONS(2059), - [anon_sym_i16] = ACTIONS(2059), - [anon_sym_u32] = ACTIONS(2059), - [anon_sym_i32] = ACTIONS(2059), - [anon_sym_u64] = ACTIONS(2059), - [anon_sym_i64] = ACTIONS(2059), - [anon_sym_u128] = ACTIONS(2059), - [anon_sym_i128] = ACTIONS(2059), - [anon_sym_isize] = ACTIONS(2059), - [anon_sym_usize] = ACTIONS(2059), - [anon_sym_f32] = ACTIONS(2059), - [anon_sym_f64] = ACTIONS(2059), - [anon_sym_bool] = ACTIONS(2059), - [anon_sym_str] = ACTIONS(2059), - [anon_sym_char] = ACTIONS(2059), - [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_COLON_COLON] = ACTIONS(2057), - [anon_sym_BANG] = ACTIONS(2057), - [anon_sym_AMP] = ACTIONS(2057), - [anon_sym_POUND] = ACTIONS(2057), - [anon_sym_LT] = ACTIONS(2057), - [anon_sym_PIPE] = ACTIONS(2057), - [anon_sym_SQUOTE] = ACTIONS(2059), - [anon_sym_async] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_default] = ACTIONS(2059), - [anon_sym_enum] = ACTIONS(2059), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_impl] = ACTIONS(2059), - [anon_sym_let] = ACTIONS(2059), - [anon_sym_loop] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_mod] = ACTIONS(2059), - [anon_sym_pub] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_static] = ACTIONS(2059), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_trait] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_use] = ACTIONS(2059), - [anon_sym_while] = ACTIONS(2059), - [anon_sym_extern] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2059), - [anon_sym_move] = ACTIONS(2059), - [anon_sym_try] = ACTIONS(2059), - [sym_integer_literal] = ACTIONS(2057), - [aux_sym_string_literal_token1] = ACTIONS(2057), - [sym_char_literal] = ACTIONS(2057), - [anon_sym_true] = ACTIONS(2059), - [anon_sym_false] = ACTIONS(2059), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2059), - [sym_super] = ACTIONS(2059), - [sym_crate] = ACTIONS(2059), - [sym_metavariable] = ACTIONS(2057), - [sym_raw_string_literal] = ACTIONS(2057), - [sym_float_literal] = ACTIONS(2057), + [ts_builtin_sym_end] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2112), + [anon_sym_SEMI] = ACTIONS(2110), + [anon_sym_macro_rules_BANG] = ACTIONS(2110), + [anon_sym_LPAREN] = ACTIONS(2110), + [anon_sym_LBRACK] = ACTIONS(2110), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_RBRACE] = ACTIONS(2110), + [anon_sym_STAR] = ACTIONS(2110), + [anon_sym_u8] = ACTIONS(2112), + [anon_sym_i8] = ACTIONS(2112), + [anon_sym_u16] = ACTIONS(2112), + [anon_sym_i16] = ACTIONS(2112), + [anon_sym_u32] = ACTIONS(2112), + [anon_sym_i32] = ACTIONS(2112), + [anon_sym_u64] = ACTIONS(2112), + [anon_sym_i64] = ACTIONS(2112), + [anon_sym_u128] = ACTIONS(2112), + [anon_sym_i128] = ACTIONS(2112), + [anon_sym_isize] = ACTIONS(2112), + [anon_sym_usize] = ACTIONS(2112), + [anon_sym_f32] = ACTIONS(2112), + [anon_sym_f64] = ACTIONS(2112), + [anon_sym_bool] = ACTIONS(2112), + [anon_sym_str] = ACTIONS(2112), + [anon_sym_char] = ACTIONS(2112), + [anon_sym_DASH] = ACTIONS(2110), + [anon_sym_COLON_COLON] = ACTIONS(2110), + [anon_sym_BANG] = ACTIONS(2110), + [anon_sym_AMP] = ACTIONS(2110), + [anon_sym_POUND] = ACTIONS(2110), + [anon_sym_LT] = ACTIONS(2110), + [anon_sym_PIPE] = ACTIONS(2110), + [anon_sym_SQUOTE] = ACTIONS(2112), + [anon_sym_async] = ACTIONS(2112), + [anon_sym_break] = ACTIONS(2112), + [anon_sym_const] = ACTIONS(2112), + [anon_sym_continue] = ACTIONS(2112), + [anon_sym_default] = ACTIONS(2112), + [anon_sym_enum] = ACTIONS(2112), + [anon_sym_fn] = ACTIONS(2112), + [anon_sym_for] = ACTIONS(2112), + [anon_sym_if] = ACTIONS(2112), + [anon_sym_impl] = ACTIONS(2112), + [anon_sym_let] = ACTIONS(2112), + [anon_sym_loop] = ACTIONS(2112), + [anon_sym_match] = ACTIONS(2112), + [anon_sym_mod] = ACTIONS(2112), + [anon_sym_pub] = ACTIONS(2112), + [anon_sym_return] = ACTIONS(2112), + [anon_sym_static] = ACTIONS(2112), + [anon_sym_struct] = ACTIONS(2112), + [anon_sym_trait] = ACTIONS(2112), + [anon_sym_type] = ACTIONS(2112), + [anon_sym_union] = ACTIONS(2112), + [anon_sym_unsafe] = ACTIONS(2112), + [anon_sym_use] = ACTIONS(2112), + [anon_sym_while] = ACTIONS(2112), + [anon_sym_extern] = ACTIONS(2112), + [anon_sym_DOT_DOT] = ACTIONS(2110), + [anon_sym_yield] = ACTIONS(2112), + [anon_sym_move] = ACTIONS(2112), + [anon_sym_try] = ACTIONS(2112), + [sym_integer_literal] = ACTIONS(2110), + [aux_sym_string_literal_token1] = ACTIONS(2110), + [sym_char_literal] = ACTIONS(2110), + [anon_sym_true] = ACTIONS(2112), + [anon_sym_false] = ACTIONS(2112), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2112), + [sym_super] = ACTIONS(2112), + [sym_crate] = ACTIONS(2112), + [sym_metavariable] = ACTIONS(2110), + [sym_raw_string_literal] = ACTIONS(2110), + [sym_float_literal] = ACTIONS(2110), }, [585] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2061), - [sym_identifier] = ACTIONS(2063), - [anon_sym_SEMI] = ACTIONS(2061), - [anon_sym_macro_rules_BANG] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LBRACE] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_STAR] = ACTIONS(2061), - [anon_sym_u8] = ACTIONS(2063), - [anon_sym_i8] = ACTIONS(2063), - [anon_sym_u16] = ACTIONS(2063), - [anon_sym_i16] = ACTIONS(2063), - [anon_sym_u32] = ACTIONS(2063), - [anon_sym_i32] = ACTIONS(2063), - [anon_sym_u64] = ACTIONS(2063), - [anon_sym_i64] = ACTIONS(2063), - [anon_sym_u128] = ACTIONS(2063), - [anon_sym_i128] = ACTIONS(2063), - [anon_sym_isize] = ACTIONS(2063), - [anon_sym_usize] = ACTIONS(2063), - [anon_sym_f32] = ACTIONS(2063), - [anon_sym_f64] = ACTIONS(2063), - [anon_sym_bool] = ACTIONS(2063), - [anon_sym_str] = ACTIONS(2063), - [anon_sym_char] = ACTIONS(2063), - [anon_sym_DASH] = ACTIONS(2061), - [anon_sym_COLON_COLON] = ACTIONS(2061), - [anon_sym_BANG] = ACTIONS(2061), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_POUND] = ACTIONS(2061), - [anon_sym_LT] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_SQUOTE] = ACTIONS(2063), - [anon_sym_async] = ACTIONS(2063), - [anon_sym_break] = ACTIONS(2063), - [anon_sym_const] = ACTIONS(2063), - [anon_sym_continue] = ACTIONS(2063), - [anon_sym_default] = ACTIONS(2063), - [anon_sym_enum] = ACTIONS(2063), - [anon_sym_fn] = ACTIONS(2063), - [anon_sym_for] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(2063), - [anon_sym_impl] = ACTIONS(2063), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_loop] = ACTIONS(2063), - [anon_sym_match] = ACTIONS(2063), - [anon_sym_mod] = ACTIONS(2063), - [anon_sym_pub] = ACTIONS(2063), - [anon_sym_return] = ACTIONS(2063), - [anon_sym_static] = ACTIONS(2063), - [anon_sym_struct] = ACTIONS(2063), - [anon_sym_trait] = ACTIONS(2063), - [anon_sym_type] = ACTIONS(2063), - [anon_sym_union] = ACTIONS(2063), - [anon_sym_unsafe] = ACTIONS(2063), - [anon_sym_use] = ACTIONS(2063), - [anon_sym_while] = ACTIONS(2063), - [anon_sym_extern] = ACTIONS(2063), - [anon_sym_DOT_DOT] = ACTIONS(2061), - [anon_sym_yield] = ACTIONS(2063), - [anon_sym_move] = ACTIONS(2063), - [anon_sym_try] = ACTIONS(2063), - [sym_integer_literal] = ACTIONS(2061), - [aux_sym_string_literal_token1] = ACTIONS(2061), - [sym_char_literal] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2063), - [anon_sym_false] = ACTIONS(2063), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2063), - [sym_super] = ACTIONS(2063), - [sym_crate] = ACTIONS(2063), - [sym_metavariable] = ACTIONS(2061), - [sym_raw_string_literal] = ACTIONS(2061), - [sym_float_literal] = ACTIONS(2061), + [ts_builtin_sym_end] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_macro_rules_BANG] = ACTIONS(2114), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_RBRACE] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_u8] = ACTIONS(2116), + [anon_sym_i8] = ACTIONS(2116), + [anon_sym_u16] = ACTIONS(2116), + [anon_sym_i16] = ACTIONS(2116), + [anon_sym_u32] = ACTIONS(2116), + [anon_sym_i32] = ACTIONS(2116), + [anon_sym_u64] = ACTIONS(2116), + [anon_sym_i64] = ACTIONS(2116), + [anon_sym_u128] = ACTIONS(2116), + [anon_sym_i128] = ACTIONS(2116), + [anon_sym_isize] = ACTIONS(2116), + [anon_sym_usize] = ACTIONS(2116), + [anon_sym_f32] = ACTIONS(2116), + [anon_sym_f64] = ACTIONS(2116), + [anon_sym_bool] = ACTIONS(2116), + [anon_sym_str] = ACTIONS(2116), + [anon_sym_char] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2114), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_POUND] = ACTIONS(2114), + [anon_sym_LT] = ACTIONS(2114), + [anon_sym_PIPE] = ACTIONS(2114), + [anon_sym_SQUOTE] = ACTIONS(2116), + [anon_sym_async] = ACTIONS(2116), + [anon_sym_break] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_continue] = ACTIONS(2116), + [anon_sym_default] = ACTIONS(2116), + [anon_sym_enum] = ACTIONS(2116), + [anon_sym_fn] = ACTIONS(2116), + [anon_sym_for] = ACTIONS(2116), + [anon_sym_if] = ACTIONS(2116), + [anon_sym_impl] = ACTIONS(2116), + [anon_sym_let] = ACTIONS(2116), + [anon_sym_loop] = ACTIONS(2116), + [anon_sym_match] = ACTIONS(2116), + [anon_sym_mod] = ACTIONS(2116), + [anon_sym_pub] = ACTIONS(2116), + [anon_sym_return] = ACTIONS(2116), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_struct] = ACTIONS(2116), + [anon_sym_trait] = ACTIONS(2116), + [anon_sym_type] = ACTIONS(2116), + [anon_sym_union] = ACTIONS(2116), + [anon_sym_unsafe] = ACTIONS(2116), + [anon_sym_use] = ACTIONS(2116), + [anon_sym_while] = ACTIONS(2116), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym_DOT_DOT] = ACTIONS(2114), + [anon_sym_yield] = ACTIONS(2116), + [anon_sym_move] = ACTIONS(2116), + [anon_sym_try] = ACTIONS(2116), + [sym_integer_literal] = ACTIONS(2114), + [aux_sym_string_literal_token1] = ACTIONS(2114), + [sym_char_literal] = ACTIONS(2114), + [anon_sym_true] = ACTIONS(2116), + [anon_sym_false] = ACTIONS(2116), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2116), + [sym_super] = ACTIONS(2116), + [sym_crate] = ACTIONS(2116), + [sym_metavariable] = ACTIONS(2114), + [sym_raw_string_literal] = ACTIONS(2114), + [sym_float_literal] = ACTIONS(2114), }, [586] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(2065), - [sym_identifier] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2065), - [anon_sym_macro_rules_BANG] = ACTIONS(2065), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_LBRACK] = ACTIONS(2065), - [anon_sym_LBRACE] = ACTIONS(2065), - [anon_sym_RBRACE] = ACTIONS(2065), - [anon_sym_STAR] = ACTIONS(2065), - [anon_sym_u8] = ACTIONS(2067), - [anon_sym_i8] = ACTIONS(2067), - [anon_sym_u16] = ACTIONS(2067), - [anon_sym_i16] = ACTIONS(2067), - [anon_sym_u32] = ACTIONS(2067), - [anon_sym_i32] = ACTIONS(2067), - [anon_sym_u64] = ACTIONS(2067), - [anon_sym_i64] = ACTIONS(2067), - [anon_sym_u128] = ACTIONS(2067), - [anon_sym_i128] = ACTIONS(2067), - [anon_sym_isize] = ACTIONS(2067), - [anon_sym_usize] = ACTIONS(2067), - [anon_sym_f32] = ACTIONS(2067), - [anon_sym_f64] = ACTIONS(2067), - [anon_sym_bool] = ACTIONS(2067), - [anon_sym_str] = ACTIONS(2067), - [anon_sym_char] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_COLON_COLON] = ACTIONS(2065), - [anon_sym_BANG] = ACTIONS(2065), - [anon_sym_AMP] = ACTIONS(2065), - [anon_sym_POUND] = ACTIONS(2065), - [anon_sym_LT] = ACTIONS(2065), - [anon_sym_PIPE] = ACTIONS(2065), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [anon_sym_fn] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_impl] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_loop] = ACTIONS(2067), - [anon_sym_match] = ACTIONS(2067), - [anon_sym_mod] = ACTIONS(2067), - [anon_sym_pub] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_struct] = ACTIONS(2067), - [anon_sym_trait] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_union] = ACTIONS(2067), - [anon_sym_unsafe] = ACTIONS(2067), - [anon_sym_use] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_extern] = ACTIONS(2067), - [anon_sym_DOT_DOT] = ACTIONS(2065), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_move] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [sym_integer_literal] = ACTIONS(2065), - [aux_sym_string_literal_token1] = ACTIONS(2065), - [sym_char_literal] = ACTIONS(2065), - [anon_sym_true] = ACTIONS(2067), - [anon_sym_false] = ACTIONS(2067), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_crate] = ACTIONS(2067), - [sym_metavariable] = ACTIONS(2065), - [sym_raw_string_literal] = ACTIONS(2065), - [sym_float_literal] = ACTIONS(2065), + [ts_builtin_sym_end] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2120), + [anon_sym_SEMI] = ACTIONS(2118), + [anon_sym_macro_rules_BANG] = ACTIONS(2118), + [anon_sym_LPAREN] = ACTIONS(2118), + [anon_sym_LBRACK] = ACTIONS(2118), + [anon_sym_LBRACE] = ACTIONS(2118), + [anon_sym_RBRACE] = ACTIONS(2118), + [anon_sym_STAR] = ACTIONS(2118), + [anon_sym_u8] = ACTIONS(2120), + [anon_sym_i8] = ACTIONS(2120), + [anon_sym_u16] = ACTIONS(2120), + [anon_sym_i16] = ACTIONS(2120), + [anon_sym_u32] = ACTIONS(2120), + [anon_sym_i32] = ACTIONS(2120), + [anon_sym_u64] = ACTIONS(2120), + [anon_sym_i64] = ACTIONS(2120), + [anon_sym_u128] = ACTIONS(2120), + [anon_sym_i128] = ACTIONS(2120), + [anon_sym_isize] = ACTIONS(2120), + [anon_sym_usize] = ACTIONS(2120), + [anon_sym_f32] = ACTIONS(2120), + [anon_sym_f64] = ACTIONS(2120), + [anon_sym_bool] = ACTIONS(2120), + [anon_sym_str] = ACTIONS(2120), + [anon_sym_char] = ACTIONS(2120), + [anon_sym_DASH] = ACTIONS(2118), + [anon_sym_COLON_COLON] = ACTIONS(2118), + [anon_sym_BANG] = ACTIONS(2118), + [anon_sym_AMP] = ACTIONS(2118), + [anon_sym_POUND] = ACTIONS(2118), + [anon_sym_LT] = ACTIONS(2118), + [anon_sym_PIPE] = ACTIONS(2118), + [anon_sym_SQUOTE] = ACTIONS(2120), + [anon_sym_async] = ACTIONS(2120), + [anon_sym_break] = ACTIONS(2120), + [anon_sym_const] = ACTIONS(2120), + [anon_sym_continue] = ACTIONS(2120), + [anon_sym_default] = ACTIONS(2120), + [anon_sym_enum] = ACTIONS(2120), + [anon_sym_fn] = ACTIONS(2120), + [anon_sym_for] = ACTIONS(2120), + [anon_sym_if] = ACTIONS(2120), + [anon_sym_impl] = ACTIONS(2120), + [anon_sym_let] = ACTIONS(2120), + [anon_sym_loop] = ACTIONS(2120), + [anon_sym_match] = ACTIONS(2120), + [anon_sym_mod] = ACTIONS(2120), + [anon_sym_pub] = ACTIONS(2120), + [anon_sym_return] = ACTIONS(2120), + [anon_sym_static] = ACTIONS(2120), + [anon_sym_struct] = ACTIONS(2120), + [anon_sym_trait] = ACTIONS(2120), + [anon_sym_type] = ACTIONS(2120), + [anon_sym_union] = ACTIONS(2120), + [anon_sym_unsafe] = ACTIONS(2120), + [anon_sym_use] = ACTIONS(2120), + [anon_sym_while] = ACTIONS(2120), + [anon_sym_extern] = ACTIONS(2120), + [anon_sym_DOT_DOT] = ACTIONS(2118), + [anon_sym_yield] = ACTIONS(2120), + [anon_sym_move] = ACTIONS(2120), + [anon_sym_try] = ACTIONS(2120), + [sym_integer_literal] = ACTIONS(2118), + [aux_sym_string_literal_token1] = ACTIONS(2118), + [sym_char_literal] = ACTIONS(2118), + [anon_sym_true] = ACTIONS(2120), + [anon_sym_false] = ACTIONS(2120), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2120), + [sym_super] = ACTIONS(2120), + [sym_crate] = ACTIONS(2120), + [sym_metavariable] = ACTIONS(2118), + [sym_raw_string_literal] = ACTIONS(2118), + [sym_float_literal] = ACTIONS(2118), }, [587] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2069), - [sym_identifier] = ACTIONS(2071), - [anon_sym_SEMI] = ACTIONS(2069), - [anon_sym_macro_rules_BANG] = ACTIONS(2069), - [anon_sym_LPAREN] = ACTIONS(2069), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_LBRACE] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2069), - [anon_sym_STAR] = ACTIONS(2069), - [anon_sym_u8] = ACTIONS(2071), - [anon_sym_i8] = ACTIONS(2071), - [anon_sym_u16] = ACTIONS(2071), - [anon_sym_i16] = ACTIONS(2071), - [anon_sym_u32] = ACTIONS(2071), - [anon_sym_i32] = ACTIONS(2071), - [anon_sym_u64] = ACTIONS(2071), - [anon_sym_i64] = ACTIONS(2071), - [anon_sym_u128] = ACTIONS(2071), - [anon_sym_i128] = ACTIONS(2071), - [anon_sym_isize] = ACTIONS(2071), - [anon_sym_usize] = ACTIONS(2071), - [anon_sym_f32] = ACTIONS(2071), - [anon_sym_f64] = ACTIONS(2071), - [anon_sym_bool] = ACTIONS(2071), - [anon_sym_str] = ACTIONS(2071), - [anon_sym_char] = ACTIONS(2071), - [anon_sym_DASH] = ACTIONS(2069), - [anon_sym_COLON_COLON] = ACTIONS(2069), - [anon_sym_BANG] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_POUND] = ACTIONS(2069), - [anon_sym_LT] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2069), - [anon_sym_SQUOTE] = ACTIONS(2071), - [anon_sym_async] = ACTIONS(2071), - [anon_sym_break] = ACTIONS(2071), - [anon_sym_const] = ACTIONS(2071), - [anon_sym_continue] = ACTIONS(2071), - [anon_sym_default] = ACTIONS(2071), - [anon_sym_enum] = ACTIONS(2071), - [anon_sym_fn] = ACTIONS(2071), - [anon_sym_for] = ACTIONS(2071), - [anon_sym_if] = ACTIONS(2071), - [anon_sym_impl] = ACTIONS(2071), - [anon_sym_let] = ACTIONS(2071), - [anon_sym_loop] = ACTIONS(2071), - [anon_sym_match] = ACTIONS(2071), - [anon_sym_mod] = ACTIONS(2071), - [anon_sym_pub] = ACTIONS(2071), - [anon_sym_return] = ACTIONS(2071), - [anon_sym_static] = ACTIONS(2071), - [anon_sym_struct] = ACTIONS(2071), - [anon_sym_trait] = ACTIONS(2071), - [anon_sym_type] = ACTIONS(2071), - [anon_sym_union] = ACTIONS(2071), - [anon_sym_unsafe] = ACTIONS(2071), - [anon_sym_use] = ACTIONS(2071), - [anon_sym_while] = ACTIONS(2071), - [anon_sym_extern] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2069), - [anon_sym_yield] = ACTIONS(2071), - [anon_sym_move] = ACTIONS(2071), - [anon_sym_try] = ACTIONS(2071), - [sym_integer_literal] = ACTIONS(2069), - [aux_sym_string_literal_token1] = ACTIONS(2069), - [sym_char_literal] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2071), - [sym_super] = ACTIONS(2071), - [sym_crate] = ACTIONS(2071), - [sym_metavariable] = ACTIONS(2069), - [sym_raw_string_literal] = ACTIONS(2069), - [sym_float_literal] = ACTIONS(2069), + [ts_builtin_sym_end] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2124), + [anon_sym_SEMI] = ACTIONS(2122), + [anon_sym_macro_rules_BANG] = ACTIONS(2122), + [anon_sym_LPAREN] = ACTIONS(2122), + [anon_sym_LBRACK] = ACTIONS(2122), + [anon_sym_LBRACE] = ACTIONS(2122), + [anon_sym_RBRACE] = ACTIONS(2122), + [anon_sym_STAR] = ACTIONS(2122), + [anon_sym_u8] = ACTIONS(2124), + [anon_sym_i8] = ACTIONS(2124), + [anon_sym_u16] = ACTIONS(2124), + [anon_sym_i16] = ACTIONS(2124), + [anon_sym_u32] = ACTIONS(2124), + [anon_sym_i32] = ACTIONS(2124), + [anon_sym_u64] = ACTIONS(2124), + [anon_sym_i64] = ACTIONS(2124), + [anon_sym_u128] = ACTIONS(2124), + [anon_sym_i128] = ACTIONS(2124), + [anon_sym_isize] = ACTIONS(2124), + [anon_sym_usize] = ACTIONS(2124), + [anon_sym_f32] = ACTIONS(2124), + [anon_sym_f64] = ACTIONS(2124), + [anon_sym_bool] = ACTIONS(2124), + [anon_sym_str] = ACTIONS(2124), + [anon_sym_char] = ACTIONS(2124), + [anon_sym_DASH] = ACTIONS(2122), + [anon_sym_COLON_COLON] = ACTIONS(2122), + [anon_sym_BANG] = ACTIONS(2122), + [anon_sym_AMP] = ACTIONS(2122), + [anon_sym_POUND] = ACTIONS(2122), + [anon_sym_LT] = ACTIONS(2122), + [anon_sym_PIPE] = ACTIONS(2122), + [anon_sym_SQUOTE] = ACTIONS(2124), + [anon_sym_async] = ACTIONS(2124), + [anon_sym_break] = ACTIONS(2124), + [anon_sym_const] = ACTIONS(2124), + [anon_sym_continue] = ACTIONS(2124), + [anon_sym_default] = ACTIONS(2124), + [anon_sym_enum] = ACTIONS(2124), + [anon_sym_fn] = ACTIONS(2124), + [anon_sym_for] = ACTIONS(2124), + [anon_sym_if] = ACTIONS(2124), + [anon_sym_impl] = ACTIONS(2124), + [anon_sym_let] = ACTIONS(2124), + [anon_sym_loop] = ACTIONS(2124), + [anon_sym_match] = ACTIONS(2124), + [anon_sym_mod] = ACTIONS(2124), + [anon_sym_pub] = ACTIONS(2124), + [anon_sym_return] = ACTIONS(2124), + [anon_sym_static] = ACTIONS(2124), + [anon_sym_struct] = ACTIONS(2124), + [anon_sym_trait] = ACTIONS(2124), + [anon_sym_type] = ACTIONS(2124), + [anon_sym_union] = ACTIONS(2124), + [anon_sym_unsafe] = ACTIONS(2124), + [anon_sym_use] = ACTIONS(2124), + [anon_sym_while] = ACTIONS(2124), + [anon_sym_extern] = ACTIONS(2124), + [anon_sym_DOT_DOT] = ACTIONS(2122), + [anon_sym_yield] = ACTIONS(2124), + [anon_sym_move] = ACTIONS(2124), + [anon_sym_try] = ACTIONS(2124), + [sym_integer_literal] = ACTIONS(2122), + [aux_sym_string_literal_token1] = ACTIONS(2122), + [sym_char_literal] = ACTIONS(2122), + [anon_sym_true] = ACTIONS(2124), + [anon_sym_false] = ACTIONS(2124), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2124), + [sym_super] = ACTIONS(2124), + [sym_crate] = ACTIONS(2124), + [sym_metavariable] = ACTIONS(2122), + [sym_raw_string_literal] = ACTIONS(2122), + [sym_float_literal] = ACTIONS(2122), }, [588] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2073), - [sym_identifier] = ACTIONS(2075), - [anon_sym_SEMI] = ACTIONS(2073), - [anon_sym_macro_rules_BANG] = ACTIONS(2073), - [anon_sym_LPAREN] = ACTIONS(2073), - [anon_sym_LBRACK] = ACTIONS(2073), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_RBRACE] = ACTIONS(2073), - [anon_sym_STAR] = ACTIONS(2073), - [anon_sym_u8] = ACTIONS(2075), - [anon_sym_i8] = ACTIONS(2075), - [anon_sym_u16] = ACTIONS(2075), - [anon_sym_i16] = ACTIONS(2075), - [anon_sym_u32] = ACTIONS(2075), - [anon_sym_i32] = ACTIONS(2075), - [anon_sym_u64] = ACTIONS(2075), - [anon_sym_i64] = ACTIONS(2075), - [anon_sym_u128] = ACTIONS(2075), - [anon_sym_i128] = ACTIONS(2075), - [anon_sym_isize] = ACTIONS(2075), - [anon_sym_usize] = ACTIONS(2075), - [anon_sym_f32] = ACTIONS(2075), - [anon_sym_f64] = ACTIONS(2075), - [anon_sym_bool] = ACTIONS(2075), - [anon_sym_str] = ACTIONS(2075), - [anon_sym_char] = ACTIONS(2075), - [anon_sym_DASH] = ACTIONS(2073), - [anon_sym_COLON_COLON] = ACTIONS(2073), - [anon_sym_BANG] = ACTIONS(2073), - [anon_sym_AMP] = ACTIONS(2073), - [anon_sym_POUND] = ACTIONS(2073), - [anon_sym_LT] = ACTIONS(2073), - [anon_sym_PIPE] = ACTIONS(2073), - [anon_sym_SQUOTE] = ACTIONS(2075), - [anon_sym_async] = ACTIONS(2075), - [anon_sym_break] = ACTIONS(2075), - [anon_sym_const] = ACTIONS(2075), - [anon_sym_continue] = ACTIONS(2075), - [anon_sym_default] = ACTIONS(2075), - [anon_sym_enum] = ACTIONS(2075), - [anon_sym_fn] = ACTIONS(2075), - [anon_sym_for] = ACTIONS(2075), - [anon_sym_if] = ACTIONS(2075), - [anon_sym_impl] = ACTIONS(2075), - [anon_sym_let] = ACTIONS(2075), - [anon_sym_loop] = ACTIONS(2075), - [anon_sym_match] = ACTIONS(2075), - [anon_sym_mod] = ACTIONS(2075), - [anon_sym_pub] = ACTIONS(2075), - [anon_sym_return] = ACTIONS(2075), - [anon_sym_static] = ACTIONS(2075), - [anon_sym_struct] = ACTIONS(2075), - [anon_sym_trait] = ACTIONS(2075), - [anon_sym_type] = ACTIONS(2075), - [anon_sym_union] = ACTIONS(2075), - [anon_sym_unsafe] = ACTIONS(2075), - [anon_sym_use] = ACTIONS(2075), - [anon_sym_while] = ACTIONS(2075), - [anon_sym_extern] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2073), - [anon_sym_yield] = ACTIONS(2075), - [anon_sym_move] = ACTIONS(2075), - [anon_sym_try] = ACTIONS(2075), - [sym_integer_literal] = ACTIONS(2073), - [aux_sym_string_literal_token1] = ACTIONS(2073), - [sym_char_literal] = ACTIONS(2073), - [anon_sym_true] = ACTIONS(2075), - [anon_sym_false] = ACTIONS(2075), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2075), - [sym_super] = ACTIONS(2075), - [sym_crate] = ACTIONS(2075), - [sym_metavariable] = ACTIONS(2073), - [sym_raw_string_literal] = ACTIONS(2073), - [sym_float_literal] = ACTIONS(2073), + [ts_builtin_sym_end] = ACTIONS(2126), + [sym_identifier] = ACTIONS(2128), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_macro_rules_BANG] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_u8] = ACTIONS(2128), + [anon_sym_i8] = ACTIONS(2128), + [anon_sym_u16] = ACTIONS(2128), + [anon_sym_i16] = ACTIONS(2128), + [anon_sym_u32] = ACTIONS(2128), + [anon_sym_i32] = ACTIONS(2128), + [anon_sym_u64] = ACTIONS(2128), + [anon_sym_i64] = ACTIONS(2128), + [anon_sym_u128] = ACTIONS(2128), + [anon_sym_i128] = ACTIONS(2128), + [anon_sym_isize] = ACTIONS(2128), + [anon_sym_usize] = ACTIONS(2128), + [anon_sym_f32] = ACTIONS(2128), + [anon_sym_f64] = ACTIONS(2128), + [anon_sym_bool] = ACTIONS(2128), + [anon_sym_str] = ACTIONS(2128), + [anon_sym_char] = ACTIONS(2128), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_COLON_COLON] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_POUND] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2128), + [anon_sym_async] = ACTIONS(2128), + [anon_sym_break] = ACTIONS(2128), + [anon_sym_const] = ACTIONS(2128), + [anon_sym_continue] = ACTIONS(2128), + [anon_sym_default] = ACTIONS(2128), + [anon_sym_enum] = ACTIONS(2128), + [anon_sym_fn] = ACTIONS(2128), + [anon_sym_for] = ACTIONS(2128), + [anon_sym_if] = ACTIONS(2128), + [anon_sym_impl] = ACTIONS(2128), + [anon_sym_let] = ACTIONS(2128), + [anon_sym_loop] = ACTIONS(2128), + [anon_sym_match] = ACTIONS(2128), + [anon_sym_mod] = ACTIONS(2128), + [anon_sym_pub] = ACTIONS(2128), + [anon_sym_return] = ACTIONS(2128), + [anon_sym_static] = ACTIONS(2128), + [anon_sym_struct] = ACTIONS(2128), + [anon_sym_trait] = ACTIONS(2128), + [anon_sym_type] = ACTIONS(2128), + [anon_sym_union] = ACTIONS(2128), + [anon_sym_unsafe] = ACTIONS(2128), + [anon_sym_use] = ACTIONS(2128), + [anon_sym_while] = ACTIONS(2128), + [anon_sym_extern] = ACTIONS(2128), + [anon_sym_DOT_DOT] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2128), + [anon_sym_move] = ACTIONS(2128), + [anon_sym_try] = ACTIONS(2128), + [sym_integer_literal] = ACTIONS(2126), + [aux_sym_string_literal_token1] = ACTIONS(2126), + [sym_char_literal] = ACTIONS(2126), + [anon_sym_true] = ACTIONS(2128), + [anon_sym_false] = ACTIONS(2128), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2128), + [sym_super] = ACTIONS(2128), + [sym_crate] = ACTIONS(2128), + [sym_metavariable] = ACTIONS(2126), + [sym_raw_string_literal] = ACTIONS(2126), + [sym_float_literal] = ACTIONS(2126), }, [589] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [ts_builtin_sym_end] = ACTIONS(2077), - [sym_identifier] = ACTIONS(2079), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_macro_rules_BANG] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_u8] = ACTIONS(2079), - [anon_sym_i8] = ACTIONS(2079), - [anon_sym_u16] = ACTIONS(2079), - [anon_sym_i16] = ACTIONS(2079), - [anon_sym_u32] = ACTIONS(2079), - [anon_sym_i32] = ACTIONS(2079), - [anon_sym_u64] = ACTIONS(2079), - [anon_sym_i64] = ACTIONS(2079), - [anon_sym_u128] = ACTIONS(2079), - [anon_sym_i128] = ACTIONS(2079), - [anon_sym_isize] = ACTIONS(2079), - [anon_sym_usize] = ACTIONS(2079), - [anon_sym_f32] = ACTIONS(2079), - [anon_sym_f64] = ACTIONS(2079), - [anon_sym_bool] = ACTIONS(2079), - [anon_sym_str] = ACTIONS(2079), - [anon_sym_char] = ACTIONS(2079), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_COLON_COLON] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2077), - [anon_sym_POUND] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2079), - [anon_sym_async] = ACTIONS(2079), - [anon_sym_break] = ACTIONS(2079), - [anon_sym_const] = ACTIONS(2079), - [anon_sym_continue] = ACTIONS(2079), - [anon_sym_default] = ACTIONS(2079), - [anon_sym_enum] = ACTIONS(2079), - [anon_sym_fn] = ACTIONS(2079), - [anon_sym_for] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(2079), - [anon_sym_impl] = ACTIONS(2079), - [anon_sym_let] = ACTIONS(2079), - [anon_sym_loop] = ACTIONS(2079), - [anon_sym_match] = ACTIONS(2079), - [anon_sym_mod] = ACTIONS(2079), - [anon_sym_pub] = ACTIONS(2079), - [anon_sym_return] = ACTIONS(2079), - [anon_sym_static] = ACTIONS(2079), - [anon_sym_struct] = ACTIONS(2079), - [anon_sym_trait] = ACTIONS(2079), - [anon_sym_type] = ACTIONS(2079), - [anon_sym_union] = ACTIONS(2079), - [anon_sym_unsafe] = ACTIONS(2079), - [anon_sym_use] = ACTIONS(2079), - [anon_sym_while] = ACTIONS(2079), - [anon_sym_extern] = ACTIONS(2079), - [anon_sym_DOT_DOT] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2079), - [anon_sym_move] = ACTIONS(2079), - [anon_sym_try] = ACTIONS(2079), - [sym_integer_literal] = ACTIONS(2077), - [aux_sym_string_literal_token1] = ACTIONS(2077), - [sym_char_literal] = ACTIONS(2077), - [anon_sym_true] = ACTIONS(2079), - [anon_sym_false] = ACTIONS(2079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2079), - [sym_super] = ACTIONS(2079), - [sym_crate] = ACTIONS(2079), - [sym_metavariable] = ACTIONS(2077), - [sym_raw_string_literal] = ACTIONS(2077), - [sym_float_literal] = ACTIONS(2077), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2132), + [anon_sym_SEMI] = ACTIONS(2130), + [anon_sym_macro_rules_BANG] = ACTIONS(2130), + [anon_sym_LPAREN] = ACTIONS(2130), + [anon_sym_LBRACK] = ACTIONS(2130), + [anon_sym_LBRACE] = ACTIONS(2130), + [anon_sym_RBRACE] = ACTIONS(2130), + [anon_sym_STAR] = ACTIONS(2130), + [anon_sym_u8] = ACTIONS(2132), + [anon_sym_i8] = ACTIONS(2132), + [anon_sym_u16] = ACTIONS(2132), + [anon_sym_i16] = ACTIONS(2132), + [anon_sym_u32] = ACTIONS(2132), + [anon_sym_i32] = ACTIONS(2132), + [anon_sym_u64] = ACTIONS(2132), + [anon_sym_i64] = ACTIONS(2132), + [anon_sym_u128] = ACTIONS(2132), + [anon_sym_i128] = ACTIONS(2132), + [anon_sym_isize] = ACTIONS(2132), + [anon_sym_usize] = ACTIONS(2132), + [anon_sym_f32] = ACTIONS(2132), + [anon_sym_f64] = ACTIONS(2132), + [anon_sym_bool] = ACTIONS(2132), + [anon_sym_str] = ACTIONS(2132), + [anon_sym_char] = ACTIONS(2132), + [anon_sym_DASH] = ACTIONS(2130), + [anon_sym_COLON_COLON] = ACTIONS(2130), + [anon_sym_BANG] = ACTIONS(2130), + [anon_sym_AMP] = ACTIONS(2130), + [anon_sym_POUND] = ACTIONS(2130), + [anon_sym_LT] = ACTIONS(2130), + [anon_sym_PIPE] = ACTIONS(2130), + [anon_sym_SQUOTE] = ACTIONS(2132), + [anon_sym_async] = ACTIONS(2132), + [anon_sym_break] = ACTIONS(2132), + [anon_sym_const] = ACTIONS(2132), + [anon_sym_continue] = ACTIONS(2132), + [anon_sym_default] = ACTIONS(2132), + [anon_sym_enum] = ACTIONS(2132), + [anon_sym_fn] = ACTIONS(2132), + [anon_sym_for] = ACTIONS(2132), + [anon_sym_if] = ACTIONS(2132), + [anon_sym_impl] = ACTIONS(2132), + [anon_sym_let] = ACTIONS(2132), + [anon_sym_loop] = ACTIONS(2132), + [anon_sym_match] = ACTIONS(2132), + [anon_sym_mod] = ACTIONS(2132), + [anon_sym_pub] = ACTIONS(2132), + [anon_sym_return] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(2132), + [anon_sym_struct] = ACTIONS(2132), + [anon_sym_trait] = ACTIONS(2132), + [anon_sym_type] = ACTIONS(2132), + [anon_sym_union] = ACTIONS(2132), + [anon_sym_unsafe] = ACTIONS(2132), + [anon_sym_use] = ACTIONS(2132), + [anon_sym_while] = ACTIONS(2132), + [anon_sym_extern] = ACTIONS(2132), + [anon_sym_DOT_DOT] = ACTIONS(2130), + [anon_sym_yield] = ACTIONS(2132), + [anon_sym_move] = ACTIONS(2132), + [anon_sym_try] = ACTIONS(2132), + [sym_integer_literal] = ACTIONS(2130), + [aux_sym_string_literal_token1] = ACTIONS(2130), + [sym_char_literal] = ACTIONS(2130), + [anon_sym_true] = ACTIONS(2132), + [anon_sym_false] = ACTIONS(2132), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2132), + [sym_super] = ACTIONS(2132), + [sym_crate] = ACTIONS(2132), + [sym_metavariable] = ACTIONS(2130), + [sym_raw_string_literal] = ACTIONS(2130), + [sym_float_literal] = ACTIONS(2130), }, [590] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(2081), - [sym_identifier] = ACTIONS(2083), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_macro_rules_BANG] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2081), - [anon_sym_u8] = ACTIONS(2083), - [anon_sym_i8] = ACTIONS(2083), - [anon_sym_u16] = ACTIONS(2083), - [anon_sym_i16] = ACTIONS(2083), - [anon_sym_u32] = ACTIONS(2083), - [anon_sym_i32] = ACTIONS(2083), - [anon_sym_u64] = ACTIONS(2083), - [anon_sym_i64] = ACTIONS(2083), - [anon_sym_u128] = ACTIONS(2083), - [anon_sym_i128] = ACTIONS(2083), - [anon_sym_isize] = ACTIONS(2083), - [anon_sym_usize] = ACTIONS(2083), - [anon_sym_f32] = ACTIONS(2083), - [anon_sym_f64] = ACTIONS(2083), - [anon_sym_bool] = ACTIONS(2083), - [anon_sym_str] = ACTIONS(2083), - [anon_sym_char] = ACTIONS(2083), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_COLON_COLON] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2083), - [anon_sym_async] = ACTIONS(2083), - [anon_sym_break] = ACTIONS(2083), - [anon_sym_const] = ACTIONS(2083), - [anon_sym_continue] = ACTIONS(2083), - [anon_sym_default] = ACTIONS(2083), - [anon_sym_enum] = ACTIONS(2083), - [anon_sym_fn] = ACTIONS(2083), - [anon_sym_for] = ACTIONS(2083), - [anon_sym_if] = ACTIONS(2083), - [anon_sym_impl] = ACTIONS(2083), - [anon_sym_let] = ACTIONS(2083), - [anon_sym_loop] = ACTIONS(2083), - [anon_sym_match] = ACTIONS(2083), - [anon_sym_mod] = ACTIONS(2083), - [anon_sym_pub] = ACTIONS(2083), - [anon_sym_return] = ACTIONS(2083), - [anon_sym_static] = ACTIONS(2083), - [anon_sym_struct] = ACTIONS(2083), - [anon_sym_trait] = ACTIONS(2083), - [anon_sym_type] = ACTIONS(2083), - [anon_sym_union] = ACTIONS(2083), - [anon_sym_unsafe] = ACTIONS(2083), - [anon_sym_use] = ACTIONS(2083), - [anon_sym_while] = ACTIONS(2083), - [anon_sym_extern] = ACTIONS(2083), - [anon_sym_DOT_DOT] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2083), - [anon_sym_move] = ACTIONS(2083), - [anon_sym_try] = ACTIONS(2083), - [sym_integer_literal] = ACTIONS(2081), - [aux_sym_string_literal_token1] = ACTIONS(2081), - [sym_char_literal] = ACTIONS(2081), - [anon_sym_true] = ACTIONS(2083), - [anon_sym_false] = ACTIONS(2083), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2083), - [sym_super] = ACTIONS(2083), - [sym_crate] = ACTIONS(2083), - [sym_metavariable] = ACTIONS(2081), - [sym_raw_string_literal] = ACTIONS(2081), - [sym_float_literal] = ACTIONS(2081), + [ts_builtin_sym_end] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2136), + [anon_sym_SEMI] = ACTIONS(2134), + [anon_sym_macro_rules_BANG] = ACTIONS(2134), + [anon_sym_LPAREN] = ACTIONS(2134), + [anon_sym_LBRACK] = ACTIONS(2134), + [anon_sym_LBRACE] = ACTIONS(2134), + [anon_sym_RBRACE] = ACTIONS(2134), + [anon_sym_STAR] = ACTIONS(2134), + [anon_sym_u8] = ACTIONS(2136), + [anon_sym_i8] = ACTIONS(2136), + [anon_sym_u16] = ACTIONS(2136), + [anon_sym_i16] = ACTIONS(2136), + [anon_sym_u32] = ACTIONS(2136), + [anon_sym_i32] = ACTIONS(2136), + [anon_sym_u64] = ACTIONS(2136), + [anon_sym_i64] = ACTIONS(2136), + [anon_sym_u128] = ACTIONS(2136), + [anon_sym_i128] = ACTIONS(2136), + [anon_sym_isize] = ACTIONS(2136), + [anon_sym_usize] = ACTIONS(2136), + [anon_sym_f32] = ACTIONS(2136), + [anon_sym_f64] = ACTIONS(2136), + [anon_sym_bool] = ACTIONS(2136), + [anon_sym_str] = ACTIONS(2136), + [anon_sym_char] = ACTIONS(2136), + [anon_sym_DASH] = ACTIONS(2134), + [anon_sym_COLON_COLON] = ACTIONS(2134), + [anon_sym_BANG] = ACTIONS(2134), + [anon_sym_AMP] = ACTIONS(2134), + [anon_sym_POUND] = ACTIONS(2134), + [anon_sym_LT] = ACTIONS(2134), + [anon_sym_PIPE] = ACTIONS(2134), + [anon_sym_SQUOTE] = ACTIONS(2136), + [anon_sym_async] = ACTIONS(2136), + [anon_sym_break] = ACTIONS(2136), + [anon_sym_const] = ACTIONS(2136), + [anon_sym_continue] = ACTIONS(2136), + [anon_sym_default] = ACTIONS(2136), + [anon_sym_enum] = ACTIONS(2136), + [anon_sym_fn] = ACTIONS(2136), + [anon_sym_for] = ACTIONS(2136), + [anon_sym_if] = ACTIONS(2136), + [anon_sym_impl] = ACTIONS(2136), + [anon_sym_let] = ACTIONS(2136), + [anon_sym_loop] = ACTIONS(2136), + [anon_sym_match] = ACTIONS(2136), + [anon_sym_mod] = ACTIONS(2136), + [anon_sym_pub] = ACTIONS(2136), + [anon_sym_return] = ACTIONS(2136), + [anon_sym_static] = ACTIONS(2136), + [anon_sym_struct] = ACTIONS(2136), + [anon_sym_trait] = ACTIONS(2136), + [anon_sym_type] = ACTIONS(2136), + [anon_sym_union] = ACTIONS(2136), + [anon_sym_unsafe] = ACTIONS(2136), + [anon_sym_use] = ACTIONS(2136), + [anon_sym_while] = ACTIONS(2136), + [anon_sym_extern] = ACTIONS(2136), + [anon_sym_DOT_DOT] = ACTIONS(2134), + [anon_sym_yield] = ACTIONS(2136), + [anon_sym_move] = ACTIONS(2136), + [anon_sym_try] = ACTIONS(2136), + [sym_integer_literal] = ACTIONS(2134), + [aux_sym_string_literal_token1] = ACTIONS(2134), + [sym_char_literal] = ACTIONS(2134), + [anon_sym_true] = ACTIONS(2136), + [anon_sym_false] = ACTIONS(2136), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2136), + [sym_super] = ACTIONS(2136), + [sym_crate] = ACTIONS(2136), + [sym_metavariable] = ACTIONS(2134), + [sym_raw_string_literal] = ACTIONS(2134), + [sym_float_literal] = ACTIONS(2134), }, [591] = { - [sym_empty_statement] = STATE(1433), - [sym_macro_definition] = STATE(1433), - [sym_attribute_item] = STATE(1433), - [sym_inner_attribute_item] = STATE(1433), - [sym_mod_item] = STATE(1433), - [sym_foreign_mod_item] = STATE(1433), - [sym_struct_item] = STATE(1433), - [sym_union_item] = STATE(1433), - [sym_enum_item] = STATE(1433), - [sym_extern_crate_declaration] = STATE(1433), - [sym_const_item] = STATE(1433), - [sym_static_item] = STATE(1433), - [sym_type_item] = STATE(1433), - [sym_function_item] = STATE(1433), - [sym_function_signature_item] = STATE(1433), - [sym_function_modifiers] = STATE(3512), - [sym_impl_item] = STATE(1433), - [sym_trait_item] = STATE(1433), - [sym_associated_type] = STATE(1433), - [sym_let_declaration] = STATE(1433), - [sym_use_declaration] = STATE(1433), - [sym_extern_modifier] = STATE(2123), - [sym_visibility_modifier] = STATE(1927), - [sym_bracketed_type] = STATE(3248), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_macro_invocation] = STATE(1433), - [sym_scoped_identifier] = STATE(3071), [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [aux_sym_declaration_list_repeat1] = STATE(591), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_macro_rules_BANG] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2094), - [anon_sym_u8] = ACTIONS(2096), - [anon_sym_i8] = ACTIONS(2096), - [anon_sym_u16] = ACTIONS(2096), - [anon_sym_i16] = ACTIONS(2096), - [anon_sym_u32] = ACTIONS(2096), - [anon_sym_i32] = ACTIONS(2096), - [anon_sym_u64] = ACTIONS(2096), - [anon_sym_i64] = ACTIONS(2096), - [anon_sym_u128] = ACTIONS(2096), - [anon_sym_i128] = ACTIONS(2096), - [anon_sym_isize] = ACTIONS(2096), - [anon_sym_usize] = ACTIONS(2096), - [anon_sym_f32] = ACTIONS(2096), - [anon_sym_f64] = ACTIONS(2096), - [anon_sym_bool] = ACTIONS(2096), - [anon_sym_str] = ACTIONS(2096), - [anon_sym_char] = ACTIONS(2096), - [anon_sym_COLON_COLON] = ACTIONS(2099), - [anon_sym_POUND] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2111), - [anon_sym_default] = ACTIONS(2114), - [anon_sym_enum] = ACTIONS(2117), - [anon_sym_fn] = ACTIONS(2120), - [anon_sym_impl] = ACTIONS(2123), - [anon_sym_let] = ACTIONS(2126), - [anon_sym_mod] = ACTIONS(2129), - [anon_sym_pub] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_struct] = ACTIONS(2138), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2144), - [anon_sym_union] = ACTIONS(2147), - [anon_sym_unsafe] = ACTIONS(2150), - [anon_sym_use] = ACTIONS(2153), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_crate] = ACTIONS(2162), - [sym_metavariable] = ACTIONS(2165), + [ts_builtin_sym_end] = ACTIONS(2138), + [sym_identifier] = ACTIONS(2140), + [anon_sym_SEMI] = ACTIONS(2138), + [anon_sym_macro_rules_BANG] = ACTIONS(2138), + [anon_sym_LPAREN] = ACTIONS(2138), + [anon_sym_LBRACK] = ACTIONS(2138), + [anon_sym_LBRACE] = ACTIONS(2138), + [anon_sym_RBRACE] = ACTIONS(2138), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_u8] = ACTIONS(2140), + [anon_sym_i8] = ACTIONS(2140), + [anon_sym_u16] = ACTIONS(2140), + [anon_sym_i16] = ACTIONS(2140), + [anon_sym_u32] = ACTIONS(2140), + [anon_sym_i32] = ACTIONS(2140), + [anon_sym_u64] = ACTIONS(2140), + [anon_sym_i64] = ACTIONS(2140), + [anon_sym_u128] = ACTIONS(2140), + [anon_sym_i128] = ACTIONS(2140), + [anon_sym_isize] = ACTIONS(2140), + [anon_sym_usize] = ACTIONS(2140), + [anon_sym_f32] = ACTIONS(2140), + [anon_sym_f64] = ACTIONS(2140), + [anon_sym_bool] = ACTIONS(2140), + [anon_sym_str] = ACTIONS(2140), + [anon_sym_char] = ACTIONS(2140), + [anon_sym_DASH] = ACTIONS(2138), + [anon_sym_COLON_COLON] = ACTIONS(2138), + [anon_sym_BANG] = ACTIONS(2138), + [anon_sym_AMP] = ACTIONS(2138), + [anon_sym_POUND] = ACTIONS(2138), + [anon_sym_LT] = ACTIONS(2138), + [anon_sym_PIPE] = ACTIONS(2138), + [anon_sym_SQUOTE] = ACTIONS(2140), + [anon_sym_async] = ACTIONS(2140), + [anon_sym_break] = ACTIONS(2140), + [anon_sym_const] = ACTIONS(2140), + [anon_sym_continue] = ACTIONS(2140), + [anon_sym_default] = ACTIONS(2140), + [anon_sym_enum] = ACTIONS(2140), + [anon_sym_fn] = ACTIONS(2140), + [anon_sym_for] = ACTIONS(2140), + [anon_sym_if] = ACTIONS(2140), + [anon_sym_impl] = ACTIONS(2140), + [anon_sym_let] = ACTIONS(2140), + [anon_sym_loop] = ACTIONS(2140), + [anon_sym_match] = ACTIONS(2140), + [anon_sym_mod] = ACTIONS(2140), + [anon_sym_pub] = ACTIONS(2140), + [anon_sym_return] = ACTIONS(2140), + [anon_sym_static] = ACTIONS(2140), + [anon_sym_struct] = ACTIONS(2140), + [anon_sym_trait] = ACTIONS(2140), + [anon_sym_type] = ACTIONS(2140), + [anon_sym_union] = ACTIONS(2140), + [anon_sym_unsafe] = ACTIONS(2140), + [anon_sym_use] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2140), + [anon_sym_extern] = ACTIONS(2140), + [anon_sym_DOT_DOT] = ACTIONS(2138), + [anon_sym_yield] = ACTIONS(2140), + [anon_sym_move] = ACTIONS(2140), + [anon_sym_try] = ACTIONS(2140), + [sym_integer_literal] = ACTIONS(2138), + [aux_sym_string_literal_token1] = ACTIONS(2138), + [sym_char_literal] = ACTIONS(2138), + [anon_sym_true] = ACTIONS(2140), + [anon_sym_false] = ACTIONS(2140), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2140), + [sym_super] = ACTIONS(2140), + [sym_crate] = ACTIONS(2140), + [sym_metavariable] = ACTIONS(2138), + [sym_raw_string_literal] = ACTIONS(2138), + [sym_float_literal] = ACTIONS(2138), }, [592] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(2168), - [sym_identifier] = ACTIONS(2170), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_macro_rules_BANG] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_STAR] = ACTIONS(2168), - [anon_sym_u8] = ACTIONS(2170), - [anon_sym_i8] = ACTIONS(2170), - [anon_sym_u16] = ACTIONS(2170), - [anon_sym_i16] = ACTIONS(2170), - [anon_sym_u32] = ACTIONS(2170), - [anon_sym_i32] = ACTIONS(2170), - [anon_sym_u64] = ACTIONS(2170), - [anon_sym_i64] = ACTIONS(2170), - [anon_sym_u128] = ACTIONS(2170), - [anon_sym_i128] = ACTIONS(2170), - [anon_sym_isize] = ACTIONS(2170), - [anon_sym_usize] = ACTIONS(2170), - [anon_sym_f32] = ACTIONS(2170), - [anon_sym_f64] = ACTIONS(2170), - [anon_sym_bool] = ACTIONS(2170), - [anon_sym_str] = ACTIONS(2170), - [anon_sym_char] = ACTIONS(2170), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_COLON_COLON] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_AMP] = ACTIONS(2168), - [anon_sym_POUND] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2170), - [anon_sym_async] = ACTIONS(2170), - [anon_sym_break] = ACTIONS(2170), - [anon_sym_const] = ACTIONS(2170), - [anon_sym_continue] = ACTIONS(2170), - [anon_sym_default] = ACTIONS(2170), - [anon_sym_enum] = ACTIONS(2170), - [anon_sym_fn] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_impl] = ACTIONS(2170), - [anon_sym_let] = ACTIONS(2170), - [anon_sym_loop] = ACTIONS(2170), - [anon_sym_match] = ACTIONS(2170), - [anon_sym_mod] = ACTIONS(2170), - [anon_sym_pub] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_static] = ACTIONS(2170), - [anon_sym_struct] = ACTIONS(2170), - [anon_sym_trait] = ACTIONS(2170), - [anon_sym_type] = ACTIONS(2170), - [anon_sym_union] = ACTIONS(2170), - [anon_sym_unsafe] = ACTIONS(2170), - [anon_sym_use] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_extern] = ACTIONS(2170), - [anon_sym_DOT_DOT] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2170), - [anon_sym_move] = ACTIONS(2170), - [anon_sym_try] = ACTIONS(2170), - [sym_integer_literal] = ACTIONS(2168), - [aux_sym_string_literal_token1] = ACTIONS(2168), - [sym_char_literal] = ACTIONS(2168), - [anon_sym_true] = ACTIONS(2170), - [anon_sym_false] = ACTIONS(2170), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2170), - [sym_super] = ACTIONS(2170), - [sym_crate] = ACTIONS(2170), - [sym_metavariable] = ACTIONS(2168), - [sym_raw_string_literal] = ACTIONS(2168), - [sym_float_literal] = ACTIONS(2168), + [ts_builtin_sym_end] = ACTIONS(2142), + [sym_identifier] = ACTIONS(2144), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_macro_rules_BANG] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2142), + [anon_sym_u8] = ACTIONS(2144), + [anon_sym_i8] = ACTIONS(2144), + [anon_sym_u16] = ACTIONS(2144), + [anon_sym_i16] = ACTIONS(2144), + [anon_sym_u32] = ACTIONS(2144), + [anon_sym_i32] = ACTIONS(2144), + [anon_sym_u64] = ACTIONS(2144), + [anon_sym_i64] = ACTIONS(2144), + [anon_sym_u128] = ACTIONS(2144), + [anon_sym_i128] = ACTIONS(2144), + [anon_sym_isize] = ACTIONS(2144), + [anon_sym_usize] = ACTIONS(2144), + [anon_sym_f32] = ACTIONS(2144), + [anon_sym_f64] = ACTIONS(2144), + [anon_sym_bool] = ACTIONS(2144), + [anon_sym_str] = ACTIONS(2144), + [anon_sym_char] = ACTIONS(2144), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_COLON_COLON] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2142), + [anon_sym_POUND] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2144), + [anon_sym_async] = ACTIONS(2144), + [anon_sym_break] = ACTIONS(2144), + [anon_sym_const] = ACTIONS(2144), + [anon_sym_continue] = ACTIONS(2144), + [anon_sym_default] = ACTIONS(2144), + [anon_sym_enum] = ACTIONS(2144), + [anon_sym_fn] = ACTIONS(2144), + [anon_sym_for] = ACTIONS(2144), + [anon_sym_if] = ACTIONS(2144), + [anon_sym_impl] = ACTIONS(2144), + [anon_sym_let] = ACTIONS(2144), + [anon_sym_loop] = ACTIONS(2144), + [anon_sym_match] = ACTIONS(2144), + [anon_sym_mod] = ACTIONS(2144), + [anon_sym_pub] = ACTIONS(2144), + [anon_sym_return] = ACTIONS(2144), + [anon_sym_static] = ACTIONS(2144), + [anon_sym_struct] = ACTIONS(2144), + [anon_sym_trait] = ACTIONS(2144), + [anon_sym_type] = ACTIONS(2144), + [anon_sym_union] = ACTIONS(2144), + [anon_sym_unsafe] = ACTIONS(2144), + [anon_sym_use] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2144), + [anon_sym_extern] = ACTIONS(2144), + [anon_sym_DOT_DOT] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2144), + [anon_sym_move] = ACTIONS(2144), + [anon_sym_try] = ACTIONS(2144), + [sym_integer_literal] = ACTIONS(2142), + [aux_sym_string_literal_token1] = ACTIONS(2142), + [sym_char_literal] = ACTIONS(2142), + [anon_sym_true] = ACTIONS(2144), + [anon_sym_false] = ACTIONS(2144), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2144), + [sym_super] = ACTIONS(2144), + [sym_crate] = ACTIONS(2144), + [sym_metavariable] = ACTIONS(2142), + [sym_raw_string_literal] = ACTIONS(2142), + [sym_float_literal] = ACTIONS(2142), }, [593] = { [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(2172), - [sym_identifier] = ACTIONS(2174), - [anon_sym_SEMI] = ACTIONS(2172), - [anon_sym_macro_rules_BANG] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_RBRACE] = ACTIONS(2172), - [anon_sym_STAR] = ACTIONS(2172), - [anon_sym_u8] = ACTIONS(2174), - [anon_sym_i8] = ACTIONS(2174), - [anon_sym_u16] = ACTIONS(2174), - [anon_sym_i16] = ACTIONS(2174), - [anon_sym_u32] = ACTIONS(2174), - [anon_sym_i32] = ACTIONS(2174), - [anon_sym_u64] = ACTIONS(2174), - [anon_sym_i64] = ACTIONS(2174), - [anon_sym_u128] = ACTIONS(2174), - [anon_sym_i128] = ACTIONS(2174), - [anon_sym_isize] = ACTIONS(2174), - [anon_sym_usize] = ACTIONS(2174), - [anon_sym_f32] = ACTIONS(2174), - [anon_sym_f64] = ACTIONS(2174), - [anon_sym_bool] = ACTIONS(2174), - [anon_sym_str] = ACTIONS(2174), - [anon_sym_char] = ACTIONS(2174), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_COLON_COLON] = ACTIONS(2172), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_AMP] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(2172), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_PIPE] = ACTIONS(2172), - [anon_sym_SQUOTE] = ACTIONS(2174), - [anon_sym_async] = ACTIONS(2174), - [anon_sym_break] = ACTIONS(2174), - [anon_sym_const] = ACTIONS(2174), - [anon_sym_continue] = ACTIONS(2174), - [anon_sym_default] = ACTIONS(2174), - [anon_sym_enum] = ACTIONS(2174), - [anon_sym_fn] = ACTIONS(2174), - [anon_sym_for] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2174), - [anon_sym_impl] = ACTIONS(2174), - [anon_sym_let] = ACTIONS(2174), - [anon_sym_loop] = ACTIONS(2174), - [anon_sym_match] = ACTIONS(2174), - [anon_sym_mod] = ACTIONS(2174), - [anon_sym_pub] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2174), - [anon_sym_static] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(2174), - [anon_sym_trait] = ACTIONS(2174), - [anon_sym_type] = ACTIONS(2174), - [anon_sym_union] = ACTIONS(2174), - [anon_sym_unsafe] = ACTIONS(2174), - [anon_sym_use] = ACTIONS(2174), - [anon_sym_while] = ACTIONS(2174), - [anon_sym_extern] = ACTIONS(2174), - [anon_sym_DOT_DOT] = ACTIONS(2172), - [anon_sym_yield] = ACTIONS(2174), - [anon_sym_move] = ACTIONS(2174), - [anon_sym_try] = ACTIONS(2174), - [sym_integer_literal] = ACTIONS(2172), - [aux_sym_string_literal_token1] = ACTIONS(2172), - [sym_char_literal] = ACTIONS(2172), - [anon_sym_true] = ACTIONS(2174), - [anon_sym_false] = ACTIONS(2174), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2174), - [sym_super] = ACTIONS(2174), - [sym_crate] = ACTIONS(2174), - [sym_metavariable] = ACTIONS(2172), - [sym_raw_string_literal] = ACTIONS(2172), - [sym_float_literal] = ACTIONS(2172), + [ts_builtin_sym_end] = ACTIONS(2146), + [sym_identifier] = ACTIONS(2148), + [anon_sym_SEMI] = ACTIONS(2146), + [anon_sym_macro_rules_BANG] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2146), + [anon_sym_LBRACK] = ACTIONS(2146), + [anon_sym_LBRACE] = ACTIONS(2146), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_STAR] = ACTIONS(2146), + [anon_sym_u8] = ACTIONS(2148), + [anon_sym_i8] = ACTIONS(2148), + [anon_sym_u16] = ACTIONS(2148), + [anon_sym_i16] = ACTIONS(2148), + [anon_sym_u32] = ACTIONS(2148), + [anon_sym_i32] = ACTIONS(2148), + [anon_sym_u64] = ACTIONS(2148), + [anon_sym_i64] = ACTIONS(2148), + [anon_sym_u128] = ACTIONS(2148), + [anon_sym_i128] = ACTIONS(2148), + [anon_sym_isize] = ACTIONS(2148), + [anon_sym_usize] = ACTIONS(2148), + [anon_sym_f32] = ACTIONS(2148), + [anon_sym_f64] = ACTIONS(2148), + [anon_sym_bool] = ACTIONS(2148), + [anon_sym_str] = ACTIONS(2148), + [anon_sym_char] = ACTIONS(2148), + [anon_sym_DASH] = ACTIONS(2146), + [anon_sym_COLON_COLON] = ACTIONS(2146), + [anon_sym_BANG] = ACTIONS(2146), + [anon_sym_AMP] = ACTIONS(2146), + [anon_sym_POUND] = ACTIONS(2146), + [anon_sym_LT] = ACTIONS(2146), + [anon_sym_PIPE] = ACTIONS(2146), + [anon_sym_SQUOTE] = ACTIONS(2148), + [anon_sym_async] = ACTIONS(2148), + [anon_sym_break] = ACTIONS(2148), + [anon_sym_const] = ACTIONS(2148), + [anon_sym_continue] = ACTIONS(2148), + [anon_sym_default] = ACTIONS(2148), + [anon_sym_enum] = ACTIONS(2148), + [anon_sym_fn] = ACTIONS(2148), + [anon_sym_for] = ACTIONS(2148), + [anon_sym_if] = ACTIONS(2148), + [anon_sym_impl] = ACTIONS(2148), + [anon_sym_let] = ACTIONS(2148), + [anon_sym_loop] = ACTIONS(2148), + [anon_sym_match] = ACTIONS(2148), + [anon_sym_mod] = ACTIONS(2148), + [anon_sym_pub] = ACTIONS(2148), + [anon_sym_return] = ACTIONS(2148), + [anon_sym_static] = ACTIONS(2148), + [anon_sym_struct] = ACTIONS(2148), + [anon_sym_trait] = ACTIONS(2148), + [anon_sym_type] = ACTIONS(2148), + [anon_sym_union] = ACTIONS(2148), + [anon_sym_unsafe] = ACTIONS(2148), + [anon_sym_use] = ACTIONS(2148), + [anon_sym_while] = ACTIONS(2148), + [anon_sym_extern] = ACTIONS(2148), + [anon_sym_DOT_DOT] = ACTIONS(2146), + [anon_sym_yield] = ACTIONS(2148), + [anon_sym_move] = ACTIONS(2148), + [anon_sym_try] = ACTIONS(2148), + [sym_integer_literal] = ACTIONS(2146), + [aux_sym_string_literal_token1] = ACTIONS(2146), + [sym_char_literal] = ACTIONS(2146), + [anon_sym_true] = ACTIONS(2148), + [anon_sym_false] = ACTIONS(2148), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2148), + [sym_super] = ACTIONS(2148), + [sym_crate] = ACTIONS(2148), + [sym_metavariable] = ACTIONS(2146), + [sym_raw_string_literal] = ACTIONS(2146), + [sym_float_literal] = ACTIONS(2146), }, [594] = { - [sym_empty_statement] = STATE(1433), - [sym_macro_definition] = STATE(1433), - [sym_attribute_item] = STATE(1433), - [sym_inner_attribute_item] = STATE(1433), - [sym_mod_item] = STATE(1433), - [sym_foreign_mod_item] = STATE(1433), - [sym_struct_item] = STATE(1433), - [sym_union_item] = STATE(1433), - [sym_enum_item] = STATE(1433), - [sym_extern_crate_declaration] = STATE(1433), - [sym_const_item] = STATE(1433), - [sym_static_item] = STATE(1433), - [sym_type_item] = STATE(1433), - [sym_function_item] = STATE(1433), - [sym_function_signature_item] = STATE(1433), - [sym_function_modifiers] = STATE(3512), - [sym_impl_item] = STATE(1433), - [sym_trait_item] = STATE(1433), - [sym_associated_type] = STATE(1433), - [sym_let_declaration] = STATE(1433), - [sym_use_declaration] = STATE(1433), - [sym_extern_modifier] = STATE(2123), - [sym_visibility_modifier] = STATE(1927), - [sym_bracketed_type] = STATE(3248), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_macro_invocation] = STATE(1433), - [sym_scoped_identifier] = STATE(3071), [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [aux_sym_declaration_list_repeat1] = STATE(608), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_macro_rules_BANG] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_u8] = ACTIONS(1751), - [anon_sym_i8] = ACTIONS(1751), - [anon_sym_u16] = ACTIONS(1751), - [anon_sym_i16] = ACTIONS(1751), - [anon_sym_u32] = ACTIONS(1751), - [anon_sym_i32] = ACTIONS(1751), - [anon_sym_u64] = ACTIONS(1751), - [anon_sym_i64] = ACTIONS(1751), - [anon_sym_u128] = ACTIONS(1751), - [anon_sym_i128] = ACTIONS(1751), - [anon_sym_isize] = ACTIONS(1751), - [anon_sym_usize] = ACTIONS(1751), - [anon_sym_f32] = ACTIONS(1751), - [anon_sym_f64] = ACTIONS(1751), - [anon_sym_bool] = ACTIONS(1751), - [anon_sym_str] = ACTIONS(1751), - [anon_sym_char] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1753), - [anon_sym_POUND] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [anon_sym_fn] = ACTIONS(1763), - [anon_sym_impl] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(65), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_trait] = ACTIONS(1775), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1779), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1787), - [sym_super] = ACTIONS(1787), - [sym_crate] = ACTIONS(1789), - [sym_metavariable] = ACTIONS(1791), + [ts_builtin_sym_end] = ACTIONS(2150), + [sym_identifier] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2150), + [anon_sym_macro_rules_BANG] = ACTIONS(2150), + [anon_sym_LPAREN] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2150), + [anon_sym_LBRACE] = ACTIONS(2150), + [anon_sym_RBRACE] = ACTIONS(2150), + [anon_sym_STAR] = ACTIONS(2150), + [anon_sym_u8] = ACTIONS(2152), + [anon_sym_i8] = ACTIONS(2152), + [anon_sym_u16] = ACTIONS(2152), + [anon_sym_i16] = ACTIONS(2152), + [anon_sym_u32] = ACTIONS(2152), + [anon_sym_i32] = ACTIONS(2152), + [anon_sym_u64] = ACTIONS(2152), + [anon_sym_i64] = ACTIONS(2152), + [anon_sym_u128] = ACTIONS(2152), + [anon_sym_i128] = ACTIONS(2152), + [anon_sym_isize] = ACTIONS(2152), + [anon_sym_usize] = ACTIONS(2152), + [anon_sym_f32] = ACTIONS(2152), + [anon_sym_f64] = ACTIONS(2152), + [anon_sym_bool] = ACTIONS(2152), + [anon_sym_str] = ACTIONS(2152), + [anon_sym_char] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2150), + [anon_sym_COLON_COLON] = ACTIONS(2150), + [anon_sym_BANG] = ACTIONS(2150), + [anon_sym_AMP] = ACTIONS(2150), + [anon_sym_POUND] = ACTIONS(2150), + [anon_sym_LT] = ACTIONS(2150), + [anon_sym_PIPE] = ACTIONS(2150), + [anon_sym_SQUOTE] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [anon_sym_fn] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_impl] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_loop] = ACTIONS(2152), + [anon_sym_match] = ACTIONS(2152), + [anon_sym_mod] = ACTIONS(2152), + [anon_sym_pub] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_struct] = ACTIONS(2152), + [anon_sym_trait] = ACTIONS(2152), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_union] = ACTIONS(2152), + [anon_sym_unsafe] = ACTIONS(2152), + [anon_sym_use] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_extern] = ACTIONS(2152), + [anon_sym_DOT_DOT] = ACTIONS(2150), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_move] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [sym_integer_literal] = ACTIONS(2150), + [aux_sym_string_literal_token1] = ACTIONS(2150), + [sym_char_literal] = ACTIONS(2150), + [anon_sym_true] = ACTIONS(2152), + [anon_sym_false] = ACTIONS(2152), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_crate] = ACTIONS(2152), + [sym_metavariable] = ACTIONS(2150), + [sym_raw_string_literal] = ACTIONS(2150), + [sym_float_literal] = ACTIONS(2150), }, [595] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), + [ts_builtin_sym_end] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2156), + [anon_sym_SEMI] = ACTIONS(2154), + [anon_sym_macro_rules_BANG] = ACTIONS(2154), + [anon_sym_LPAREN] = ACTIONS(2154), + [anon_sym_LBRACK] = ACTIONS(2154), + [anon_sym_LBRACE] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_u8] = ACTIONS(2156), + [anon_sym_i8] = ACTIONS(2156), + [anon_sym_u16] = ACTIONS(2156), + [anon_sym_i16] = ACTIONS(2156), + [anon_sym_u32] = ACTIONS(2156), + [anon_sym_i32] = ACTIONS(2156), + [anon_sym_u64] = ACTIONS(2156), + [anon_sym_i64] = ACTIONS(2156), + [anon_sym_u128] = ACTIONS(2156), + [anon_sym_i128] = ACTIONS(2156), + [anon_sym_isize] = ACTIONS(2156), + [anon_sym_usize] = ACTIONS(2156), + [anon_sym_f32] = ACTIONS(2156), + [anon_sym_f64] = ACTIONS(2156), + [anon_sym_bool] = ACTIONS(2156), + [anon_sym_str] = ACTIONS(2156), + [anon_sym_char] = ACTIONS(2156), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_COLON_COLON] = ACTIONS(2154), + [anon_sym_BANG] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2154), + [anon_sym_POUND] = ACTIONS(2154), + [anon_sym_LT] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_SQUOTE] = ACTIONS(2156), + [anon_sym_async] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_default] = ACTIONS(2156), + [anon_sym_enum] = ACTIONS(2156), + [anon_sym_fn] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_impl] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_loop] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_mod] = ACTIONS(2156), + [anon_sym_pub] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_static] = ACTIONS(2156), + [anon_sym_struct] = ACTIONS(2156), + [anon_sym_trait] = ACTIONS(2156), + [anon_sym_type] = ACTIONS(2156), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_unsafe] = ACTIONS(2156), + [anon_sym_use] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym_DOT_DOT] = ACTIONS(2154), + [anon_sym_yield] = ACTIONS(2156), + [anon_sym_move] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [sym_integer_literal] = ACTIONS(2154), + [aux_sym_string_literal_token1] = ACTIONS(2154), + [sym_char_literal] = ACTIONS(2154), + [anon_sym_true] = ACTIONS(2156), + [anon_sym_false] = ACTIONS(2156), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2156), + [sym_super] = ACTIONS(2156), + [sym_crate] = ACTIONS(2156), + [sym_metavariable] = ACTIONS(2154), + [sym_raw_string_literal] = ACTIONS(2154), + [sym_float_literal] = ACTIONS(2154), + }, + [596] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2158), + [anon_sym_macro_rules_BANG] = ACTIONS(2158), + [anon_sym_LPAREN] = ACTIONS(2158), + [anon_sym_LBRACK] = ACTIONS(2158), + [anon_sym_LBRACE] = ACTIONS(2158), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_STAR] = ACTIONS(2158), + [anon_sym_u8] = ACTIONS(2160), + [anon_sym_i8] = ACTIONS(2160), + [anon_sym_u16] = ACTIONS(2160), + [anon_sym_i16] = ACTIONS(2160), + [anon_sym_u32] = ACTIONS(2160), + [anon_sym_i32] = ACTIONS(2160), + [anon_sym_u64] = ACTIONS(2160), + [anon_sym_i64] = ACTIONS(2160), + [anon_sym_u128] = ACTIONS(2160), + [anon_sym_i128] = ACTIONS(2160), + [anon_sym_isize] = ACTIONS(2160), + [anon_sym_usize] = ACTIONS(2160), + [anon_sym_f32] = ACTIONS(2160), + [anon_sym_f64] = ACTIONS(2160), + [anon_sym_bool] = ACTIONS(2160), + [anon_sym_str] = ACTIONS(2160), + [anon_sym_char] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2158), + [anon_sym_COLON_COLON] = ACTIONS(2158), + [anon_sym_BANG] = ACTIONS(2158), + [anon_sym_AMP] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(2158), + [anon_sym_LT] = ACTIONS(2158), + [anon_sym_PIPE] = ACTIONS(2158), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [anon_sym_fn] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_impl] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_loop] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2160), + [anon_sym_mod] = ACTIONS(2160), + [anon_sym_pub] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_struct] = ACTIONS(2160), + [anon_sym_trait] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_union] = ACTIONS(2160), + [anon_sym_unsafe] = ACTIONS(2160), + [anon_sym_use] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym_DOT_DOT] = ACTIONS(2158), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_move] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [sym_integer_literal] = ACTIONS(2158), + [aux_sym_string_literal_token1] = ACTIONS(2158), + [sym_char_literal] = ACTIONS(2158), + [anon_sym_true] = ACTIONS(2160), + [anon_sym_false] = ACTIONS(2160), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_crate] = ACTIONS(2160), + [sym_metavariable] = ACTIONS(2158), + [sym_raw_string_literal] = ACTIONS(2158), + [sym_float_literal] = ACTIONS(2158), + }, + [597] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), + [ts_builtin_sym_end] = ACTIONS(2162), + [sym_identifier] = ACTIONS(2164), + [anon_sym_SEMI] = ACTIONS(2162), + [anon_sym_macro_rules_BANG] = ACTIONS(2162), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_LBRACK] = ACTIONS(2162), + [anon_sym_LBRACE] = ACTIONS(2162), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_STAR] = ACTIONS(2162), + [anon_sym_u8] = ACTIONS(2164), + [anon_sym_i8] = ACTIONS(2164), + [anon_sym_u16] = ACTIONS(2164), + [anon_sym_i16] = ACTIONS(2164), + [anon_sym_u32] = ACTIONS(2164), + [anon_sym_i32] = ACTIONS(2164), + [anon_sym_u64] = ACTIONS(2164), + [anon_sym_i64] = ACTIONS(2164), + [anon_sym_u128] = ACTIONS(2164), + [anon_sym_i128] = ACTIONS(2164), + [anon_sym_isize] = ACTIONS(2164), + [anon_sym_usize] = ACTIONS(2164), + [anon_sym_f32] = ACTIONS(2164), + [anon_sym_f64] = ACTIONS(2164), + [anon_sym_bool] = ACTIONS(2164), + [anon_sym_str] = ACTIONS(2164), + [anon_sym_char] = ACTIONS(2164), + [anon_sym_DASH] = ACTIONS(2162), + [anon_sym_COLON_COLON] = ACTIONS(2162), + [anon_sym_BANG] = ACTIONS(2162), + [anon_sym_AMP] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(2162), + [anon_sym_LT] = ACTIONS(2162), + [anon_sym_PIPE] = ACTIONS(2162), + [anon_sym_SQUOTE] = ACTIONS(2164), + [anon_sym_async] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_default] = ACTIONS(2164), + [anon_sym_enum] = ACTIONS(2164), + [anon_sym_fn] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_impl] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_loop] = ACTIONS(2164), + [anon_sym_match] = ACTIONS(2164), + [anon_sym_mod] = ACTIONS(2164), + [anon_sym_pub] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_static] = ACTIONS(2164), + [anon_sym_struct] = ACTIONS(2164), + [anon_sym_trait] = ACTIONS(2164), + [anon_sym_type] = ACTIONS(2164), + [anon_sym_union] = ACTIONS(2164), + [anon_sym_unsafe] = ACTIONS(2164), + [anon_sym_use] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym_DOT_DOT] = ACTIONS(2162), + [anon_sym_yield] = ACTIONS(2164), + [anon_sym_move] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [sym_integer_literal] = ACTIONS(2162), + [aux_sym_string_literal_token1] = ACTIONS(2162), + [sym_char_literal] = ACTIONS(2162), + [anon_sym_true] = ACTIONS(2164), + [anon_sym_false] = ACTIONS(2164), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2164), + [sym_super] = ACTIONS(2164), + [sym_crate] = ACTIONS(2164), + [sym_metavariable] = ACTIONS(2162), + [sym_raw_string_literal] = ACTIONS(2162), + [sym_float_literal] = ACTIONS(2162), + }, + [598] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), + [ts_builtin_sym_end] = ACTIONS(2166), + [sym_identifier] = ACTIONS(2168), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_macro_rules_BANG] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_u8] = ACTIONS(2168), + [anon_sym_i8] = ACTIONS(2168), + [anon_sym_u16] = ACTIONS(2168), + [anon_sym_i16] = ACTIONS(2168), + [anon_sym_u32] = ACTIONS(2168), + [anon_sym_i32] = ACTIONS(2168), + [anon_sym_u64] = ACTIONS(2168), + [anon_sym_i64] = ACTIONS(2168), + [anon_sym_u128] = ACTIONS(2168), + [anon_sym_i128] = ACTIONS(2168), + [anon_sym_isize] = ACTIONS(2168), + [anon_sym_usize] = ACTIONS(2168), + [anon_sym_f32] = ACTIONS(2168), + [anon_sym_f64] = ACTIONS(2168), + [anon_sym_bool] = ACTIONS(2168), + [anon_sym_str] = ACTIONS(2168), + [anon_sym_char] = ACTIONS(2168), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_COLON_COLON] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_POUND] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2168), + [anon_sym_async] = ACTIONS(2168), + [anon_sym_break] = ACTIONS(2168), + [anon_sym_const] = ACTIONS(2168), + [anon_sym_continue] = ACTIONS(2168), + [anon_sym_default] = ACTIONS(2168), + [anon_sym_enum] = ACTIONS(2168), + [anon_sym_fn] = ACTIONS(2168), + [anon_sym_for] = ACTIONS(2168), + [anon_sym_if] = ACTIONS(2168), + [anon_sym_impl] = ACTIONS(2168), + [anon_sym_let] = ACTIONS(2168), + [anon_sym_loop] = ACTIONS(2168), + [anon_sym_match] = ACTIONS(2168), + [anon_sym_mod] = ACTIONS(2168), + [anon_sym_pub] = ACTIONS(2168), + [anon_sym_return] = ACTIONS(2168), + [anon_sym_static] = ACTIONS(2168), + [anon_sym_struct] = ACTIONS(2168), + [anon_sym_trait] = ACTIONS(2168), + [anon_sym_type] = ACTIONS(2168), + [anon_sym_union] = ACTIONS(2168), + [anon_sym_unsafe] = ACTIONS(2168), + [anon_sym_use] = ACTIONS(2168), + [anon_sym_while] = ACTIONS(2168), + [anon_sym_extern] = ACTIONS(2168), + [anon_sym_DOT_DOT] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2168), + [anon_sym_move] = ACTIONS(2168), + [anon_sym_try] = ACTIONS(2168), + [sym_integer_literal] = ACTIONS(2166), + [aux_sym_string_literal_token1] = ACTIONS(2166), + [sym_char_literal] = ACTIONS(2166), + [anon_sym_true] = ACTIONS(2168), + [anon_sym_false] = ACTIONS(2168), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2168), + [sym_super] = ACTIONS(2168), + [sym_crate] = ACTIONS(2168), + [sym_metavariable] = ACTIONS(2166), + [sym_raw_string_literal] = ACTIONS(2166), + [sym_float_literal] = ACTIONS(2166), + }, + [599] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), + [ts_builtin_sym_end] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2170), + [anon_sym_macro_rules_BANG] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_LBRACK] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2170), + [anon_sym_STAR] = ACTIONS(2170), + [anon_sym_u8] = ACTIONS(2172), + [anon_sym_i8] = ACTIONS(2172), + [anon_sym_u16] = ACTIONS(2172), + [anon_sym_i16] = ACTIONS(2172), + [anon_sym_u32] = ACTIONS(2172), + [anon_sym_i32] = ACTIONS(2172), + [anon_sym_u64] = ACTIONS(2172), + [anon_sym_i64] = ACTIONS(2172), + [anon_sym_u128] = ACTIONS(2172), + [anon_sym_i128] = ACTIONS(2172), + [anon_sym_isize] = ACTIONS(2172), + [anon_sym_usize] = ACTIONS(2172), + [anon_sym_f32] = ACTIONS(2172), + [anon_sym_f64] = ACTIONS(2172), + [anon_sym_bool] = ACTIONS(2172), + [anon_sym_str] = ACTIONS(2172), + [anon_sym_char] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2170), + [anon_sym_COLON_COLON] = ACTIONS(2170), + [anon_sym_BANG] = ACTIONS(2170), + [anon_sym_AMP] = ACTIONS(2170), + [anon_sym_POUND] = ACTIONS(2170), + [anon_sym_LT] = ACTIONS(2170), + [anon_sym_PIPE] = ACTIONS(2170), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [anon_sym_fn] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_impl] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_loop] = ACTIONS(2172), + [anon_sym_match] = ACTIONS(2172), + [anon_sym_mod] = ACTIONS(2172), + [anon_sym_pub] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_struct] = ACTIONS(2172), + [anon_sym_trait] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_union] = ACTIONS(2172), + [anon_sym_unsafe] = ACTIONS(2172), + [anon_sym_use] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_extern] = ACTIONS(2172), + [anon_sym_DOT_DOT] = ACTIONS(2170), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_move] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [sym_integer_literal] = ACTIONS(2170), + [aux_sym_string_literal_token1] = ACTIONS(2170), + [sym_char_literal] = ACTIONS(2170), + [anon_sym_true] = ACTIONS(2172), + [anon_sym_false] = ACTIONS(2172), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_crate] = ACTIONS(2172), + [sym_metavariable] = ACTIONS(2170), + [sym_raw_string_literal] = ACTIONS(2170), + [sym_float_literal] = ACTIONS(2170), + }, + [600] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), + [ts_builtin_sym_end] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2176), + [anon_sym_SEMI] = ACTIONS(2174), + [anon_sym_macro_rules_BANG] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2174), + [anon_sym_LBRACK] = ACTIONS(2174), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_STAR] = ACTIONS(2174), + [anon_sym_u8] = ACTIONS(2176), + [anon_sym_i8] = ACTIONS(2176), + [anon_sym_u16] = ACTIONS(2176), + [anon_sym_i16] = ACTIONS(2176), + [anon_sym_u32] = ACTIONS(2176), + [anon_sym_i32] = ACTIONS(2176), + [anon_sym_u64] = ACTIONS(2176), + [anon_sym_i64] = ACTIONS(2176), + [anon_sym_u128] = ACTIONS(2176), + [anon_sym_i128] = ACTIONS(2176), + [anon_sym_isize] = ACTIONS(2176), + [anon_sym_usize] = ACTIONS(2176), + [anon_sym_f32] = ACTIONS(2176), + [anon_sym_f64] = ACTIONS(2176), + [anon_sym_bool] = ACTIONS(2176), + [anon_sym_str] = ACTIONS(2176), + [anon_sym_char] = ACTIONS(2176), + [anon_sym_DASH] = ACTIONS(2174), + [anon_sym_COLON_COLON] = ACTIONS(2174), + [anon_sym_BANG] = ACTIONS(2174), + [anon_sym_AMP] = ACTIONS(2174), + [anon_sym_POUND] = ACTIONS(2174), + [anon_sym_LT] = ACTIONS(2174), + [anon_sym_PIPE] = ACTIONS(2174), + [anon_sym_SQUOTE] = ACTIONS(2176), + [anon_sym_async] = ACTIONS(2176), + [anon_sym_break] = ACTIONS(2176), + [anon_sym_const] = ACTIONS(2176), + [anon_sym_continue] = ACTIONS(2176), + [anon_sym_default] = ACTIONS(2176), + [anon_sym_enum] = ACTIONS(2176), + [anon_sym_fn] = ACTIONS(2176), + [anon_sym_for] = ACTIONS(2176), + [anon_sym_if] = ACTIONS(2176), + [anon_sym_impl] = ACTIONS(2176), + [anon_sym_let] = ACTIONS(2176), + [anon_sym_loop] = ACTIONS(2176), + [anon_sym_match] = ACTIONS(2176), + [anon_sym_mod] = ACTIONS(2176), + [anon_sym_pub] = ACTIONS(2176), + [anon_sym_return] = ACTIONS(2176), + [anon_sym_static] = ACTIONS(2176), + [anon_sym_struct] = ACTIONS(2176), + [anon_sym_trait] = ACTIONS(2176), + [anon_sym_type] = ACTIONS(2176), + [anon_sym_union] = ACTIONS(2176), + [anon_sym_unsafe] = ACTIONS(2176), + [anon_sym_use] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2176), + [anon_sym_extern] = ACTIONS(2176), + [anon_sym_DOT_DOT] = ACTIONS(2174), + [anon_sym_yield] = ACTIONS(2176), + [anon_sym_move] = ACTIONS(2176), + [anon_sym_try] = ACTIONS(2176), + [sym_integer_literal] = ACTIONS(2174), + [aux_sym_string_literal_token1] = ACTIONS(2174), + [sym_char_literal] = ACTIONS(2174), + [anon_sym_true] = ACTIONS(2176), + [anon_sym_false] = ACTIONS(2176), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2176), + [sym_super] = ACTIONS(2176), + [sym_crate] = ACTIONS(2176), + [sym_metavariable] = ACTIONS(2174), + [sym_raw_string_literal] = ACTIONS(2174), + [sym_float_literal] = ACTIONS(2174), + }, + [601] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), [ts_builtin_sym_end] = ACTIONS(2178), [sym_identifier] = ACTIONS(2180), [anon_sym_SEMI] = ACTIONS(2178), @@ -80610,9 +80160,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2178), [sym_float_literal] = ACTIONS(2178), }, - [596] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), + [602] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), [ts_builtin_sym_end] = ACTIONS(2182), [sym_identifier] = ACTIONS(2184), [anon_sym_SEMI] = ACTIONS(2182), @@ -80690,9 +80240,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2182), [sym_float_literal] = ACTIONS(2182), }, - [597] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), + [603] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), [ts_builtin_sym_end] = ACTIONS(2186), [sym_identifier] = ACTIONS(2188), [anon_sym_SEMI] = ACTIONS(2186), @@ -80770,9 +80320,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2186), [sym_float_literal] = ACTIONS(2186), }, - [598] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), + [604] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), [ts_builtin_sym_end] = ACTIONS(2190), [sym_identifier] = ACTIONS(2192), [anon_sym_SEMI] = ACTIONS(2190), @@ -80850,89 +80400,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2190), [sym_float_literal] = ACTIONS(2190), }, - [599] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(886), - [sym_identifier] = ACTIONS(888), - [anon_sym_SEMI] = ACTIONS(886), - [anon_sym_macro_rules_BANG] = ACTIONS(886), - [anon_sym_LPAREN] = ACTIONS(886), - [anon_sym_LBRACK] = ACTIONS(886), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_RBRACE] = ACTIONS(886), - [anon_sym_STAR] = ACTIONS(886), - [anon_sym_u8] = ACTIONS(888), - [anon_sym_i8] = ACTIONS(888), - [anon_sym_u16] = ACTIONS(888), - [anon_sym_i16] = ACTIONS(888), - [anon_sym_u32] = ACTIONS(888), - [anon_sym_i32] = ACTIONS(888), - [anon_sym_u64] = ACTIONS(888), - [anon_sym_i64] = ACTIONS(888), - [anon_sym_u128] = ACTIONS(888), - [anon_sym_i128] = ACTIONS(888), - [anon_sym_isize] = ACTIONS(888), - [anon_sym_usize] = ACTIONS(888), - [anon_sym_f32] = ACTIONS(888), - [anon_sym_f64] = ACTIONS(888), - [anon_sym_bool] = ACTIONS(888), - [anon_sym_str] = ACTIONS(888), - [anon_sym_char] = ACTIONS(888), - [anon_sym_DASH] = ACTIONS(886), - [anon_sym_COLON_COLON] = ACTIONS(886), - [anon_sym_BANG] = ACTIONS(886), - [anon_sym_AMP] = ACTIONS(886), - [anon_sym_POUND] = ACTIONS(886), - [anon_sym_LT] = ACTIONS(886), - [anon_sym_PIPE] = ACTIONS(886), - [anon_sym_SQUOTE] = ACTIONS(888), - [anon_sym_async] = ACTIONS(888), - [anon_sym_break] = ACTIONS(888), - [anon_sym_const] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [anon_sym_default] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(888), - [anon_sym_fn] = ACTIONS(888), - [anon_sym_for] = ACTIONS(888), - [anon_sym_if] = ACTIONS(888), - [anon_sym_impl] = ACTIONS(888), - [anon_sym_let] = ACTIONS(888), - [anon_sym_loop] = ACTIONS(888), - [anon_sym_match] = ACTIONS(888), - [anon_sym_mod] = ACTIONS(888), - [anon_sym_pub] = ACTIONS(888), - [anon_sym_return] = ACTIONS(888), - [anon_sym_static] = ACTIONS(888), - [anon_sym_struct] = ACTIONS(888), - [anon_sym_trait] = ACTIONS(888), - [anon_sym_type] = ACTIONS(888), - [anon_sym_union] = ACTIONS(888), - [anon_sym_unsafe] = ACTIONS(888), - [anon_sym_use] = ACTIONS(888), - [anon_sym_while] = ACTIONS(888), - [anon_sym_extern] = ACTIONS(888), - [anon_sym_DOT_DOT] = ACTIONS(886), - [anon_sym_yield] = ACTIONS(888), - [anon_sym_move] = ACTIONS(888), - [anon_sym_try] = ACTIONS(888), - [sym_integer_literal] = ACTIONS(886), - [aux_sym_string_literal_token1] = ACTIONS(886), - [sym_char_literal] = ACTIONS(886), - [anon_sym_true] = ACTIONS(888), - [anon_sym_false] = ACTIONS(888), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(888), - [sym_super] = ACTIONS(888), - [sym_crate] = ACTIONS(888), - [sym_metavariable] = ACTIONS(886), - [sym_raw_string_literal] = ACTIONS(886), - [sym_float_literal] = ACTIONS(886), - }, - [600] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), + [605] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), [ts_builtin_sym_end] = ACTIONS(2194), [sym_identifier] = ACTIONS(2196), [anon_sym_SEMI] = ACTIONS(2194), @@ -81010,9 +80480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2194), [sym_float_literal] = ACTIONS(2194), }, - [601] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), + [606] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), [ts_builtin_sym_end] = ACTIONS(2198), [sym_identifier] = ACTIONS(2200), [anon_sym_SEMI] = ACTIONS(2198), @@ -81090,9 +80560,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2198), [sym_float_literal] = ACTIONS(2198), }, - [602] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), + [607] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), [ts_builtin_sym_end] = ACTIONS(2202), [sym_identifier] = ACTIONS(2204), [anon_sym_SEMI] = ACTIONS(2202), @@ -81170,9 +80640,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2202), [sym_float_literal] = ACTIONS(2202), }, - [603] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), + [608] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), [ts_builtin_sym_end] = ACTIONS(2206), [sym_identifier] = ACTIONS(2208), [anon_sym_SEMI] = ACTIONS(2206), @@ -81250,9 +80720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2206), [sym_float_literal] = ACTIONS(2206), }, - [604] = { - [sym_line_comment] = STATE(604), - [sym_block_comment] = STATE(604), + [609] = { + [sym_line_comment] = STATE(609), + [sym_block_comment] = STATE(609), [ts_builtin_sym_end] = ACTIONS(2210), [sym_identifier] = ACTIONS(2212), [anon_sym_SEMI] = ACTIONS(2210), @@ -81330,9 +80800,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2210), [sym_float_literal] = ACTIONS(2210), }, - [605] = { - [sym_line_comment] = STATE(605), - [sym_block_comment] = STATE(605), + [610] = { + [sym_line_comment] = STATE(610), + [sym_block_comment] = STATE(610), [ts_builtin_sym_end] = ACTIONS(2214), [sym_identifier] = ACTIONS(2216), [anon_sym_SEMI] = ACTIONS(2214), @@ -81410,9 +80880,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2214), [sym_float_literal] = ACTIONS(2214), }, - [606] = { - [sym_line_comment] = STATE(606), - [sym_block_comment] = STATE(606), + [611] = { + [sym_line_comment] = STATE(611), + [sym_block_comment] = STATE(611), [ts_builtin_sym_end] = ACTIONS(2218), [sym_identifier] = ACTIONS(2220), [anon_sym_SEMI] = ACTIONS(2218), @@ -81490,9 +80960,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2218), [sym_float_literal] = ACTIONS(2218), }, - [607] = { - [sym_line_comment] = STATE(607), - [sym_block_comment] = STATE(607), + [612] = { + [sym_line_comment] = STATE(612), + [sym_block_comment] = STATE(612), [ts_builtin_sym_end] = ACTIONS(2222), [sym_identifier] = ACTIONS(2224), [anon_sym_SEMI] = ACTIONS(2222), @@ -81570,2169 +81040,2329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2222), [sym_float_literal] = ACTIONS(2222), }, - [608] = { - [sym_empty_statement] = STATE(1433), - [sym_macro_definition] = STATE(1433), - [sym_attribute_item] = STATE(1433), - [sym_inner_attribute_item] = STATE(1433), - [sym_mod_item] = STATE(1433), - [sym_foreign_mod_item] = STATE(1433), - [sym_struct_item] = STATE(1433), - [sym_union_item] = STATE(1433), - [sym_enum_item] = STATE(1433), - [sym_extern_crate_declaration] = STATE(1433), - [sym_const_item] = STATE(1433), - [sym_static_item] = STATE(1433), - [sym_type_item] = STATE(1433), - [sym_function_item] = STATE(1433), - [sym_function_signature_item] = STATE(1433), - [sym_function_modifiers] = STATE(3512), - [sym_impl_item] = STATE(1433), - [sym_trait_item] = STATE(1433), - [sym_associated_type] = STATE(1433), - [sym_let_declaration] = STATE(1433), - [sym_use_declaration] = STATE(1433), - [sym_extern_modifier] = STATE(2123), - [sym_visibility_modifier] = STATE(1927), - [sym_bracketed_type] = STATE(3248), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_macro_invocation] = STATE(1433), - [sym_scoped_identifier] = STATE(3071), - [sym_line_comment] = STATE(608), - [sym_block_comment] = STATE(608), - [aux_sym_declaration_list_repeat1] = STATE(591), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_macro_rules_BANG] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(2226), - [anon_sym_u8] = ACTIONS(1751), - [anon_sym_i8] = ACTIONS(1751), - [anon_sym_u16] = ACTIONS(1751), - [anon_sym_i16] = ACTIONS(1751), - [anon_sym_u32] = ACTIONS(1751), - [anon_sym_i32] = ACTIONS(1751), - [anon_sym_u64] = ACTIONS(1751), - [anon_sym_i64] = ACTIONS(1751), - [anon_sym_u128] = ACTIONS(1751), - [anon_sym_i128] = ACTIONS(1751), - [anon_sym_isize] = ACTIONS(1751), - [anon_sym_usize] = ACTIONS(1751), - [anon_sym_f32] = ACTIONS(1751), - [anon_sym_f64] = ACTIONS(1751), - [anon_sym_bool] = ACTIONS(1751), - [anon_sym_str] = ACTIONS(1751), - [anon_sym_char] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1753), - [anon_sym_POUND] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [anon_sym_fn] = ACTIONS(1763), - [anon_sym_impl] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(65), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_trait] = ACTIONS(1775), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1779), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1787), - [sym_super] = ACTIONS(1787), - [sym_crate] = ACTIONS(1789), - [sym_metavariable] = ACTIONS(1791), - }, - [609] = { - [sym_line_comment] = STATE(609), - [sym_block_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(2228), - [sym_identifier] = ACTIONS(2230), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_macro_rules_BANG] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_u8] = ACTIONS(2230), - [anon_sym_i8] = ACTIONS(2230), - [anon_sym_u16] = ACTIONS(2230), - [anon_sym_i16] = ACTIONS(2230), - [anon_sym_u32] = ACTIONS(2230), - [anon_sym_i32] = ACTIONS(2230), - [anon_sym_u64] = ACTIONS(2230), - [anon_sym_i64] = ACTIONS(2230), - [anon_sym_u128] = ACTIONS(2230), - [anon_sym_i128] = ACTIONS(2230), - [anon_sym_isize] = ACTIONS(2230), - [anon_sym_usize] = ACTIONS(2230), - [anon_sym_f32] = ACTIONS(2230), - [anon_sym_f64] = ACTIONS(2230), - [anon_sym_bool] = ACTIONS(2230), - [anon_sym_str] = ACTIONS(2230), - [anon_sym_char] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_COLON_COLON] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2228), - [anon_sym_POUND] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_SQUOTE] = ACTIONS(2230), - [anon_sym_async] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_default] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_fn] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_impl] = ACTIONS(2230), - [anon_sym_let] = ACTIONS(2230), - [anon_sym_loop] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_mod] = ACTIONS(2230), - [anon_sym_pub] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_static] = ACTIONS(2230), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_trait] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_unsafe] = ACTIONS(2230), - [anon_sym_use] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2230), - [anon_sym_extern] = ACTIONS(2230), - [anon_sym_DOT_DOT] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2230), - [anon_sym_move] = ACTIONS(2230), - [anon_sym_try] = ACTIONS(2230), - [sym_integer_literal] = ACTIONS(2228), - [aux_sym_string_literal_token1] = ACTIONS(2228), - [sym_char_literal] = ACTIONS(2228), - [anon_sym_true] = ACTIONS(2230), - [anon_sym_false] = ACTIONS(2230), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2230), - [sym_super] = ACTIONS(2230), - [sym_crate] = ACTIONS(2230), - [sym_metavariable] = ACTIONS(2228), - [sym_raw_string_literal] = ACTIONS(2228), - [sym_float_literal] = ACTIONS(2228), - }, - [610] = { - [sym_line_comment] = STATE(610), - [sym_block_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(2232), - [sym_identifier] = ACTIONS(2234), - [anon_sym_SEMI] = ACTIONS(2232), - [anon_sym_macro_rules_BANG] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2232), - [anon_sym_RBRACE] = ACTIONS(2232), - [anon_sym_STAR] = ACTIONS(2232), - [anon_sym_u8] = ACTIONS(2234), - [anon_sym_i8] = ACTIONS(2234), - [anon_sym_u16] = ACTIONS(2234), - [anon_sym_i16] = ACTIONS(2234), - [anon_sym_u32] = ACTIONS(2234), - [anon_sym_i32] = ACTIONS(2234), - [anon_sym_u64] = ACTIONS(2234), - [anon_sym_i64] = ACTIONS(2234), - [anon_sym_u128] = ACTIONS(2234), - [anon_sym_i128] = ACTIONS(2234), - [anon_sym_isize] = ACTIONS(2234), - [anon_sym_usize] = ACTIONS(2234), - [anon_sym_f32] = ACTIONS(2234), - [anon_sym_f64] = ACTIONS(2234), - [anon_sym_bool] = ACTIONS(2234), - [anon_sym_str] = ACTIONS(2234), - [anon_sym_char] = ACTIONS(2234), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_COLON_COLON] = ACTIONS(2232), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2232), - [anon_sym_LT] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_SQUOTE] = ACTIONS(2234), - [anon_sym_async] = ACTIONS(2234), - [anon_sym_break] = ACTIONS(2234), - [anon_sym_const] = ACTIONS(2234), - [anon_sym_continue] = ACTIONS(2234), - [anon_sym_default] = ACTIONS(2234), - [anon_sym_enum] = ACTIONS(2234), - [anon_sym_fn] = ACTIONS(2234), - [anon_sym_for] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2234), - [anon_sym_impl] = ACTIONS(2234), - [anon_sym_let] = ACTIONS(2234), - [anon_sym_loop] = ACTIONS(2234), - [anon_sym_match] = ACTIONS(2234), - [anon_sym_mod] = ACTIONS(2234), - [anon_sym_pub] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2234), - [anon_sym_static] = ACTIONS(2234), - [anon_sym_struct] = ACTIONS(2234), - [anon_sym_trait] = ACTIONS(2234), - [anon_sym_type] = ACTIONS(2234), - [anon_sym_union] = ACTIONS(2234), - [anon_sym_unsafe] = ACTIONS(2234), - [anon_sym_use] = ACTIONS(2234), - [anon_sym_while] = ACTIONS(2234), - [anon_sym_extern] = ACTIONS(2234), - [anon_sym_DOT_DOT] = ACTIONS(2232), - [anon_sym_yield] = ACTIONS(2234), - [anon_sym_move] = ACTIONS(2234), - [anon_sym_try] = ACTIONS(2234), - [sym_integer_literal] = ACTIONS(2232), - [aux_sym_string_literal_token1] = ACTIONS(2232), - [sym_char_literal] = ACTIONS(2232), - [anon_sym_true] = ACTIONS(2234), - [anon_sym_false] = ACTIONS(2234), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2234), - [sym_super] = ACTIONS(2234), - [sym_crate] = ACTIONS(2234), - [sym_metavariable] = ACTIONS(2232), - [sym_raw_string_literal] = ACTIONS(2232), - [sym_float_literal] = ACTIONS(2232), - }, - [611] = { - [sym_line_comment] = STATE(611), - [sym_block_comment] = STATE(611), - [ts_builtin_sym_end] = ACTIONS(2236), - [sym_identifier] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2236), - [anon_sym_macro_rules_BANG] = ACTIONS(2236), - [anon_sym_LPAREN] = ACTIONS(2236), - [anon_sym_LBRACK] = ACTIONS(2236), - [anon_sym_LBRACE] = ACTIONS(2236), - [anon_sym_RBRACE] = ACTIONS(2236), - [anon_sym_STAR] = ACTIONS(2236), - [anon_sym_u8] = ACTIONS(2238), - [anon_sym_i8] = ACTIONS(2238), - [anon_sym_u16] = ACTIONS(2238), - [anon_sym_i16] = ACTIONS(2238), - [anon_sym_u32] = ACTIONS(2238), - [anon_sym_i32] = ACTIONS(2238), - [anon_sym_u64] = ACTIONS(2238), - [anon_sym_i64] = ACTIONS(2238), - [anon_sym_u128] = ACTIONS(2238), - [anon_sym_i128] = ACTIONS(2238), - [anon_sym_isize] = ACTIONS(2238), - [anon_sym_usize] = ACTIONS(2238), - [anon_sym_f32] = ACTIONS(2238), - [anon_sym_f64] = ACTIONS(2238), - [anon_sym_bool] = ACTIONS(2238), - [anon_sym_str] = ACTIONS(2238), - [anon_sym_char] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2236), - [anon_sym_COLON_COLON] = ACTIONS(2236), - [anon_sym_BANG] = ACTIONS(2236), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym_POUND] = ACTIONS(2236), - [anon_sym_LT] = ACTIONS(2236), - [anon_sym_PIPE] = ACTIONS(2236), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [anon_sym_fn] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_impl] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_loop] = ACTIONS(2238), - [anon_sym_match] = ACTIONS(2238), - [anon_sym_mod] = ACTIONS(2238), - [anon_sym_pub] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_struct] = ACTIONS(2238), - [anon_sym_trait] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_union] = ACTIONS(2238), - [anon_sym_unsafe] = ACTIONS(2238), - [anon_sym_use] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_extern] = ACTIONS(2238), - [anon_sym_DOT_DOT] = ACTIONS(2236), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_move] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [sym_integer_literal] = ACTIONS(2236), - [aux_sym_string_literal_token1] = ACTIONS(2236), - [sym_char_literal] = ACTIONS(2236), - [anon_sym_true] = ACTIONS(2238), - [anon_sym_false] = ACTIONS(2238), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_crate] = ACTIONS(2238), - [sym_metavariable] = ACTIONS(2236), - [sym_raw_string_literal] = ACTIONS(2236), - [sym_float_literal] = ACTIONS(2236), - }, - [612] = { - [sym_line_comment] = STATE(612), - [sym_block_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(2240), - [sym_identifier] = ACTIONS(2242), - [anon_sym_SEMI] = ACTIONS(2240), - [anon_sym_macro_rules_BANG] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2240), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_u8] = ACTIONS(2242), - [anon_sym_i8] = ACTIONS(2242), - [anon_sym_u16] = ACTIONS(2242), - [anon_sym_i16] = ACTIONS(2242), - [anon_sym_u32] = ACTIONS(2242), - [anon_sym_i32] = ACTIONS(2242), - [anon_sym_u64] = ACTIONS(2242), - [anon_sym_i64] = ACTIONS(2242), - [anon_sym_u128] = ACTIONS(2242), - [anon_sym_i128] = ACTIONS(2242), - [anon_sym_isize] = ACTIONS(2242), - [anon_sym_usize] = ACTIONS(2242), - [anon_sym_f32] = ACTIONS(2242), - [anon_sym_f64] = ACTIONS(2242), - [anon_sym_bool] = ACTIONS(2242), - [anon_sym_str] = ACTIONS(2242), - [anon_sym_char] = ACTIONS(2242), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_COLON_COLON] = ACTIONS(2240), - [anon_sym_BANG] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_POUND] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_SQUOTE] = ACTIONS(2242), - [anon_sym_async] = ACTIONS(2242), - [anon_sym_break] = ACTIONS(2242), - [anon_sym_const] = ACTIONS(2242), - [anon_sym_continue] = ACTIONS(2242), - [anon_sym_default] = ACTIONS(2242), - [anon_sym_enum] = ACTIONS(2242), - [anon_sym_fn] = ACTIONS(2242), - [anon_sym_for] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2242), - [anon_sym_impl] = ACTIONS(2242), - [anon_sym_let] = ACTIONS(2242), - [anon_sym_loop] = ACTIONS(2242), - [anon_sym_match] = ACTIONS(2242), - [anon_sym_mod] = ACTIONS(2242), - [anon_sym_pub] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2242), - [anon_sym_static] = ACTIONS(2242), - [anon_sym_struct] = ACTIONS(2242), - [anon_sym_trait] = ACTIONS(2242), - [anon_sym_type] = ACTIONS(2242), - [anon_sym_union] = ACTIONS(2242), - [anon_sym_unsafe] = ACTIONS(2242), - [anon_sym_use] = ACTIONS(2242), - [anon_sym_while] = ACTIONS(2242), - [anon_sym_extern] = ACTIONS(2242), - [anon_sym_DOT_DOT] = ACTIONS(2240), - [anon_sym_yield] = ACTIONS(2242), - [anon_sym_move] = ACTIONS(2242), - [anon_sym_try] = ACTIONS(2242), - [sym_integer_literal] = ACTIONS(2240), - [aux_sym_string_literal_token1] = ACTIONS(2240), - [sym_char_literal] = ACTIONS(2240), - [anon_sym_true] = ACTIONS(2242), - [anon_sym_false] = ACTIONS(2242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2242), - [sym_super] = ACTIONS(2242), - [sym_crate] = ACTIONS(2242), - [sym_metavariable] = ACTIONS(2240), - [sym_raw_string_literal] = ACTIONS(2240), - [sym_float_literal] = ACTIONS(2240), - }, [613] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(2244), - [sym_identifier] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2244), - [anon_sym_macro_rules_BANG] = ACTIONS(2244), - [anon_sym_LPAREN] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(2244), - [anon_sym_LBRACE] = ACTIONS(2244), - [anon_sym_RBRACE] = ACTIONS(2244), - [anon_sym_STAR] = ACTIONS(2244), - [anon_sym_u8] = ACTIONS(2246), - [anon_sym_i8] = ACTIONS(2246), - [anon_sym_u16] = ACTIONS(2246), - [anon_sym_i16] = ACTIONS(2246), - [anon_sym_u32] = ACTIONS(2246), - [anon_sym_i32] = ACTIONS(2246), - [anon_sym_u64] = ACTIONS(2246), - [anon_sym_i64] = ACTIONS(2246), - [anon_sym_u128] = ACTIONS(2246), - [anon_sym_i128] = ACTIONS(2246), - [anon_sym_isize] = ACTIONS(2246), - [anon_sym_usize] = ACTIONS(2246), - [anon_sym_f32] = ACTIONS(2246), - [anon_sym_f64] = ACTIONS(2246), - [anon_sym_bool] = ACTIONS(2246), - [anon_sym_str] = ACTIONS(2246), - [anon_sym_char] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_COLON_COLON] = ACTIONS(2244), - [anon_sym_BANG] = ACTIONS(2244), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_POUND] = ACTIONS(2244), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_default] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [anon_sym_fn] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_impl] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_loop] = ACTIONS(2246), - [anon_sym_match] = ACTIONS(2246), - [anon_sym_mod] = ACTIONS(2246), - [anon_sym_pub] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_struct] = ACTIONS(2246), - [anon_sym_trait] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_union] = ACTIONS(2246), - [anon_sym_unsafe] = ACTIONS(2246), - [anon_sym_use] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_extern] = ACTIONS(2246), - [anon_sym_DOT_DOT] = ACTIONS(2244), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_move] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [sym_integer_literal] = ACTIONS(2244), - [aux_sym_string_literal_token1] = ACTIONS(2244), - [sym_char_literal] = ACTIONS(2244), - [anon_sym_true] = ACTIONS(2246), - [anon_sym_false] = ACTIONS(2246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_crate] = ACTIONS(2246), - [sym_metavariable] = ACTIONS(2244), - [sym_raw_string_literal] = ACTIONS(2244), - [sym_float_literal] = ACTIONS(2244), + [ts_builtin_sym_end] = ACTIONS(2226), + [sym_identifier] = ACTIONS(2228), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_macro_rules_BANG] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2226), + [anon_sym_u8] = ACTIONS(2228), + [anon_sym_i8] = ACTIONS(2228), + [anon_sym_u16] = ACTIONS(2228), + [anon_sym_i16] = ACTIONS(2228), + [anon_sym_u32] = ACTIONS(2228), + [anon_sym_i32] = ACTIONS(2228), + [anon_sym_u64] = ACTIONS(2228), + [anon_sym_i64] = ACTIONS(2228), + [anon_sym_u128] = ACTIONS(2228), + [anon_sym_i128] = ACTIONS(2228), + [anon_sym_isize] = ACTIONS(2228), + [anon_sym_usize] = ACTIONS(2228), + [anon_sym_f32] = ACTIONS(2228), + [anon_sym_f64] = ACTIONS(2228), + [anon_sym_bool] = ACTIONS(2228), + [anon_sym_str] = ACTIONS(2228), + [anon_sym_char] = ACTIONS(2228), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_COLON_COLON] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_AMP] = ACTIONS(2226), + [anon_sym_POUND] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_PIPE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2228), + [anon_sym_async] = ACTIONS(2228), + [anon_sym_break] = ACTIONS(2228), + [anon_sym_const] = ACTIONS(2228), + [anon_sym_continue] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2228), + [anon_sym_enum] = ACTIONS(2228), + [anon_sym_fn] = ACTIONS(2228), + [anon_sym_for] = ACTIONS(2228), + [anon_sym_if] = ACTIONS(2228), + [anon_sym_impl] = ACTIONS(2228), + [anon_sym_let] = ACTIONS(2228), + [anon_sym_loop] = ACTIONS(2228), + [anon_sym_match] = ACTIONS(2228), + [anon_sym_mod] = ACTIONS(2228), + [anon_sym_pub] = ACTIONS(2228), + [anon_sym_return] = ACTIONS(2228), + [anon_sym_static] = ACTIONS(2228), + [anon_sym_struct] = ACTIONS(2228), + [anon_sym_trait] = ACTIONS(2228), + [anon_sym_type] = ACTIONS(2228), + [anon_sym_union] = ACTIONS(2228), + [anon_sym_unsafe] = ACTIONS(2228), + [anon_sym_use] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2228), + [anon_sym_extern] = ACTIONS(2228), + [anon_sym_DOT_DOT] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2228), + [anon_sym_move] = ACTIONS(2228), + [anon_sym_try] = ACTIONS(2228), + [sym_integer_literal] = ACTIONS(2226), + [aux_sym_string_literal_token1] = ACTIONS(2226), + [sym_char_literal] = ACTIONS(2226), + [anon_sym_true] = ACTIONS(2228), + [anon_sym_false] = ACTIONS(2228), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2228), + [sym_super] = ACTIONS(2228), + [sym_crate] = ACTIONS(2228), + [sym_metavariable] = ACTIONS(2226), + [sym_raw_string_literal] = ACTIONS(2226), + [sym_float_literal] = ACTIONS(2226), }, [614] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2250), - [anon_sym_SEMI] = ACTIONS(2248), - [anon_sym_macro_rules_BANG] = ACTIONS(2248), - [anon_sym_LPAREN] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2248), - [anon_sym_LBRACE] = ACTIONS(2248), - [anon_sym_RBRACE] = ACTIONS(2248), - [anon_sym_STAR] = ACTIONS(2248), - [anon_sym_u8] = ACTIONS(2250), - [anon_sym_i8] = ACTIONS(2250), - [anon_sym_u16] = ACTIONS(2250), - [anon_sym_i16] = ACTIONS(2250), - [anon_sym_u32] = ACTIONS(2250), - [anon_sym_i32] = ACTIONS(2250), - [anon_sym_u64] = ACTIONS(2250), - [anon_sym_i64] = ACTIONS(2250), - [anon_sym_u128] = ACTIONS(2250), - [anon_sym_i128] = ACTIONS(2250), - [anon_sym_isize] = ACTIONS(2250), - [anon_sym_usize] = ACTIONS(2250), - [anon_sym_f32] = ACTIONS(2250), - [anon_sym_f64] = ACTIONS(2250), - [anon_sym_bool] = ACTIONS(2250), - [anon_sym_str] = ACTIONS(2250), - [anon_sym_char] = ACTIONS(2250), - [anon_sym_DASH] = ACTIONS(2248), - [anon_sym_COLON_COLON] = ACTIONS(2248), - [anon_sym_BANG] = ACTIONS(2248), - [anon_sym_AMP] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(2248), - [anon_sym_LT] = ACTIONS(2248), - [anon_sym_PIPE] = ACTIONS(2248), - [anon_sym_SQUOTE] = ACTIONS(2250), - [anon_sym_async] = ACTIONS(2250), - [anon_sym_break] = ACTIONS(2250), - [anon_sym_const] = ACTIONS(2250), - [anon_sym_continue] = ACTIONS(2250), - [anon_sym_default] = ACTIONS(2250), - [anon_sym_enum] = ACTIONS(2250), - [anon_sym_fn] = ACTIONS(2250), - [anon_sym_for] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2250), - [anon_sym_impl] = ACTIONS(2250), - [anon_sym_let] = ACTIONS(2250), - [anon_sym_loop] = ACTIONS(2250), - [anon_sym_match] = ACTIONS(2250), - [anon_sym_mod] = ACTIONS(2250), - [anon_sym_pub] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2250), - [anon_sym_static] = ACTIONS(2250), - [anon_sym_struct] = ACTIONS(2250), - [anon_sym_trait] = ACTIONS(2250), - [anon_sym_type] = ACTIONS(2250), - [anon_sym_union] = ACTIONS(2250), - [anon_sym_unsafe] = ACTIONS(2250), - [anon_sym_use] = ACTIONS(2250), - [anon_sym_while] = ACTIONS(2250), - [anon_sym_extern] = ACTIONS(2250), - [anon_sym_DOT_DOT] = ACTIONS(2248), - [anon_sym_yield] = ACTIONS(2250), - [anon_sym_move] = ACTIONS(2250), - [anon_sym_try] = ACTIONS(2250), - [sym_integer_literal] = ACTIONS(2248), - [aux_sym_string_literal_token1] = ACTIONS(2248), - [sym_char_literal] = ACTIONS(2248), - [anon_sym_true] = ACTIONS(2250), - [anon_sym_false] = ACTIONS(2250), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2250), - [sym_super] = ACTIONS(2250), - [sym_crate] = ACTIONS(2250), - [sym_metavariable] = ACTIONS(2248), - [sym_raw_string_literal] = ACTIONS(2248), - [sym_float_literal] = ACTIONS(2248), + [ts_builtin_sym_end] = ACTIONS(2230), + [sym_identifier] = ACTIONS(2232), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_macro_rules_BANG] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_STAR] = ACTIONS(2230), + [anon_sym_u8] = ACTIONS(2232), + [anon_sym_i8] = ACTIONS(2232), + [anon_sym_u16] = ACTIONS(2232), + [anon_sym_i16] = ACTIONS(2232), + [anon_sym_u32] = ACTIONS(2232), + [anon_sym_i32] = ACTIONS(2232), + [anon_sym_u64] = ACTIONS(2232), + [anon_sym_i64] = ACTIONS(2232), + [anon_sym_u128] = ACTIONS(2232), + [anon_sym_i128] = ACTIONS(2232), + [anon_sym_isize] = ACTIONS(2232), + [anon_sym_usize] = ACTIONS(2232), + [anon_sym_f32] = ACTIONS(2232), + [anon_sym_f64] = ACTIONS(2232), + [anon_sym_bool] = ACTIONS(2232), + [anon_sym_str] = ACTIONS(2232), + [anon_sym_char] = ACTIONS(2232), + [anon_sym_DASH] = ACTIONS(2230), + [anon_sym_COLON_COLON] = ACTIONS(2230), + [anon_sym_BANG] = ACTIONS(2230), + [anon_sym_AMP] = ACTIONS(2230), + [anon_sym_POUND] = ACTIONS(2230), + [anon_sym_LT] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_SQUOTE] = ACTIONS(2232), + [anon_sym_async] = ACTIONS(2232), + [anon_sym_break] = ACTIONS(2232), + [anon_sym_const] = ACTIONS(2232), + [anon_sym_continue] = ACTIONS(2232), + [anon_sym_default] = ACTIONS(2232), + [anon_sym_enum] = ACTIONS(2232), + [anon_sym_fn] = ACTIONS(2232), + [anon_sym_for] = ACTIONS(2232), + [anon_sym_if] = ACTIONS(2232), + [anon_sym_impl] = ACTIONS(2232), + [anon_sym_let] = ACTIONS(2232), + [anon_sym_loop] = ACTIONS(2232), + [anon_sym_match] = ACTIONS(2232), + [anon_sym_mod] = ACTIONS(2232), + [anon_sym_pub] = ACTIONS(2232), + [anon_sym_return] = ACTIONS(2232), + [anon_sym_static] = ACTIONS(2232), + [anon_sym_struct] = ACTIONS(2232), + [anon_sym_trait] = ACTIONS(2232), + [anon_sym_type] = ACTIONS(2232), + [anon_sym_union] = ACTIONS(2232), + [anon_sym_unsafe] = ACTIONS(2232), + [anon_sym_use] = ACTIONS(2232), + [anon_sym_while] = ACTIONS(2232), + [anon_sym_extern] = ACTIONS(2232), + [anon_sym_DOT_DOT] = ACTIONS(2230), + [anon_sym_yield] = ACTIONS(2232), + [anon_sym_move] = ACTIONS(2232), + [anon_sym_try] = ACTIONS(2232), + [sym_integer_literal] = ACTIONS(2230), + [aux_sym_string_literal_token1] = ACTIONS(2230), + [sym_char_literal] = ACTIONS(2230), + [anon_sym_true] = ACTIONS(2232), + [anon_sym_false] = ACTIONS(2232), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2232), + [sym_super] = ACTIONS(2232), + [sym_crate] = ACTIONS(2232), + [sym_metavariable] = ACTIONS(2230), + [sym_raw_string_literal] = ACTIONS(2230), + [sym_float_literal] = ACTIONS(2230), }, [615] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(2252), - [sym_identifier] = ACTIONS(2254), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_macro_rules_BANG] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2252), - [anon_sym_u8] = ACTIONS(2254), - [anon_sym_i8] = ACTIONS(2254), - [anon_sym_u16] = ACTIONS(2254), - [anon_sym_i16] = ACTIONS(2254), - [anon_sym_u32] = ACTIONS(2254), - [anon_sym_i32] = ACTIONS(2254), - [anon_sym_u64] = ACTIONS(2254), - [anon_sym_i64] = ACTIONS(2254), - [anon_sym_u128] = ACTIONS(2254), - [anon_sym_i128] = ACTIONS(2254), - [anon_sym_isize] = ACTIONS(2254), - [anon_sym_usize] = ACTIONS(2254), - [anon_sym_f32] = ACTIONS(2254), - [anon_sym_f64] = ACTIONS(2254), - [anon_sym_bool] = ACTIONS(2254), - [anon_sym_str] = ACTIONS(2254), - [anon_sym_char] = ACTIONS(2254), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_COLON_COLON] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_AMP] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_SQUOTE] = ACTIONS(2254), - [anon_sym_async] = ACTIONS(2254), - [anon_sym_break] = ACTIONS(2254), - [anon_sym_const] = ACTIONS(2254), - [anon_sym_continue] = ACTIONS(2254), - [anon_sym_default] = ACTIONS(2254), - [anon_sym_enum] = ACTIONS(2254), - [anon_sym_fn] = ACTIONS(2254), - [anon_sym_for] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2254), - [anon_sym_impl] = ACTIONS(2254), - [anon_sym_let] = ACTIONS(2254), - [anon_sym_loop] = ACTIONS(2254), - [anon_sym_match] = ACTIONS(2254), - [anon_sym_mod] = ACTIONS(2254), - [anon_sym_pub] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2254), - [anon_sym_static] = ACTIONS(2254), - [anon_sym_struct] = ACTIONS(2254), - [anon_sym_trait] = ACTIONS(2254), - [anon_sym_type] = ACTIONS(2254), - [anon_sym_union] = ACTIONS(2254), - [anon_sym_unsafe] = ACTIONS(2254), - [anon_sym_use] = ACTIONS(2254), - [anon_sym_while] = ACTIONS(2254), - [anon_sym_extern] = ACTIONS(2254), - [anon_sym_DOT_DOT] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2254), - [anon_sym_move] = ACTIONS(2254), - [anon_sym_try] = ACTIONS(2254), - [sym_integer_literal] = ACTIONS(2252), - [aux_sym_string_literal_token1] = ACTIONS(2252), - [sym_char_literal] = ACTIONS(2252), - [anon_sym_true] = ACTIONS(2254), - [anon_sym_false] = ACTIONS(2254), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2254), - [sym_super] = ACTIONS(2254), - [sym_crate] = ACTIONS(2254), - [sym_metavariable] = ACTIONS(2252), - [sym_raw_string_literal] = ACTIONS(2252), - [sym_float_literal] = ACTIONS(2252), + [ts_builtin_sym_end] = ACTIONS(2234), + [sym_identifier] = ACTIONS(2236), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_macro_rules_BANG] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2234), + [anon_sym_u8] = ACTIONS(2236), + [anon_sym_i8] = ACTIONS(2236), + [anon_sym_u16] = ACTIONS(2236), + [anon_sym_i16] = ACTIONS(2236), + [anon_sym_u32] = ACTIONS(2236), + [anon_sym_i32] = ACTIONS(2236), + [anon_sym_u64] = ACTIONS(2236), + [anon_sym_i64] = ACTIONS(2236), + [anon_sym_u128] = ACTIONS(2236), + [anon_sym_i128] = ACTIONS(2236), + [anon_sym_isize] = ACTIONS(2236), + [anon_sym_usize] = ACTIONS(2236), + [anon_sym_f32] = ACTIONS(2236), + [anon_sym_f64] = ACTIONS(2236), + [anon_sym_bool] = ACTIONS(2236), + [anon_sym_str] = ACTIONS(2236), + [anon_sym_char] = ACTIONS(2236), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_COLON_COLON] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_AMP] = ACTIONS(2234), + [anon_sym_POUND] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_PIPE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2236), + [anon_sym_async] = ACTIONS(2236), + [anon_sym_break] = ACTIONS(2236), + [anon_sym_const] = ACTIONS(2236), + [anon_sym_continue] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2236), + [anon_sym_enum] = ACTIONS(2236), + [anon_sym_fn] = ACTIONS(2236), + [anon_sym_for] = ACTIONS(2236), + [anon_sym_if] = ACTIONS(2236), + [anon_sym_impl] = ACTIONS(2236), + [anon_sym_let] = ACTIONS(2236), + [anon_sym_loop] = ACTIONS(2236), + [anon_sym_match] = ACTIONS(2236), + [anon_sym_mod] = ACTIONS(2236), + [anon_sym_pub] = ACTIONS(2236), + [anon_sym_return] = ACTIONS(2236), + [anon_sym_static] = ACTIONS(2236), + [anon_sym_struct] = ACTIONS(2236), + [anon_sym_trait] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2236), + [anon_sym_union] = ACTIONS(2236), + [anon_sym_unsafe] = ACTIONS(2236), + [anon_sym_use] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2236), + [anon_sym_extern] = ACTIONS(2236), + [anon_sym_DOT_DOT] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2236), + [anon_sym_move] = ACTIONS(2236), + [anon_sym_try] = ACTIONS(2236), + [sym_integer_literal] = ACTIONS(2234), + [aux_sym_string_literal_token1] = ACTIONS(2234), + [sym_char_literal] = ACTIONS(2234), + [anon_sym_true] = ACTIONS(2236), + [anon_sym_false] = ACTIONS(2236), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2236), + [sym_super] = ACTIONS(2236), + [sym_crate] = ACTIONS(2236), + [sym_metavariable] = ACTIONS(2234), + [sym_raw_string_literal] = ACTIONS(2234), + [sym_float_literal] = ACTIONS(2234), }, [616] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [ts_builtin_sym_end] = ACTIONS(2256), - [sym_identifier] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2256), - [anon_sym_macro_rules_BANG] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2256), - [anon_sym_LBRACE] = ACTIONS(2256), - [anon_sym_RBRACE] = ACTIONS(2256), - [anon_sym_STAR] = ACTIONS(2256), - [anon_sym_u8] = ACTIONS(2258), - [anon_sym_i8] = ACTIONS(2258), - [anon_sym_u16] = ACTIONS(2258), - [anon_sym_i16] = ACTIONS(2258), - [anon_sym_u32] = ACTIONS(2258), - [anon_sym_i32] = ACTIONS(2258), - [anon_sym_u64] = ACTIONS(2258), - [anon_sym_i64] = ACTIONS(2258), - [anon_sym_u128] = ACTIONS(2258), - [anon_sym_i128] = ACTIONS(2258), - [anon_sym_isize] = ACTIONS(2258), - [anon_sym_usize] = ACTIONS(2258), - [anon_sym_f32] = ACTIONS(2258), - [anon_sym_f64] = ACTIONS(2258), - [anon_sym_bool] = ACTIONS(2258), - [anon_sym_str] = ACTIONS(2258), - [anon_sym_char] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2256), - [anon_sym_COLON_COLON] = ACTIONS(2256), - [anon_sym_BANG] = ACTIONS(2256), - [anon_sym_AMP] = ACTIONS(2256), - [anon_sym_POUND] = ACTIONS(2256), - [anon_sym_LT] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_SQUOTE] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_break] = ACTIONS(2258), - [anon_sym_const] = ACTIONS(2258), - [anon_sym_continue] = ACTIONS(2258), - [anon_sym_default] = ACTIONS(2258), - [anon_sym_enum] = ACTIONS(2258), - [anon_sym_fn] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2258), - [anon_sym_impl] = ACTIONS(2258), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_loop] = ACTIONS(2258), - [anon_sym_match] = ACTIONS(2258), - [anon_sym_mod] = ACTIONS(2258), - [anon_sym_pub] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_struct] = ACTIONS(2258), - [anon_sym_trait] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_union] = ACTIONS(2258), - [anon_sym_unsafe] = ACTIONS(2258), - [anon_sym_use] = ACTIONS(2258), - [anon_sym_while] = ACTIONS(2258), - [anon_sym_extern] = ACTIONS(2258), - [anon_sym_DOT_DOT] = ACTIONS(2256), - [anon_sym_yield] = ACTIONS(2258), - [anon_sym_move] = ACTIONS(2258), - [anon_sym_try] = ACTIONS(2258), - [sym_integer_literal] = ACTIONS(2256), - [aux_sym_string_literal_token1] = ACTIONS(2256), - [sym_char_literal] = ACTIONS(2256), - [anon_sym_true] = ACTIONS(2258), - [anon_sym_false] = ACTIONS(2258), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2258), - [sym_super] = ACTIONS(2258), - [sym_crate] = ACTIONS(2258), - [sym_metavariable] = ACTIONS(2256), - [sym_raw_string_literal] = ACTIONS(2256), - [sym_float_literal] = ACTIONS(2256), + [ts_builtin_sym_end] = ACTIONS(2238), + [sym_identifier] = ACTIONS(2240), + [anon_sym_SEMI] = ACTIONS(2238), + [anon_sym_macro_rules_BANG] = ACTIONS(2238), + [anon_sym_LPAREN] = ACTIONS(2238), + [anon_sym_LBRACK] = ACTIONS(2238), + [anon_sym_LBRACE] = ACTIONS(2238), + [anon_sym_RBRACE] = ACTIONS(2238), + [anon_sym_STAR] = ACTIONS(2238), + [anon_sym_u8] = ACTIONS(2240), + [anon_sym_i8] = ACTIONS(2240), + [anon_sym_u16] = ACTIONS(2240), + [anon_sym_i16] = ACTIONS(2240), + [anon_sym_u32] = ACTIONS(2240), + [anon_sym_i32] = ACTIONS(2240), + [anon_sym_u64] = ACTIONS(2240), + [anon_sym_i64] = ACTIONS(2240), + [anon_sym_u128] = ACTIONS(2240), + [anon_sym_i128] = ACTIONS(2240), + [anon_sym_isize] = ACTIONS(2240), + [anon_sym_usize] = ACTIONS(2240), + [anon_sym_f32] = ACTIONS(2240), + [anon_sym_f64] = ACTIONS(2240), + [anon_sym_bool] = ACTIONS(2240), + [anon_sym_str] = ACTIONS(2240), + [anon_sym_char] = ACTIONS(2240), + [anon_sym_DASH] = ACTIONS(2238), + [anon_sym_COLON_COLON] = ACTIONS(2238), + [anon_sym_BANG] = ACTIONS(2238), + [anon_sym_AMP] = ACTIONS(2238), + [anon_sym_POUND] = ACTIONS(2238), + [anon_sym_LT] = ACTIONS(2238), + [anon_sym_PIPE] = ACTIONS(2238), + [anon_sym_SQUOTE] = ACTIONS(2240), + [anon_sym_async] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_default] = ACTIONS(2240), + [anon_sym_enum] = ACTIONS(2240), + [anon_sym_fn] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_impl] = ACTIONS(2240), + [anon_sym_let] = ACTIONS(2240), + [anon_sym_loop] = ACTIONS(2240), + [anon_sym_match] = ACTIONS(2240), + [anon_sym_mod] = ACTIONS(2240), + [anon_sym_pub] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_static] = ACTIONS(2240), + [anon_sym_struct] = ACTIONS(2240), + [anon_sym_trait] = ACTIONS(2240), + [anon_sym_type] = ACTIONS(2240), + [anon_sym_union] = ACTIONS(2240), + [anon_sym_unsafe] = ACTIONS(2240), + [anon_sym_use] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_extern] = ACTIONS(2240), + [anon_sym_DOT_DOT] = ACTIONS(2238), + [anon_sym_yield] = ACTIONS(2240), + [anon_sym_move] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2240), + [sym_integer_literal] = ACTIONS(2238), + [aux_sym_string_literal_token1] = ACTIONS(2238), + [sym_char_literal] = ACTIONS(2238), + [anon_sym_true] = ACTIONS(2240), + [anon_sym_false] = ACTIONS(2240), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2240), + [sym_super] = ACTIONS(2240), + [sym_crate] = ACTIONS(2240), + [sym_metavariable] = ACTIONS(2238), + [sym_raw_string_literal] = ACTIONS(2238), + [sym_float_literal] = ACTIONS(2238), }, [617] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(2260), - [sym_identifier] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2260), - [anon_sym_macro_rules_BANG] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2260), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_STAR] = ACTIONS(2260), - [anon_sym_u8] = ACTIONS(2262), - [anon_sym_i8] = ACTIONS(2262), - [anon_sym_u16] = ACTIONS(2262), - [anon_sym_i16] = ACTIONS(2262), - [anon_sym_u32] = ACTIONS(2262), - [anon_sym_i32] = ACTIONS(2262), - [anon_sym_u64] = ACTIONS(2262), - [anon_sym_i64] = ACTIONS(2262), - [anon_sym_u128] = ACTIONS(2262), - [anon_sym_i128] = ACTIONS(2262), - [anon_sym_isize] = ACTIONS(2262), - [anon_sym_usize] = ACTIONS(2262), - [anon_sym_f32] = ACTIONS(2262), - [anon_sym_f64] = ACTIONS(2262), - [anon_sym_bool] = ACTIONS(2262), - [anon_sym_str] = ACTIONS(2262), - [anon_sym_char] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_COLON_COLON] = ACTIONS(2260), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_POUND] = ACTIONS(2260), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_PIPE] = ACTIONS(2260), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), - [anon_sym_fn] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_impl] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_loop] = ACTIONS(2262), - [anon_sym_match] = ACTIONS(2262), - [anon_sym_mod] = ACTIONS(2262), - [anon_sym_pub] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_struct] = ACTIONS(2262), - [anon_sym_trait] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_union] = ACTIONS(2262), - [anon_sym_unsafe] = ACTIONS(2262), - [anon_sym_use] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_extern] = ACTIONS(2262), - [anon_sym_DOT_DOT] = ACTIONS(2260), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_move] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [sym_integer_literal] = ACTIONS(2260), - [aux_sym_string_literal_token1] = ACTIONS(2260), - [sym_char_literal] = ACTIONS(2260), - [anon_sym_true] = ACTIONS(2262), - [anon_sym_false] = ACTIONS(2262), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_crate] = ACTIONS(2262), - [sym_metavariable] = ACTIONS(2260), - [sym_raw_string_literal] = ACTIONS(2260), - [sym_float_literal] = ACTIONS(2260), + [ts_builtin_sym_end] = ACTIONS(2242), + [sym_identifier] = ACTIONS(2244), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_macro_rules_BANG] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2242), + [anon_sym_u8] = ACTIONS(2244), + [anon_sym_i8] = ACTIONS(2244), + [anon_sym_u16] = ACTIONS(2244), + [anon_sym_i16] = ACTIONS(2244), + [anon_sym_u32] = ACTIONS(2244), + [anon_sym_i32] = ACTIONS(2244), + [anon_sym_u64] = ACTIONS(2244), + [anon_sym_i64] = ACTIONS(2244), + [anon_sym_u128] = ACTIONS(2244), + [anon_sym_i128] = ACTIONS(2244), + [anon_sym_isize] = ACTIONS(2244), + [anon_sym_usize] = ACTIONS(2244), + [anon_sym_f32] = ACTIONS(2244), + [anon_sym_f64] = ACTIONS(2244), + [anon_sym_bool] = ACTIONS(2244), + [anon_sym_str] = ACTIONS(2244), + [anon_sym_char] = ACTIONS(2244), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_COLON_COLON] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_PIPE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2244), + [anon_sym_async] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2244), + [anon_sym_enum] = ACTIONS(2244), + [anon_sym_fn] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_impl] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_loop] = ACTIONS(2244), + [anon_sym_match] = ACTIONS(2244), + [anon_sym_mod] = ACTIONS(2244), + [anon_sym_pub] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_static] = ACTIONS(2244), + [anon_sym_struct] = ACTIONS(2244), + [anon_sym_trait] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2244), + [anon_sym_union] = ACTIONS(2244), + [anon_sym_unsafe] = ACTIONS(2244), + [anon_sym_use] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym_DOT_DOT] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2244), + [anon_sym_move] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [sym_integer_literal] = ACTIONS(2242), + [aux_sym_string_literal_token1] = ACTIONS(2242), + [sym_char_literal] = ACTIONS(2242), + [anon_sym_true] = ACTIONS(2244), + [anon_sym_false] = ACTIONS(2244), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2244), + [sym_super] = ACTIONS(2244), + [sym_crate] = ACTIONS(2244), + [sym_metavariable] = ACTIONS(2242), + [sym_raw_string_literal] = ACTIONS(2242), + [sym_float_literal] = ACTIONS(2242), }, [618] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2264), - [sym_identifier] = ACTIONS(2266), - [anon_sym_SEMI] = ACTIONS(2264), - [anon_sym_macro_rules_BANG] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2264), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_STAR] = ACTIONS(2264), - [anon_sym_u8] = ACTIONS(2266), - [anon_sym_i8] = ACTIONS(2266), - [anon_sym_u16] = ACTIONS(2266), - [anon_sym_i16] = ACTIONS(2266), - [anon_sym_u32] = ACTIONS(2266), - [anon_sym_i32] = ACTIONS(2266), - [anon_sym_u64] = ACTIONS(2266), - [anon_sym_i64] = ACTIONS(2266), - [anon_sym_u128] = ACTIONS(2266), - [anon_sym_i128] = ACTIONS(2266), - [anon_sym_isize] = ACTIONS(2266), - [anon_sym_usize] = ACTIONS(2266), - [anon_sym_f32] = ACTIONS(2266), - [anon_sym_f64] = ACTIONS(2266), - [anon_sym_bool] = ACTIONS(2266), - [anon_sym_str] = ACTIONS(2266), - [anon_sym_char] = ACTIONS(2266), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_COLON_COLON] = ACTIONS(2264), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_POUND] = ACTIONS(2264), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_SQUOTE] = ACTIONS(2266), - [anon_sym_async] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [anon_sym_continue] = ACTIONS(2266), - [anon_sym_default] = ACTIONS(2266), - [anon_sym_enum] = ACTIONS(2266), - [anon_sym_fn] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2266), - [anon_sym_impl] = ACTIONS(2266), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_loop] = ACTIONS(2266), - [anon_sym_match] = ACTIONS(2266), - [anon_sym_mod] = ACTIONS(2266), - [anon_sym_pub] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2266), - [anon_sym_static] = ACTIONS(2266), - [anon_sym_struct] = ACTIONS(2266), - [anon_sym_trait] = ACTIONS(2266), - [anon_sym_type] = ACTIONS(2266), - [anon_sym_union] = ACTIONS(2266), - [anon_sym_unsafe] = ACTIONS(2266), - [anon_sym_use] = ACTIONS(2266), - [anon_sym_while] = ACTIONS(2266), - [anon_sym_extern] = ACTIONS(2266), - [anon_sym_DOT_DOT] = ACTIONS(2264), - [anon_sym_yield] = ACTIONS(2266), - [anon_sym_move] = ACTIONS(2266), - [anon_sym_try] = ACTIONS(2266), - [sym_integer_literal] = ACTIONS(2264), - [aux_sym_string_literal_token1] = ACTIONS(2264), - [sym_char_literal] = ACTIONS(2264), - [anon_sym_true] = ACTIONS(2266), - [anon_sym_false] = ACTIONS(2266), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2266), - [sym_super] = ACTIONS(2266), - [sym_crate] = ACTIONS(2266), - [sym_metavariable] = ACTIONS(2264), - [sym_raw_string_literal] = ACTIONS(2264), - [sym_float_literal] = ACTIONS(2264), + [ts_builtin_sym_end] = ACTIONS(2246), + [sym_identifier] = ACTIONS(2248), + [anon_sym_SEMI] = ACTIONS(2246), + [anon_sym_macro_rules_BANG] = ACTIONS(2246), + [anon_sym_LPAREN] = ACTIONS(2246), + [anon_sym_LBRACK] = ACTIONS(2246), + [anon_sym_LBRACE] = ACTIONS(2246), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_STAR] = ACTIONS(2246), + [anon_sym_u8] = ACTIONS(2248), + [anon_sym_i8] = ACTIONS(2248), + [anon_sym_u16] = ACTIONS(2248), + [anon_sym_i16] = ACTIONS(2248), + [anon_sym_u32] = ACTIONS(2248), + [anon_sym_i32] = ACTIONS(2248), + [anon_sym_u64] = ACTIONS(2248), + [anon_sym_i64] = ACTIONS(2248), + [anon_sym_u128] = ACTIONS(2248), + [anon_sym_i128] = ACTIONS(2248), + [anon_sym_isize] = ACTIONS(2248), + [anon_sym_usize] = ACTIONS(2248), + [anon_sym_f32] = ACTIONS(2248), + [anon_sym_f64] = ACTIONS(2248), + [anon_sym_bool] = ACTIONS(2248), + [anon_sym_str] = ACTIONS(2248), + [anon_sym_char] = ACTIONS(2248), + [anon_sym_DASH] = ACTIONS(2246), + [anon_sym_COLON_COLON] = ACTIONS(2246), + [anon_sym_BANG] = ACTIONS(2246), + [anon_sym_AMP] = ACTIONS(2246), + [anon_sym_POUND] = ACTIONS(2246), + [anon_sym_LT] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2246), + [anon_sym_SQUOTE] = ACTIONS(2248), + [anon_sym_async] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_default] = ACTIONS(2248), + [anon_sym_enum] = ACTIONS(2248), + [anon_sym_fn] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_impl] = ACTIONS(2248), + [anon_sym_let] = ACTIONS(2248), + [anon_sym_loop] = ACTIONS(2248), + [anon_sym_match] = ACTIONS(2248), + [anon_sym_mod] = ACTIONS(2248), + [anon_sym_pub] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_static] = ACTIONS(2248), + [anon_sym_struct] = ACTIONS(2248), + [anon_sym_trait] = ACTIONS(2248), + [anon_sym_type] = ACTIONS(2248), + [anon_sym_union] = ACTIONS(2248), + [anon_sym_unsafe] = ACTIONS(2248), + [anon_sym_use] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_extern] = ACTIONS(2248), + [anon_sym_DOT_DOT] = ACTIONS(2246), + [anon_sym_yield] = ACTIONS(2248), + [anon_sym_move] = ACTIONS(2248), + [anon_sym_try] = ACTIONS(2248), + [sym_integer_literal] = ACTIONS(2246), + [aux_sym_string_literal_token1] = ACTIONS(2246), + [sym_char_literal] = ACTIONS(2246), + [anon_sym_true] = ACTIONS(2248), + [anon_sym_false] = ACTIONS(2248), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2248), + [sym_super] = ACTIONS(2248), + [sym_crate] = ACTIONS(2248), + [sym_metavariable] = ACTIONS(2246), + [sym_raw_string_literal] = ACTIONS(2246), + [sym_float_literal] = ACTIONS(2246), }, [619] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2268), - [sym_identifier] = ACTIONS(2270), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_macro_rules_BANG] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2268), - [anon_sym_LBRACK] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2268), - [anon_sym_u8] = ACTIONS(2270), - [anon_sym_i8] = ACTIONS(2270), - [anon_sym_u16] = ACTIONS(2270), - [anon_sym_i16] = ACTIONS(2270), - [anon_sym_u32] = ACTIONS(2270), - [anon_sym_i32] = ACTIONS(2270), - [anon_sym_u64] = ACTIONS(2270), - [anon_sym_i64] = ACTIONS(2270), - [anon_sym_u128] = ACTIONS(2270), - [anon_sym_i128] = ACTIONS(2270), - [anon_sym_isize] = ACTIONS(2270), - [anon_sym_usize] = ACTIONS(2270), - [anon_sym_f32] = ACTIONS(2270), - [anon_sym_f64] = ACTIONS(2270), - [anon_sym_bool] = ACTIONS(2270), - [anon_sym_str] = ACTIONS(2270), - [anon_sym_char] = ACTIONS(2270), - [anon_sym_DASH] = ACTIONS(2268), - [anon_sym_COLON_COLON] = ACTIONS(2268), - [anon_sym_BANG] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(2268), - [anon_sym_POUND] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_SQUOTE] = ACTIONS(2270), - [anon_sym_async] = ACTIONS(2270), - [anon_sym_break] = ACTIONS(2270), - [anon_sym_const] = ACTIONS(2270), - [anon_sym_continue] = ACTIONS(2270), - [anon_sym_default] = ACTIONS(2270), - [anon_sym_enum] = ACTIONS(2270), - [anon_sym_fn] = ACTIONS(2270), - [anon_sym_for] = ACTIONS(2270), - [anon_sym_if] = ACTIONS(2270), - [anon_sym_impl] = ACTIONS(2270), - [anon_sym_let] = ACTIONS(2270), - [anon_sym_loop] = ACTIONS(2270), - [anon_sym_match] = ACTIONS(2270), - [anon_sym_mod] = ACTIONS(2270), - [anon_sym_pub] = ACTIONS(2270), - [anon_sym_return] = ACTIONS(2270), - [anon_sym_static] = ACTIONS(2270), - [anon_sym_struct] = ACTIONS(2270), - [anon_sym_trait] = ACTIONS(2270), - [anon_sym_type] = ACTIONS(2270), - [anon_sym_union] = ACTIONS(2270), - [anon_sym_unsafe] = ACTIONS(2270), - [anon_sym_use] = ACTIONS(2270), - [anon_sym_while] = ACTIONS(2270), - [anon_sym_extern] = ACTIONS(2270), - [anon_sym_DOT_DOT] = ACTIONS(2268), - [anon_sym_yield] = ACTIONS(2270), - [anon_sym_move] = ACTIONS(2270), - [anon_sym_try] = ACTIONS(2270), - [sym_integer_literal] = ACTIONS(2268), - [aux_sym_string_literal_token1] = ACTIONS(2268), - [sym_char_literal] = ACTIONS(2268), - [anon_sym_true] = ACTIONS(2270), - [anon_sym_false] = ACTIONS(2270), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2270), - [sym_super] = ACTIONS(2270), - [sym_crate] = ACTIONS(2270), - [sym_metavariable] = ACTIONS(2268), - [sym_raw_string_literal] = ACTIONS(2268), - [sym_float_literal] = ACTIONS(2268), + [ts_builtin_sym_end] = ACTIONS(2250), + [sym_identifier] = ACTIONS(2252), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_macro_rules_BANG] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_u8] = ACTIONS(2252), + [anon_sym_i8] = ACTIONS(2252), + [anon_sym_u16] = ACTIONS(2252), + [anon_sym_i16] = ACTIONS(2252), + [anon_sym_u32] = ACTIONS(2252), + [anon_sym_i32] = ACTIONS(2252), + [anon_sym_u64] = ACTIONS(2252), + [anon_sym_i64] = ACTIONS(2252), + [anon_sym_u128] = ACTIONS(2252), + [anon_sym_i128] = ACTIONS(2252), + [anon_sym_isize] = ACTIONS(2252), + [anon_sym_usize] = ACTIONS(2252), + [anon_sym_f32] = ACTIONS(2252), + [anon_sym_f64] = ACTIONS(2252), + [anon_sym_bool] = ACTIONS(2252), + [anon_sym_str] = ACTIONS(2252), + [anon_sym_char] = ACTIONS(2252), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_COLON_COLON] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_POUND] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2252), + [anon_sym_async] = ACTIONS(2252), + [anon_sym_break] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [anon_sym_continue] = ACTIONS(2252), + [anon_sym_default] = ACTIONS(2252), + [anon_sym_enum] = ACTIONS(2252), + [anon_sym_fn] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_impl] = ACTIONS(2252), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_loop] = ACTIONS(2252), + [anon_sym_match] = ACTIONS(2252), + [anon_sym_mod] = ACTIONS(2252), + [anon_sym_pub] = ACTIONS(2252), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_static] = ACTIONS(2252), + [anon_sym_struct] = ACTIONS(2252), + [anon_sym_trait] = ACTIONS(2252), + [anon_sym_type] = ACTIONS(2252), + [anon_sym_union] = ACTIONS(2252), + [anon_sym_unsafe] = ACTIONS(2252), + [anon_sym_use] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_extern] = ACTIONS(2252), + [anon_sym_DOT_DOT] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2252), + [anon_sym_move] = ACTIONS(2252), + [anon_sym_try] = ACTIONS(2252), + [sym_integer_literal] = ACTIONS(2250), + [aux_sym_string_literal_token1] = ACTIONS(2250), + [sym_char_literal] = ACTIONS(2250), + [anon_sym_true] = ACTIONS(2252), + [anon_sym_false] = ACTIONS(2252), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2252), + [sym_super] = ACTIONS(2252), + [sym_crate] = ACTIONS(2252), + [sym_metavariable] = ACTIONS(2250), + [sym_raw_string_literal] = ACTIONS(2250), + [sym_float_literal] = ACTIONS(2250), }, [620] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2272), - [sym_identifier] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2272), - [anon_sym_macro_rules_BANG] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2272), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_STAR] = ACTIONS(2272), - [anon_sym_u8] = ACTIONS(2274), - [anon_sym_i8] = ACTIONS(2274), - [anon_sym_u16] = ACTIONS(2274), - [anon_sym_i16] = ACTIONS(2274), - [anon_sym_u32] = ACTIONS(2274), - [anon_sym_i32] = ACTIONS(2274), - [anon_sym_u64] = ACTIONS(2274), - [anon_sym_i64] = ACTIONS(2274), - [anon_sym_u128] = ACTIONS(2274), - [anon_sym_i128] = ACTIONS(2274), - [anon_sym_isize] = ACTIONS(2274), - [anon_sym_usize] = ACTIONS(2274), - [anon_sym_f32] = ACTIONS(2274), - [anon_sym_f64] = ACTIONS(2274), - [anon_sym_bool] = ACTIONS(2274), - [anon_sym_str] = ACTIONS(2274), - [anon_sym_char] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_COLON_COLON] = ACTIONS(2272), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_AMP] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(2272), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_SQUOTE] = ACTIONS(2274), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), - [anon_sym_fn] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_impl] = ACTIONS(2274), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_loop] = ACTIONS(2274), - [anon_sym_match] = ACTIONS(2274), - [anon_sym_mod] = ACTIONS(2274), - [anon_sym_pub] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_struct] = ACTIONS(2274), - [anon_sym_trait] = ACTIONS(2274), - [anon_sym_type] = ACTIONS(2274), - [anon_sym_union] = ACTIONS(2274), - [anon_sym_unsafe] = ACTIONS(2274), - [anon_sym_use] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_extern] = ACTIONS(2274), - [anon_sym_DOT_DOT] = ACTIONS(2272), - [anon_sym_yield] = ACTIONS(2274), - [anon_sym_move] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [sym_integer_literal] = ACTIONS(2272), - [aux_sym_string_literal_token1] = ACTIONS(2272), - [sym_char_literal] = ACTIONS(2272), - [anon_sym_true] = ACTIONS(2274), - [anon_sym_false] = ACTIONS(2274), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2274), - [sym_super] = ACTIONS(2274), - [sym_crate] = ACTIONS(2274), - [sym_metavariable] = ACTIONS(2272), - [sym_raw_string_literal] = ACTIONS(2272), - [sym_float_literal] = ACTIONS(2272), + [ts_builtin_sym_end] = ACTIONS(2254), + [sym_identifier] = ACTIONS(2256), + [anon_sym_SEMI] = ACTIONS(2254), + [anon_sym_macro_rules_BANG] = ACTIONS(2254), + [anon_sym_LPAREN] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(2254), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_STAR] = ACTIONS(2254), + [anon_sym_u8] = ACTIONS(2256), + [anon_sym_i8] = ACTIONS(2256), + [anon_sym_u16] = ACTIONS(2256), + [anon_sym_i16] = ACTIONS(2256), + [anon_sym_u32] = ACTIONS(2256), + [anon_sym_i32] = ACTIONS(2256), + [anon_sym_u64] = ACTIONS(2256), + [anon_sym_i64] = ACTIONS(2256), + [anon_sym_u128] = ACTIONS(2256), + [anon_sym_i128] = ACTIONS(2256), + [anon_sym_isize] = ACTIONS(2256), + [anon_sym_usize] = ACTIONS(2256), + [anon_sym_f32] = ACTIONS(2256), + [anon_sym_f64] = ACTIONS(2256), + [anon_sym_bool] = ACTIONS(2256), + [anon_sym_str] = ACTIONS(2256), + [anon_sym_char] = ACTIONS(2256), + [anon_sym_DASH] = ACTIONS(2254), + [anon_sym_COLON_COLON] = ACTIONS(2254), + [anon_sym_BANG] = ACTIONS(2254), + [anon_sym_AMP] = ACTIONS(2254), + [anon_sym_POUND] = ACTIONS(2254), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_PIPE] = ACTIONS(2254), + [anon_sym_SQUOTE] = ACTIONS(2256), + [anon_sym_async] = ACTIONS(2256), + [anon_sym_break] = ACTIONS(2256), + [anon_sym_const] = ACTIONS(2256), + [anon_sym_continue] = ACTIONS(2256), + [anon_sym_default] = ACTIONS(2256), + [anon_sym_enum] = ACTIONS(2256), + [anon_sym_fn] = ACTIONS(2256), + [anon_sym_for] = ACTIONS(2256), + [anon_sym_if] = ACTIONS(2256), + [anon_sym_impl] = ACTIONS(2256), + [anon_sym_let] = ACTIONS(2256), + [anon_sym_loop] = ACTIONS(2256), + [anon_sym_match] = ACTIONS(2256), + [anon_sym_mod] = ACTIONS(2256), + [anon_sym_pub] = ACTIONS(2256), + [anon_sym_return] = ACTIONS(2256), + [anon_sym_static] = ACTIONS(2256), + [anon_sym_struct] = ACTIONS(2256), + [anon_sym_trait] = ACTIONS(2256), + [anon_sym_type] = ACTIONS(2256), + [anon_sym_union] = ACTIONS(2256), + [anon_sym_unsafe] = ACTIONS(2256), + [anon_sym_use] = ACTIONS(2256), + [anon_sym_while] = ACTIONS(2256), + [anon_sym_extern] = ACTIONS(2256), + [anon_sym_DOT_DOT] = ACTIONS(2254), + [anon_sym_yield] = ACTIONS(2256), + [anon_sym_move] = ACTIONS(2256), + [anon_sym_try] = ACTIONS(2256), + [sym_integer_literal] = ACTIONS(2254), + [aux_sym_string_literal_token1] = ACTIONS(2254), + [sym_char_literal] = ACTIONS(2254), + [anon_sym_true] = ACTIONS(2256), + [anon_sym_false] = ACTIONS(2256), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2256), + [sym_super] = ACTIONS(2256), + [sym_crate] = ACTIONS(2256), + [sym_metavariable] = ACTIONS(2254), + [sym_raw_string_literal] = ACTIONS(2254), + [sym_float_literal] = ACTIONS(2254), }, [621] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2276), - [sym_identifier] = ACTIONS(2278), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_macro_rules_BANG] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_RBRACE] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2276), - [anon_sym_u8] = ACTIONS(2278), - [anon_sym_i8] = ACTIONS(2278), - [anon_sym_u16] = ACTIONS(2278), - [anon_sym_i16] = ACTIONS(2278), - [anon_sym_u32] = ACTIONS(2278), - [anon_sym_i32] = ACTIONS(2278), - [anon_sym_u64] = ACTIONS(2278), - [anon_sym_i64] = ACTIONS(2278), - [anon_sym_u128] = ACTIONS(2278), - [anon_sym_i128] = ACTIONS(2278), - [anon_sym_isize] = ACTIONS(2278), - [anon_sym_usize] = ACTIONS(2278), - [anon_sym_f32] = ACTIONS(2278), - [anon_sym_f64] = ACTIONS(2278), - [anon_sym_bool] = ACTIONS(2278), - [anon_sym_str] = ACTIONS(2278), - [anon_sym_char] = ACTIONS(2278), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_COLON_COLON] = ACTIONS(2276), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(2276), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_SQUOTE] = ACTIONS(2278), - [anon_sym_async] = ACTIONS(2278), - [anon_sym_break] = ACTIONS(2278), - [anon_sym_const] = ACTIONS(2278), - [anon_sym_continue] = ACTIONS(2278), - [anon_sym_default] = ACTIONS(2278), - [anon_sym_enum] = ACTIONS(2278), - [anon_sym_fn] = ACTIONS(2278), - [anon_sym_for] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2278), - [anon_sym_impl] = ACTIONS(2278), - [anon_sym_let] = ACTIONS(2278), - [anon_sym_loop] = ACTIONS(2278), - [anon_sym_match] = ACTIONS(2278), - [anon_sym_mod] = ACTIONS(2278), - [anon_sym_pub] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2278), - [anon_sym_static] = ACTIONS(2278), - [anon_sym_struct] = ACTIONS(2278), - [anon_sym_trait] = ACTIONS(2278), - [anon_sym_type] = ACTIONS(2278), - [anon_sym_union] = ACTIONS(2278), - [anon_sym_unsafe] = ACTIONS(2278), - [anon_sym_use] = ACTIONS(2278), - [anon_sym_while] = ACTIONS(2278), - [anon_sym_extern] = ACTIONS(2278), - [anon_sym_DOT_DOT] = ACTIONS(2276), - [anon_sym_yield] = ACTIONS(2278), - [anon_sym_move] = ACTIONS(2278), - [anon_sym_try] = ACTIONS(2278), - [sym_integer_literal] = ACTIONS(2276), - [aux_sym_string_literal_token1] = ACTIONS(2276), - [sym_char_literal] = ACTIONS(2276), - [anon_sym_true] = ACTIONS(2278), - [anon_sym_false] = ACTIONS(2278), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2278), - [sym_super] = ACTIONS(2278), - [sym_crate] = ACTIONS(2278), - [sym_metavariable] = ACTIONS(2276), - [sym_raw_string_literal] = ACTIONS(2276), - [sym_float_literal] = ACTIONS(2276), + [ts_builtin_sym_end] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2258), + [anon_sym_macro_rules_BANG] = ACTIONS(2258), + [anon_sym_LPAREN] = ACTIONS(2258), + [anon_sym_LBRACK] = ACTIONS(2258), + [anon_sym_LBRACE] = ACTIONS(2258), + [anon_sym_RBRACE] = ACTIONS(2258), + [anon_sym_STAR] = ACTIONS(2258), + [anon_sym_u8] = ACTIONS(2260), + [anon_sym_i8] = ACTIONS(2260), + [anon_sym_u16] = ACTIONS(2260), + [anon_sym_i16] = ACTIONS(2260), + [anon_sym_u32] = ACTIONS(2260), + [anon_sym_i32] = ACTIONS(2260), + [anon_sym_u64] = ACTIONS(2260), + [anon_sym_i64] = ACTIONS(2260), + [anon_sym_u128] = ACTIONS(2260), + [anon_sym_i128] = ACTIONS(2260), + [anon_sym_isize] = ACTIONS(2260), + [anon_sym_usize] = ACTIONS(2260), + [anon_sym_f32] = ACTIONS(2260), + [anon_sym_f64] = ACTIONS(2260), + [anon_sym_bool] = ACTIONS(2260), + [anon_sym_str] = ACTIONS(2260), + [anon_sym_char] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2258), + [anon_sym_COLON_COLON] = ACTIONS(2258), + [anon_sym_BANG] = ACTIONS(2258), + [anon_sym_AMP] = ACTIONS(2258), + [anon_sym_POUND] = ACTIONS(2258), + [anon_sym_LT] = ACTIONS(2258), + [anon_sym_PIPE] = ACTIONS(2258), + [anon_sym_SQUOTE] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [anon_sym_fn] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_impl] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_loop] = ACTIONS(2260), + [anon_sym_match] = ACTIONS(2260), + [anon_sym_mod] = ACTIONS(2260), + [anon_sym_pub] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_struct] = ACTIONS(2260), + [anon_sym_trait] = ACTIONS(2260), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_union] = ACTIONS(2260), + [anon_sym_unsafe] = ACTIONS(2260), + [anon_sym_use] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_extern] = ACTIONS(2260), + [anon_sym_DOT_DOT] = ACTIONS(2258), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_move] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [sym_integer_literal] = ACTIONS(2258), + [aux_sym_string_literal_token1] = ACTIONS(2258), + [sym_char_literal] = ACTIONS(2258), + [anon_sym_true] = ACTIONS(2260), + [anon_sym_false] = ACTIONS(2260), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_crate] = ACTIONS(2260), + [sym_metavariable] = ACTIONS(2258), + [sym_raw_string_literal] = ACTIONS(2258), + [sym_float_literal] = ACTIONS(2258), }, [622] = { + [sym_attribute_item] = STATE(1461), + [sym_inner_attribute_item] = STATE(1461), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_match_arm] = STATE(1462), + [sym_last_match_arm] = STATE(3386), + [sym_match_pattern] = STATE(3553), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2280), - [sym_identifier] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_macro_rules_BANG] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2280), - [anon_sym_u8] = ACTIONS(2282), - [anon_sym_i8] = ACTIONS(2282), - [anon_sym_u16] = ACTIONS(2282), - [anon_sym_i16] = ACTIONS(2282), - [anon_sym_u32] = ACTIONS(2282), - [anon_sym_i32] = ACTIONS(2282), - [anon_sym_u64] = ACTIONS(2282), - [anon_sym_i64] = ACTIONS(2282), - [anon_sym_u128] = ACTIONS(2282), - [anon_sym_i128] = ACTIONS(2282), - [anon_sym_isize] = ACTIONS(2282), - [anon_sym_usize] = ACTIONS(2282), - [anon_sym_f32] = ACTIONS(2282), - [anon_sym_f64] = ACTIONS(2282), - [anon_sym_bool] = ACTIONS(2282), - [anon_sym_str] = ACTIONS(2282), - [anon_sym_char] = ACTIONS(2282), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_COLON_COLON] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_AMP] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2282), - [anon_sym_async] = ACTIONS(2282), - [anon_sym_break] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(2282), - [anon_sym_continue] = ACTIONS(2282), - [anon_sym_default] = ACTIONS(2282), - [anon_sym_enum] = ACTIONS(2282), - [anon_sym_fn] = ACTIONS(2282), - [anon_sym_for] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2282), - [anon_sym_impl] = ACTIONS(2282), - [anon_sym_let] = ACTIONS(2282), - [anon_sym_loop] = ACTIONS(2282), - [anon_sym_match] = ACTIONS(2282), - [anon_sym_mod] = ACTIONS(2282), - [anon_sym_pub] = ACTIONS(2282), - [anon_sym_return] = ACTIONS(2282), - [anon_sym_static] = ACTIONS(2282), - [anon_sym_struct] = ACTIONS(2282), - [anon_sym_trait] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2282), - [anon_sym_union] = ACTIONS(2282), - [anon_sym_unsafe] = ACTIONS(2282), - [anon_sym_use] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2282), - [anon_sym_extern] = ACTIONS(2282), - [anon_sym_DOT_DOT] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2282), - [anon_sym_move] = ACTIONS(2282), - [anon_sym_try] = ACTIONS(2282), - [sym_integer_literal] = ACTIONS(2280), - [aux_sym_string_literal_token1] = ACTIONS(2280), - [sym_char_literal] = ACTIONS(2280), - [anon_sym_true] = ACTIONS(2282), - [anon_sym_false] = ACTIONS(2282), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2282), - [sym_super] = ACTIONS(2282), - [sym_crate] = ACTIONS(2282), - [sym_metavariable] = ACTIONS(2280), - [sym_raw_string_literal] = ACTIONS(2280), - [sym_float_literal] = ACTIONS(2280), + [aux_sym_match_block_repeat1] = STATE(747), + [aux_sym_match_arm_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), }, [623] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2284), - [sym_identifier] = ACTIONS(2286), - [anon_sym_SEMI] = ACTIONS(2284), - [anon_sym_macro_rules_BANG] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2284), - [anon_sym_RBRACE] = ACTIONS(2284), - [anon_sym_STAR] = ACTIONS(2284), - [anon_sym_u8] = ACTIONS(2286), - [anon_sym_i8] = ACTIONS(2286), - [anon_sym_u16] = ACTIONS(2286), - [anon_sym_i16] = ACTIONS(2286), - [anon_sym_u32] = ACTIONS(2286), - [anon_sym_i32] = ACTIONS(2286), - [anon_sym_u64] = ACTIONS(2286), - [anon_sym_i64] = ACTIONS(2286), - [anon_sym_u128] = ACTIONS(2286), - [anon_sym_i128] = ACTIONS(2286), - [anon_sym_isize] = ACTIONS(2286), - [anon_sym_usize] = ACTIONS(2286), - [anon_sym_f32] = ACTIONS(2286), - [anon_sym_f64] = ACTIONS(2286), - [anon_sym_bool] = ACTIONS(2286), - [anon_sym_str] = ACTIONS(2286), - [anon_sym_char] = ACTIONS(2286), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_COLON_COLON] = ACTIONS(2284), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_POUND] = ACTIONS(2284), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_SQUOTE] = ACTIONS(2286), - [anon_sym_async] = ACTIONS(2286), - [anon_sym_break] = ACTIONS(2286), - [anon_sym_const] = ACTIONS(2286), - [anon_sym_continue] = ACTIONS(2286), - [anon_sym_default] = ACTIONS(2286), - [anon_sym_enum] = ACTIONS(2286), - [anon_sym_fn] = ACTIONS(2286), - [anon_sym_for] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2286), - [anon_sym_impl] = ACTIONS(2286), - [anon_sym_let] = ACTIONS(2286), - [anon_sym_loop] = ACTIONS(2286), - [anon_sym_match] = ACTIONS(2286), - [anon_sym_mod] = ACTIONS(2286), - [anon_sym_pub] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2286), - [anon_sym_static] = ACTIONS(2286), - [anon_sym_struct] = ACTIONS(2286), - [anon_sym_trait] = ACTIONS(2286), - [anon_sym_type] = ACTIONS(2286), - [anon_sym_union] = ACTIONS(2286), - [anon_sym_unsafe] = ACTIONS(2286), - [anon_sym_use] = ACTIONS(2286), - [anon_sym_while] = ACTIONS(2286), - [anon_sym_extern] = ACTIONS(2286), - [anon_sym_DOT_DOT] = ACTIONS(2284), - [anon_sym_yield] = ACTIONS(2286), - [anon_sym_move] = ACTIONS(2286), - [anon_sym_try] = ACTIONS(2286), - [sym_integer_literal] = ACTIONS(2284), - [aux_sym_string_literal_token1] = ACTIONS(2284), - [sym_char_literal] = ACTIONS(2284), - [anon_sym_true] = ACTIONS(2286), - [anon_sym_false] = ACTIONS(2286), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2286), - [sym_super] = ACTIONS(2286), - [sym_crate] = ACTIONS(2286), - [sym_metavariable] = ACTIONS(2284), - [sym_raw_string_literal] = ACTIONS(2284), - [sym_float_literal] = ACTIONS(2284), + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2262), + [anon_sym_macro_rules_BANG] = ACTIONS(2262), + [anon_sym_LPAREN] = ACTIONS(2262), + [anon_sym_LBRACK] = ACTIONS(2262), + [anon_sym_LBRACE] = ACTIONS(2262), + [anon_sym_RBRACE] = ACTIONS(2262), + [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_u8] = ACTIONS(2264), + [anon_sym_i8] = ACTIONS(2264), + [anon_sym_u16] = ACTIONS(2264), + [anon_sym_i16] = ACTIONS(2264), + [anon_sym_u32] = ACTIONS(2264), + [anon_sym_i32] = ACTIONS(2264), + [anon_sym_u64] = ACTIONS(2264), + [anon_sym_i64] = ACTIONS(2264), + [anon_sym_u128] = ACTIONS(2264), + [anon_sym_i128] = ACTIONS(2264), + [anon_sym_isize] = ACTIONS(2264), + [anon_sym_usize] = ACTIONS(2264), + [anon_sym_f32] = ACTIONS(2264), + [anon_sym_f64] = ACTIONS(2264), + [anon_sym_bool] = ACTIONS(2264), + [anon_sym_str] = ACTIONS(2264), + [anon_sym_char] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2262), + [anon_sym_COLON_COLON] = ACTIONS(2262), + [anon_sym_BANG] = ACTIONS(2262), + [anon_sym_AMP] = ACTIONS(2262), + [anon_sym_POUND] = ACTIONS(2262), + [anon_sym_LT] = ACTIONS(2262), + [anon_sym_PIPE] = ACTIONS(2262), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [anon_sym_fn] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_impl] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_loop] = ACTIONS(2264), + [anon_sym_match] = ACTIONS(2264), + [anon_sym_mod] = ACTIONS(2264), + [anon_sym_pub] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_struct] = ACTIONS(2264), + [anon_sym_trait] = ACTIONS(2264), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_union] = ACTIONS(2264), + [anon_sym_unsafe] = ACTIONS(2264), + [anon_sym_use] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_extern] = ACTIONS(2264), + [anon_sym_DOT_DOT] = ACTIONS(2262), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_move] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [sym_integer_literal] = ACTIONS(2262), + [aux_sym_string_literal_token1] = ACTIONS(2262), + [sym_char_literal] = ACTIONS(2262), + [anon_sym_true] = ACTIONS(2264), + [anon_sym_false] = ACTIONS(2264), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_crate] = ACTIONS(2264), + [sym_metavariable] = ACTIONS(2262), + [sym_raw_string_literal] = ACTIONS(2262), + [sym_float_literal] = ACTIONS(2262), }, [624] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2288), - [sym_identifier] = ACTIONS(2290), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_macro_rules_BANG] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_u8] = ACTIONS(2290), - [anon_sym_i8] = ACTIONS(2290), - [anon_sym_u16] = ACTIONS(2290), - [anon_sym_i16] = ACTIONS(2290), - [anon_sym_u32] = ACTIONS(2290), - [anon_sym_i32] = ACTIONS(2290), - [anon_sym_u64] = ACTIONS(2290), - [anon_sym_i64] = ACTIONS(2290), - [anon_sym_u128] = ACTIONS(2290), - [anon_sym_i128] = ACTIONS(2290), - [anon_sym_isize] = ACTIONS(2290), - [anon_sym_usize] = ACTIONS(2290), - [anon_sym_f32] = ACTIONS(2290), - [anon_sym_f64] = ACTIONS(2290), - [anon_sym_bool] = ACTIONS(2290), - [anon_sym_str] = ACTIONS(2290), - [anon_sym_char] = ACTIONS(2290), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_COLON_COLON] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_POUND] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_PIPE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2290), - [anon_sym_async] = ACTIONS(2290), - [anon_sym_break] = ACTIONS(2290), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_continue] = ACTIONS(2290), - [anon_sym_default] = ACTIONS(2290), - [anon_sym_enum] = ACTIONS(2290), - [anon_sym_fn] = ACTIONS(2290), - [anon_sym_for] = ACTIONS(2290), - [anon_sym_if] = ACTIONS(2290), - [anon_sym_impl] = ACTIONS(2290), - [anon_sym_let] = ACTIONS(2290), - [anon_sym_loop] = ACTIONS(2290), - [anon_sym_match] = ACTIONS(2290), - [anon_sym_mod] = ACTIONS(2290), - [anon_sym_pub] = ACTIONS(2290), - [anon_sym_return] = ACTIONS(2290), - [anon_sym_static] = ACTIONS(2290), - [anon_sym_struct] = ACTIONS(2290), - [anon_sym_trait] = ACTIONS(2290), - [anon_sym_type] = ACTIONS(2290), - [anon_sym_union] = ACTIONS(2290), - [anon_sym_unsafe] = ACTIONS(2290), - [anon_sym_use] = ACTIONS(2290), - [anon_sym_while] = ACTIONS(2290), - [anon_sym_extern] = ACTIONS(2290), - [anon_sym_DOT_DOT] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2290), - [anon_sym_move] = ACTIONS(2290), - [anon_sym_try] = ACTIONS(2290), - [sym_integer_literal] = ACTIONS(2288), - [aux_sym_string_literal_token1] = ACTIONS(2288), - [sym_char_literal] = ACTIONS(2288), - [anon_sym_true] = ACTIONS(2290), - [anon_sym_false] = ACTIONS(2290), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2290), - [sym_super] = ACTIONS(2290), - [sym_crate] = ACTIONS(2290), - [sym_metavariable] = ACTIONS(2288), - [sym_raw_string_literal] = ACTIONS(2288), - [sym_float_literal] = ACTIONS(2288), + [ts_builtin_sym_end] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2268), + [anon_sym_SEMI] = ACTIONS(2266), + [anon_sym_macro_rules_BANG] = ACTIONS(2266), + [anon_sym_LPAREN] = ACTIONS(2266), + [anon_sym_LBRACK] = ACTIONS(2266), + [anon_sym_LBRACE] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2266), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_u8] = ACTIONS(2268), + [anon_sym_i8] = ACTIONS(2268), + [anon_sym_u16] = ACTIONS(2268), + [anon_sym_i16] = ACTIONS(2268), + [anon_sym_u32] = ACTIONS(2268), + [anon_sym_i32] = ACTIONS(2268), + [anon_sym_u64] = ACTIONS(2268), + [anon_sym_i64] = ACTIONS(2268), + [anon_sym_u128] = ACTIONS(2268), + [anon_sym_i128] = ACTIONS(2268), + [anon_sym_isize] = ACTIONS(2268), + [anon_sym_usize] = ACTIONS(2268), + [anon_sym_f32] = ACTIONS(2268), + [anon_sym_f64] = ACTIONS(2268), + [anon_sym_bool] = ACTIONS(2268), + [anon_sym_str] = ACTIONS(2268), + [anon_sym_char] = ACTIONS(2268), + [anon_sym_DASH] = ACTIONS(2266), + [anon_sym_COLON_COLON] = ACTIONS(2266), + [anon_sym_BANG] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_POUND] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_SQUOTE] = ACTIONS(2268), + [anon_sym_async] = ACTIONS(2268), + [anon_sym_break] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(2268), + [anon_sym_continue] = ACTIONS(2268), + [anon_sym_default] = ACTIONS(2268), + [anon_sym_enum] = ACTIONS(2268), + [anon_sym_fn] = ACTIONS(2268), + [anon_sym_for] = ACTIONS(2268), + [anon_sym_if] = ACTIONS(2268), + [anon_sym_impl] = ACTIONS(2268), + [anon_sym_let] = ACTIONS(2268), + [anon_sym_loop] = ACTIONS(2268), + [anon_sym_match] = ACTIONS(2268), + [anon_sym_mod] = ACTIONS(2268), + [anon_sym_pub] = ACTIONS(2268), + [anon_sym_return] = ACTIONS(2268), + [anon_sym_static] = ACTIONS(2268), + [anon_sym_struct] = ACTIONS(2268), + [anon_sym_trait] = ACTIONS(2268), + [anon_sym_type] = ACTIONS(2268), + [anon_sym_union] = ACTIONS(2268), + [anon_sym_unsafe] = ACTIONS(2268), + [anon_sym_use] = ACTIONS(2268), + [anon_sym_while] = ACTIONS(2268), + [anon_sym_extern] = ACTIONS(2268), + [anon_sym_DOT_DOT] = ACTIONS(2266), + [anon_sym_yield] = ACTIONS(2268), + [anon_sym_move] = ACTIONS(2268), + [anon_sym_try] = ACTIONS(2268), + [sym_integer_literal] = ACTIONS(2266), + [aux_sym_string_literal_token1] = ACTIONS(2266), + [sym_char_literal] = ACTIONS(2266), + [anon_sym_true] = ACTIONS(2268), + [anon_sym_false] = ACTIONS(2268), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2268), + [sym_super] = ACTIONS(2268), + [sym_crate] = ACTIONS(2268), + [sym_metavariable] = ACTIONS(2266), + [sym_raw_string_literal] = ACTIONS(2266), + [sym_float_literal] = ACTIONS(2266), }, [625] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2292), - [sym_identifier] = ACTIONS(2294), - [anon_sym_SEMI] = ACTIONS(2292), - [anon_sym_macro_rules_BANG] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2292), - [anon_sym_RBRACE] = ACTIONS(2292), - [anon_sym_STAR] = ACTIONS(2292), - [anon_sym_u8] = ACTIONS(2294), - [anon_sym_i8] = ACTIONS(2294), - [anon_sym_u16] = ACTIONS(2294), - [anon_sym_i16] = ACTIONS(2294), - [anon_sym_u32] = ACTIONS(2294), - [anon_sym_i32] = ACTIONS(2294), - [anon_sym_u64] = ACTIONS(2294), - [anon_sym_i64] = ACTIONS(2294), - [anon_sym_u128] = ACTIONS(2294), - [anon_sym_i128] = ACTIONS(2294), - [anon_sym_isize] = ACTIONS(2294), - [anon_sym_usize] = ACTIONS(2294), - [anon_sym_f32] = ACTIONS(2294), - [anon_sym_f64] = ACTIONS(2294), - [anon_sym_bool] = ACTIONS(2294), - [anon_sym_str] = ACTIONS(2294), - [anon_sym_char] = ACTIONS(2294), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_COLON_COLON] = ACTIONS(2292), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_AMP] = ACTIONS(2292), - [anon_sym_POUND] = ACTIONS(2292), - [anon_sym_LT] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_SQUOTE] = ACTIONS(2294), - [anon_sym_async] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_default] = ACTIONS(2294), - [anon_sym_enum] = ACTIONS(2294), - [anon_sym_fn] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_impl] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_loop] = ACTIONS(2294), - [anon_sym_match] = ACTIONS(2294), - [anon_sym_mod] = ACTIONS(2294), - [anon_sym_pub] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_static] = ACTIONS(2294), - [anon_sym_struct] = ACTIONS(2294), - [anon_sym_trait] = ACTIONS(2294), - [anon_sym_type] = ACTIONS(2294), - [anon_sym_union] = ACTIONS(2294), - [anon_sym_unsafe] = ACTIONS(2294), - [anon_sym_use] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_extern] = ACTIONS(2294), - [anon_sym_DOT_DOT] = ACTIONS(2292), - [anon_sym_yield] = ACTIONS(2294), - [anon_sym_move] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2294), - [sym_integer_literal] = ACTIONS(2292), - [aux_sym_string_literal_token1] = ACTIONS(2292), - [sym_char_literal] = ACTIONS(2292), - [anon_sym_true] = ACTIONS(2294), - [anon_sym_false] = ACTIONS(2294), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2294), - [sym_super] = ACTIONS(2294), - [sym_crate] = ACTIONS(2294), - [sym_metavariable] = ACTIONS(2292), - [sym_raw_string_literal] = ACTIONS(2292), - [sym_float_literal] = ACTIONS(2292), + [ts_builtin_sym_end] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_macro_rules_BANG] = ACTIONS(2270), + [anon_sym_LPAREN] = ACTIONS(2270), + [anon_sym_LBRACK] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_RBRACE] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(2270), + [anon_sym_u8] = ACTIONS(2272), + [anon_sym_i8] = ACTIONS(2272), + [anon_sym_u16] = ACTIONS(2272), + [anon_sym_i16] = ACTIONS(2272), + [anon_sym_u32] = ACTIONS(2272), + [anon_sym_i32] = ACTIONS(2272), + [anon_sym_u64] = ACTIONS(2272), + [anon_sym_i64] = ACTIONS(2272), + [anon_sym_u128] = ACTIONS(2272), + [anon_sym_i128] = ACTIONS(2272), + [anon_sym_isize] = ACTIONS(2272), + [anon_sym_usize] = ACTIONS(2272), + [anon_sym_f32] = ACTIONS(2272), + [anon_sym_f64] = ACTIONS(2272), + [anon_sym_bool] = ACTIONS(2272), + [anon_sym_str] = ACTIONS(2272), + [anon_sym_char] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_COLON_COLON] = ACTIONS(2270), + [anon_sym_BANG] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2270), + [anon_sym_POUND] = ACTIONS(2270), + [anon_sym_LT] = ACTIONS(2270), + [anon_sym_PIPE] = ACTIONS(2270), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [anon_sym_fn] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_impl] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_loop] = ACTIONS(2272), + [anon_sym_match] = ACTIONS(2272), + [anon_sym_mod] = ACTIONS(2272), + [anon_sym_pub] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_struct] = ACTIONS(2272), + [anon_sym_trait] = ACTIONS(2272), + [anon_sym_type] = ACTIONS(2272), + [anon_sym_union] = ACTIONS(2272), + [anon_sym_unsafe] = ACTIONS(2272), + [anon_sym_use] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_extern] = ACTIONS(2272), + [anon_sym_DOT_DOT] = ACTIONS(2270), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_move] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [sym_integer_literal] = ACTIONS(2270), + [aux_sym_string_literal_token1] = ACTIONS(2270), + [sym_char_literal] = ACTIONS(2270), + [anon_sym_true] = ACTIONS(2272), + [anon_sym_false] = ACTIONS(2272), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_crate] = ACTIONS(2272), + [sym_metavariable] = ACTIONS(2270), + [sym_raw_string_literal] = ACTIONS(2270), + [sym_float_literal] = ACTIONS(2270), }, [626] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2296), - [sym_identifier] = ACTIONS(2298), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_macro_rules_BANG] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_u8] = ACTIONS(2298), - [anon_sym_i8] = ACTIONS(2298), - [anon_sym_u16] = ACTIONS(2298), - [anon_sym_i16] = ACTIONS(2298), - [anon_sym_u32] = ACTIONS(2298), - [anon_sym_i32] = ACTIONS(2298), - [anon_sym_u64] = ACTIONS(2298), - [anon_sym_i64] = ACTIONS(2298), - [anon_sym_u128] = ACTIONS(2298), - [anon_sym_i128] = ACTIONS(2298), - [anon_sym_isize] = ACTIONS(2298), - [anon_sym_usize] = ACTIONS(2298), - [anon_sym_f32] = ACTIONS(2298), - [anon_sym_f64] = ACTIONS(2298), - [anon_sym_bool] = ACTIONS(2298), - [anon_sym_str] = ACTIONS(2298), - [anon_sym_char] = ACTIONS(2298), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_COLON_COLON] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2298), - [anon_sym_async] = ACTIONS(2298), - [anon_sym_break] = ACTIONS(2298), - [anon_sym_const] = ACTIONS(2298), - [anon_sym_continue] = ACTIONS(2298), - [anon_sym_default] = ACTIONS(2298), - [anon_sym_enum] = ACTIONS(2298), - [anon_sym_fn] = ACTIONS(2298), - [anon_sym_for] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2298), - [anon_sym_impl] = ACTIONS(2298), - [anon_sym_let] = ACTIONS(2298), - [anon_sym_loop] = ACTIONS(2298), - [anon_sym_match] = ACTIONS(2298), - [anon_sym_mod] = ACTIONS(2298), - [anon_sym_pub] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2298), - [anon_sym_static] = ACTIONS(2298), - [anon_sym_struct] = ACTIONS(2298), - [anon_sym_trait] = ACTIONS(2298), - [anon_sym_type] = ACTIONS(2298), - [anon_sym_union] = ACTIONS(2298), - [anon_sym_unsafe] = ACTIONS(2298), - [anon_sym_use] = ACTIONS(2298), - [anon_sym_while] = ACTIONS(2298), - [anon_sym_extern] = ACTIONS(2298), - [anon_sym_DOT_DOT] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2298), - [anon_sym_move] = ACTIONS(2298), - [anon_sym_try] = ACTIONS(2298), - [sym_integer_literal] = ACTIONS(2296), - [aux_sym_string_literal_token1] = ACTIONS(2296), - [sym_char_literal] = ACTIONS(2296), - [anon_sym_true] = ACTIONS(2298), - [anon_sym_false] = ACTIONS(2298), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2298), - [sym_super] = ACTIONS(2298), - [sym_crate] = ACTIONS(2298), - [sym_metavariable] = ACTIONS(2296), - [sym_raw_string_literal] = ACTIONS(2296), - [sym_float_literal] = ACTIONS(2296), + [ts_builtin_sym_end] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2276), + [anon_sym_SEMI] = ACTIONS(2274), + [anon_sym_macro_rules_BANG] = ACTIONS(2274), + [anon_sym_LPAREN] = ACTIONS(2274), + [anon_sym_LBRACK] = ACTIONS(2274), + [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2274), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_u8] = ACTIONS(2276), + [anon_sym_i8] = ACTIONS(2276), + [anon_sym_u16] = ACTIONS(2276), + [anon_sym_i16] = ACTIONS(2276), + [anon_sym_u32] = ACTIONS(2276), + [anon_sym_i32] = ACTIONS(2276), + [anon_sym_u64] = ACTIONS(2276), + [anon_sym_i64] = ACTIONS(2276), + [anon_sym_u128] = ACTIONS(2276), + [anon_sym_i128] = ACTIONS(2276), + [anon_sym_isize] = ACTIONS(2276), + [anon_sym_usize] = ACTIONS(2276), + [anon_sym_f32] = ACTIONS(2276), + [anon_sym_f64] = ACTIONS(2276), + [anon_sym_bool] = ACTIONS(2276), + [anon_sym_str] = ACTIONS(2276), + [anon_sym_char] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2274), + [anon_sym_COLON_COLON] = ACTIONS(2274), + [anon_sym_BANG] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_POUND] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_SQUOTE] = ACTIONS(2276), + [anon_sym_async] = ACTIONS(2276), + [anon_sym_break] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(2276), + [anon_sym_continue] = ACTIONS(2276), + [anon_sym_default] = ACTIONS(2276), + [anon_sym_enum] = ACTIONS(2276), + [anon_sym_fn] = ACTIONS(2276), + [anon_sym_for] = ACTIONS(2276), + [anon_sym_if] = ACTIONS(2276), + [anon_sym_impl] = ACTIONS(2276), + [anon_sym_let] = ACTIONS(2276), + [anon_sym_loop] = ACTIONS(2276), + [anon_sym_match] = ACTIONS(2276), + [anon_sym_mod] = ACTIONS(2276), + [anon_sym_pub] = ACTIONS(2276), + [anon_sym_return] = ACTIONS(2276), + [anon_sym_static] = ACTIONS(2276), + [anon_sym_struct] = ACTIONS(2276), + [anon_sym_trait] = ACTIONS(2276), + [anon_sym_type] = ACTIONS(2276), + [anon_sym_union] = ACTIONS(2276), + [anon_sym_unsafe] = ACTIONS(2276), + [anon_sym_use] = ACTIONS(2276), + [anon_sym_while] = ACTIONS(2276), + [anon_sym_extern] = ACTIONS(2276), + [anon_sym_DOT_DOT] = ACTIONS(2274), + [anon_sym_yield] = ACTIONS(2276), + [anon_sym_move] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(2276), + [sym_integer_literal] = ACTIONS(2274), + [aux_sym_string_literal_token1] = ACTIONS(2274), + [sym_char_literal] = ACTIONS(2274), + [anon_sym_true] = ACTIONS(2276), + [anon_sym_false] = ACTIONS(2276), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2276), + [sym_super] = ACTIONS(2276), + [sym_crate] = ACTIONS(2276), + [sym_metavariable] = ACTIONS(2274), + [sym_raw_string_literal] = ACTIONS(2274), + [sym_float_literal] = ACTIONS(2274), }, [627] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(2300), - [sym_identifier] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2300), - [anon_sym_macro_rules_BANG] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2300), - [anon_sym_RBRACE] = ACTIONS(2300), - [anon_sym_STAR] = ACTIONS(2300), - [anon_sym_u8] = ACTIONS(2302), - [anon_sym_i8] = ACTIONS(2302), - [anon_sym_u16] = ACTIONS(2302), - [anon_sym_i16] = ACTIONS(2302), - [anon_sym_u32] = ACTIONS(2302), - [anon_sym_i32] = ACTIONS(2302), - [anon_sym_u64] = ACTIONS(2302), - [anon_sym_i64] = ACTIONS(2302), - [anon_sym_u128] = ACTIONS(2302), - [anon_sym_i128] = ACTIONS(2302), - [anon_sym_isize] = ACTIONS(2302), - [anon_sym_usize] = ACTIONS(2302), - [anon_sym_f32] = ACTIONS(2302), - [anon_sym_f64] = ACTIONS(2302), - [anon_sym_bool] = ACTIONS(2302), - [anon_sym_str] = ACTIONS(2302), - [anon_sym_char] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_COLON_COLON] = ACTIONS(2300), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_POUND] = ACTIONS(2300), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [anon_sym_fn] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_impl] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_loop] = ACTIONS(2302), - [anon_sym_match] = ACTIONS(2302), - [anon_sym_mod] = ACTIONS(2302), - [anon_sym_pub] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_struct] = ACTIONS(2302), - [anon_sym_trait] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_union] = ACTIONS(2302), - [anon_sym_unsafe] = ACTIONS(2302), - [anon_sym_use] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_extern] = ACTIONS(2302), - [anon_sym_DOT_DOT] = ACTIONS(2300), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_move] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [sym_integer_literal] = ACTIONS(2300), - [aux_sym_string_literal_token1] = ACTIONS(2300), - [sym_char_literal] = ACTIONS(2300), - [anon_sym_true] = ACTIONS(2302), - [anon_sym_false] = ACTIONS(2302), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_crate] = ACTIONS(2302), - [sym_metavariable] = ACTIONS(2300), - [sym_raw_string_literal] = ACTIONS(2300), - [sym_float_literal] = ACTIONS(2300), + [ts_builtin_sym_end] = ACTIONS(2278), + [sym_identifier] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_macro_rules_BANG] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(2278), + [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_RBRACE] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(2278), + [anon_sym_u8] = ACTIONS(2280), + [anon_sym_i8] = ACTIONS(2280), + [anon_sym_u16] = ACTIONS(2280), + [anon_sym_i16] = ACTIONS(2280), + [anon_sym_u32] = ACTIONS(2280), + [anon_sym_i32] = ACTIONS(2280), + [anon_sym_u64] = ACTIONS(2280), + [anon_sym_i64] = ACTIONS(2280), + [anon_sym_u128] = ACTIONS(2280), + [anon_sym_i128] = ACTIONS(2280), + [anon_sym_isize] = ACTIONS(2280), + [anon_sym_usize] = ACTIONS(2280), + [anon_sym_f32] = ACTIONS(2280), + [anon_sym_f64] = ACTIONS(2280), + [anon_sym_bool] = ACTIONS(2280), + [anon_sym_str] = ACTIONS(2280), + [anon_sym_char] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2278), + [anon_sym_COLON_COLON] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(2278), + [anon_sym_LT] = ACTIONS(2278), + [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_SQUOTE] = ACTIONS(2280), + [anon_sym_async] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_default] = ACTIONS(2280), + [anon_sym_enum] = ACTIONS(2280), + [anon_sym_fn] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_impl] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_loop] = ACTIONS(2280), + [anon_sym_match] = ACTIONS(2280), + [anon_sym_mod] = ACTIONS(2280), + [anon_sym_pub] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(2280), + [anon_sym_struct] = ACTIONS(2280), + [anon_sym_trait] = ACTIONS(2280), + [anon_sym_type] = ACTIONS(2280), + [anon_sym_union] = ACTIONS(2280), + [anon_sym_unsafe] = ACTIONS(2280), + [anon_sym_use] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_extern] = ACTIONS(2280), + [anon_sym_DOT_DOT] = ACTIONS(2278), + [anon_sym_yield] = ACTIONS(2280), + [anon_sym_move] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [sym_integer_literal] = ACTIONS(2278), + [aux_sym_string_literal_token1] = ACTIONS(2278), + [sym_char_literal] = ACTIONS(2278), + [anon_sym_true] = ACTIONS(2280), + [anon_sym_false] = ACTIONS(2280), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2280), + [sym_super] = ACTIONS(2280), + [sym_crate] = ACTIONS(2280), + [sym_metavariable] = ACTIONS(2278), + [sym_raw_string_literal] = ACTIONS(2278), + [sym_float_literal] = ACTIONS(2278), }, [628] = { [sym_line_comment] = STATE(628), [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2304), - [sym_identifier] = ACTIONS(2306), - [anon_sym_SEMI] = ACTIONS(2304), - [anon_sym_macro_rules_BANG] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_u8] = ACTIONS(2306), - [anon_sym_i8] = ACTIONS(2306), - [anon_sym_u16] = ACTIONS(2306), - [anon_sym_i16] = ACTIONS(2306), - [anon_sym_u32] = ACTIONS(2306), - [anon_sym_i32] = ACTIONS(2306), - [anon_sym_u64] = ACTIONS(2306), - [anon_sym_i64] = ACTIONS(2306), - [anon_sym_u128] = ACTIONS(2306), - [anon_sym_i128] = ACTIONS(2306), - [anon_sym_isize] = ACTIONS(2306), - [anon_sym_usize] = ACTIONS(2306), - [anon_sym_f32] = ACTIONS(2306), - [anon_sym_f64] = ACTIONS(2306), - [anon_sym_bool] = ACTIONS(2306), - [anon_sym_str] = ACTIONS(2306), - [anon_sym_char] = ACTIONS(2306), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_COLON_COLON] = ACTIONS(2304), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_POUND] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_SQUOTE] = ACTIONS(2306), - [anon_sym_async] = ACTIONS(2306), - [anon_sym_break] = ACTIONS(2306), - [anon_sym_const] = ACTIONS(2306), - [anon_sym_continue] = ACTIONS(2306), - [anon_sym_default] = ACTIONS(2306), - [anon_sym_enum] = ACTIONS(2306), - [anon_sym_fn] = ACTIONS(2306), - [anon_sym_for] = ACTIONS(2306), - [anon_sym_if] = ACTIONS(2306), - [anon_sym_impl] = ACTIONS(2306), - [anon_sym_let] = ACTIONS(2306), - [anon_sym_loop] = ACTIONS(2306), - [anon_sym_match] = ACTIONS(2306), - [anon_sym_mod] = ACTIONS(2306), - [anon_sym_pub] = ACTIONS(2306), - [anon_sym_return] = ACTIONS(2306), - [anon_sym_static] = ACTIONS(2306), - [anon_sym_struct] = ACTIONS(2306), - [anon_sym_trait] = ACTIONS(2306), - [anon_sym_type] = ACTIONS(2306), - [anon_sym_union] = ACTIONS(2306), - [anon_sym_unsafe] = ACTIONS(2306), - [anon_sym_use] = ACTIONS(2306), - [anon_sym_while] = ACTIONS(2306), - [anon_sym_extern] = ACTIONS(2306), - [anon_sym_DOT_DOT] = ACTIONS(2304), - [anon_sym_yield] = ACTIONS(2306), - [anon_sym_move] = ACTIONS(2306), - [anon_sym_try] = ACTIONS(2306), - [sym_integer_literal] = ACTIONS(2304), - [aux_sym_string_literal_token1] = ACTIONS(2304), - [sym_char_literal] = ACTIONS(2304), - [anon_sym_true] = ACTIONS(2306), - [anon_sym_false] = ACTIONS(2306), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2306), - [sym_super] = ACTIONS(2306), - [sym_crate] = ACTIONS(2306), - [sym_metavariable] = ACTIONS(2304), - [sym_raw_string_literal] = ACTIONS(2304), - [sym_float_literal] = ACTIONS(2304), + [ts_builtin_sym_end] = ACTIONS(2282), + [sym_identifier] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_macro_rules_BANG] = ACTIONS(2282), + [anon_sym_LPAREN] = ACTIONS(2282), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_RBRACE] = ACTIONS(2282), + [anon_sym_STAR] = ACTIONS(2282), + [anon_sym_u8] = ACTIONS(2284), + [anon_sym_i8] = ACTIONS(2284), + [anon_sym_u16] = ACTIONS(2284), + [anon_sym_i16] = ACTIONS(2284), + [anon_sym_u32] = ACTIONS(2284), + [anon_sym_i32] = ACTIONS(2284), + [anon_sym_u64] = ACTIONS(2284), + [anon_sym_i64] = ACTIONS(2284), + [anon_sym_u128] = ACTIONS(2284), + [anon_sym_i128] = ACTIONS(2284), + [anon_sym_isize] = ACTIONS(2284), + [anon_sym_usize] = ACTIONS(2284), + [anon_sym_f32] = ACTIONS(2284), + [anon_sym_f64] = ACTIONS(2284), + [anon_sym_bool] = ACTIONS(2284), + [anon_sym_str] = ACTIONS(2284), + [anon_sym_char] = ACTIONS(2284), + [anon_sym_DASH] = ACTIONS(2282), + [anon_sym_COLON_COLON] = ACTIONS(2282), + [anon_sym_BANG] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_POUND] = ACTIONS(2282), + [anon_sym_LT] = ACTIONS(2282), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_SQUOTE] = ACTIONS(2284), + [anon_sym_async] = ACTIONS(2284), + [anon_sym_break] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(2284), + [anon_sym_continue] = ACTIONS(2284), + [anon_sym_default] = ACTIONS(2284), + [anon_sym_enum] = ACTIONS(2284), + [anon_sym_fn] = ACTIONS(2284), + [anon_sym_for] = ACTIONS(2284), + [anon_sym_if] = ACTIONS(2284), + [anon_sym_impl] = ACTIONS(2284), + [anon_sym_let] = ACTIONS(2284), + [anon_sym_loop] = ACTIONS(2284), + [anon_sym_match] = ACTIONS(2284), + [anon_sym_mod] = ACTIONS(2284), + [anon_sym_pub] = ACTIONS(2284), + [anon_sym_return] = ACTIONS(2284), + [anon_sym_static] = ACTIONS(2284), + [anon_sym_struct] = ACTIONS(2284), + [anon_sym_trait] = ACTIONS(2284), + [anon_sym_type] = ACTIONS(2284), + [anon_sym_union] = ACTIONS(2284), + [anon_sym_unsafe] = ACTIONS(2284), + [anon_sym_use] = ACTIONS(2284), + [anon_sym_while] = ACTIONS(2284), + [anon_sym_extern] = ACTIONS(2284), + [anon_sym_DOT_DOT] = ACTIONS(2282), + [anon_sym_yield] = ACTIONS(2284), + [anon_sym_move] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2284), + [sym_integer_literal] = ACTIONS(2282), + [aux_sym_string_literal_token1] = ACTIONS(2282), + [sym_char_literal] = ACTIONS(2282), + [anon_sym_true] = ACTIONS(2284), + [anon_sym_false] = ACTIONS(2284), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2284), + [sym_super] = ACTIONS(2284), + [sym_crate] = ACTIONS(2284), + [sym_metavariable] = ACTIONS(2282), + [sym_raw_string_literal] = ACTIONS(2282), + [sym_float_literal] = ACTIONS(2282), }, [629] = { [sym_line_comment] = STATE(629), [sym_block_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(2308), - [sym_identifier] = ACTIONS(2310), - [anon_sym_SEMI] = ACTIONS(2308), - [anon_sym_macro_rules_BANG] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2308), - [anon_sym_RBRACE] = ACTIONS(2308), - [anon_sym_STAR] = ACTIONS(2308), - [anon_sym_u8] = ACTIONS(2310), - [anon_sym_i8] = ACTIONS(2310), - [anon_sym_u16] = ACTIONS(2310), - [anon_sym_i16] = ACTIONS(2310), - [anon_sym_u32] = ACTIONS(2310), - [anon_sym_i32] = ACTIONS(2310), - [anon_sym_u64] = ACTIONS(2310), - [anon_sym_i64] = ACTIONS(2310), - [anon_sym_u128] = ACTIONS(2310), - [anon_sym_i128] = ACTIONS(2310), - [anon_sym_isize] = ACTIONS(2310), - [anon_sym_usize] = ACTIONS(2310), - [anon_sym_f32] = ACTIONS(2310), - [anon_sym_f64] = ACTIONS(2310), - [anon_sym_bool] = ACTIONS(2310), - [anon_sym_str] = ACTIONS(2310), - [anon_sym_char] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_COLON_COLON] = ACTIONS(2308), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_AMP] = ACTIONS(2308), - [anon_sym_POUND] = ACTIONS(2308), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_break] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_continue] = ACTIONS(2310), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [anon_sym_fn] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_impl] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_loop] = ACTIONS(2310), - [anon_sym_match] = ACTIONS(2310), - [anon_sym_mod] = ACTIONS(2310), - [anon_sym_pub] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2310), - [anon_sym_static] = ACTIONS(2310), - [anon_sym_struct] = ACTIONS(2310), - [anon_sym_trait] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_union] = ACTIONS(2310), - [anon_sym_unsafe] = ACTIONS(2310), - [anon_sym_use] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_extern] = ACTIONS(2310), - [anon_sym_DOT_DOT] = ACTIONS(2308), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_move] = ACTIONS(2310), - [anon_sym_try] = ACTIONS(2310), - [sym_integer_literal] = ACTIONS(2308), - [aux_sym_string_literal_token1] = ACTIONS(2308), - [sym_char_literal] = ACTIONS(2308), - [anon_sym_true] = ACTIONS(2310), - [anon_sym_false] = ACTIONS(2310), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2310), - [sym_super] = ACTIONS(2310), - [sym_crate] = ACTIONS(2310), - [sym_metavariable] = ACTIONS(2308), - [sym_raw_string_literal] = ACTIONS(2308), - [sym_float_literal] = ACTIONS(2308), + [ts_builtin_sym_end] = ACTIONS(2286), + [sym_identifier] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2286), + [anon_sym_macro_rules_BANG] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_LBRACK] = ACTIONS(2286), + [anon_sym_LBRACE] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_STAR] = ACTIONS(2286), + [anon_sym_u8] = ACTIONS(2288), + [anon_sym_i8] = ACTIONS(2288), + [anon_sym_u16] = ACTIONS(2288), + [anon_sym_i16] = ACTIONS(2288), + [anon_sym_u32] = ACTIONS(2288), + [anon_sym_i32] = ACTIONS(2288), + [anon_sym_u64] = ACTIONS(2288), + [anon_sym_i64] = ACTIONS(2288), + [anon_sym_u128] = ACTIONS(2288), + [anon_sym_i128] = ACTIONS(2288), + [anon_sym_isize] = ACTIONS(2288), + [anon_sym_usize] = ACTIONS(2288), + [anon_sym_f32] = ACTIONS(2288), + [anon_sym_f64] = ACTIONS(2288), + [anon_sym_bool] = ACTIONS(2288), + [anon_sym_str] = ACTIONS(2288), + [anon_sym_char] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2286), + [anon_sym_COLON_COLON] = ACTIONS(2286), + [anon_sym_BANG] = ACTIONS(2286), + [anon_sym_AMP] = ACTIONS(2286), + [anon_sym_POUND] = ACTIONS(2286), + [anon_sym_LT] = ACTIONS(2286), + [anon_sym_PIPE] = ACTIONS(2286), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [anon_sym_fn] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_impl] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_loop] = ACTIONS(2288), + [anon_sym_match] = ACTIONS(2288), + [anon_sym_mod] = ACTIONS(2288), + [anon_sym_pub] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_struct] = ACTIONS(2288), + [anon_sym_trait] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_union] = ACTIONS(2288), + [anon_sym_unsafe] = ACTIONS(2288), + [anon_sym_use] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_extern] = ACTIONS(2288), + [anon_sym_DOT_DOT] = ACTIONS(2286), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_move] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [sym_integer_literal] = ACTIONS(2286), + [aux_sym_string_literal_token1] = ACTIONS(2286), + [sym_char_literal] = ACTIONS(2286), + [anon_sym_true] = ACTIONS(2288), + [anon_sym_false] = ACTIONS(2288), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_crate] = ACTIONS(2288), + [sym_metavariable] = ACTIONS(2286), + [sym_raw_string_literal] = ACTIONS(2286), + [sym_float_literal] = ACTIONS(2286), }, [630] = { [sym_line_comment] = STATE(630), [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(2312), - [sym_identifier] = ACTIONS(2314), - [anon_sym_SEMI] = ACTIONS(2312), - [anon_sym_macro_rules_BANG] = ACTIONS(2312), - [anon_sym_LPAREN] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(2312), - [anon_sym_LBRACE] = ACTIONS(2312), - [anon_sym_RBRACE] = ACTIONS(2312), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_u8] = ACTIONS(2314), - [anon_sym_i8] = ACTIONS(2314), - [anon_sym_u16] = ACTIONS(2314), - [anon_sym_i16] = ACTIONS(2314), - [anon_sym_u32] = ACTIONS(2314), - [anon_sym_i32] = ACTIONS(2314), - [anon_sym_u64] = ACTIONS(2314), - [anon_sym_i64] = ACTIONS(2314), - [anon_sym_u128] = ACTIONS(2314), - [anon_sym_i128] = ACTIONS(2314), - [anon_sym_isize] = ACTIONS(2314), - [anon_sym_usize] = ACTIONS(2314), - [anon_sym_f32] = ACTIONS(2314), - [anon_sym_f64] = ACTIONS(2314), - [anon_sym_bool] = ACTIONS(2314), - [anon_sym_str] = ACTIONS(2314), - [anon_sym_char] = ACTIONS(2314), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_COLON_COLON] = ACTIONS(2312), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_POUND] = ACTIONS(2312), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_SQUOTE] = ACTIONS(2314), - [anon_sym_async] = ACTIONS(2314), - [anon_sym_break] = ACTIONS(2314), - [anon_sym_const] = ACTIONS(2314), - [anon_sym_continue] = ACTIONS(2314), - [anon_sym_default] = ACTIONS(2314), - [anon_sym_enum] = ACTIONS(2314), - [anon_sym_fn] = ACTIONS(2314), - [anon_sym_for] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2314), - [anon_sym_impl] = ACTIONS(2314), - [anon_sym_let] = ACTIONS(2314), - [anon_sym_loop] = ACTIONS(2314), - [anon_sym_match] = ACTIONS(2314), - [anon_sym_mod] = ACTIONS(2314), - [anon_sym_pub] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2314), - [anon_sym_static] = ACTIONS(2314), - [anon_sym_struct] = ACTIONS(2314), - [anon_sym_trait] = ACTIONS(2314), - [anon_sym_type] = ACTIONS(2314), - [anon_sym_union] = ACTIONS(2314), - [anon_sym_unsafe] = ACTIONS(2314), - [anon_sym_use] = ACTIONS(2314), - [anon_sym_while] = ACTIONS(2314), - [anon_sym_extern] = ACTIONS(2314), - [anon_sym_DOT_DOT] = ACTIONS(2312), - [anon_sym_yield] = ACTIONS(2314), - [anon_sym_move] = ACTIONS(2314), - [anon_sym_try] = ACTIONS(2314), - [sym_integer_literal] = ACTIONS(2312), - [aux_sym_string_literal_token1] = ACTIONS(2312), - [sym_char_literal] = ACTIONS(2312), - [anon_sym_true] = ACTIONS(2314), - [anon_sym_false] = ACTIONS(2314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2314), - [sym_super] = ACTIONS(2314), - [sym_crate] = ACTIONS(2314), - [sym_metavariable] = ACTIONS(2312), - [sym_raw_string_literal] = ACTIONS(2312), - [sym_float_literal] = ACTIONS(2312), + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_macro_rules_BANG] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_u8] = ACTIONS(2292), + [anon_sym_i8] = ACTIONS(2292), + [anon_sym_u16] = ACTIONS(2292), + [anon_sym_i16] = ACTIONS(2292), + [anon_sym_u32] = ACTIONS(2292), + [anon_sym_i32] = ACTIONS(2292), + [anon_sym_u64] = ACTIONS(2292), + [anon_sym_i64] = ACTIONS(2292), + [anon_sym_u128] = ACTIONS(2292), + [anon_sym_i128] = ACTIONS(2292), + [anon_sym_isize] = ACTIONS(2292), + [anon_sym_usize] = ACTIONS(2292), + [anon_sym_f32] = ACTIONS(2292), + [anon_sym_f64] = ACTIONS(2292), + [anon_sym_bool] = ACTIONS(2292), + [anon_sym_str] = ACTIONS(2292), + [anon_sym_char] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2290), + [anon_sym_COLON_COLON] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_POUND] = ACTIONS(2290), + [anon_sym_LT] = ACTIONS(2290), + [anon_sym_PIPE] = ACTIONS(2290), + [anon_sym_SQUOTE] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_default] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), + [anon_sym_fn] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_impl] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_loop] = ACTIONS(2292), + [anon_sym_match] = ACTIONS(2292), + [anon_sym_mod] = ACTIONS(2292), + [anon_sym_pub] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_struct] = ACTIONS(2292), + [anon_sym_trait] = ACTIONS(2292), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_union] = ACTIONS(2292), + [anon_sym_unsafe] = ACTIONS(2292), + [anon_sym_use] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_extern] = ACTIONS(2292), + [anon_sym_DOT_DOT] = ACTIONS(2290), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_move] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [sym_integer_literal] = ACTIONS(2290), + [aux_sym_string_literal_token1] = ACTIONS(2290), + [sym_char_literal] = ACTIONS(2290), + [anon_sym_true] = ACTIONS(2292), + [anon_sym_false] = ACTIONS(2292), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_crate] = ACTIONS(2292), + [sym_metavariable] = ACTIONS(2290), + [sym_raw_string_literal] = ACTIONS(2290), + [sym_float_literal] = ACTIONS(2290), }, [631] = { [sym_line_comment] = STATE(631), [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(2316), - [sym_identifier] = ACTIONS(2318), - [anon_sym_SEMI] = ACTIONS(2316), - [anon_sym_macro_rules_BANG] = ACTIONS(2316), - [anon_sym_LPAREN] = ACTIONS(2316), - [anon_sym_LBRACK] = ACTIONS(2316), - [anon_sym_LBRACE] = ACTIONS(2316), - [anon_sym_RBRACE] = ACTIONS(2316), - [anon_sym_STAR] = ACTIONS(2316), - [anon_sym_u8] = ACTIONS(2318), - [anon_sym_i8] = ACTIONS(2318), - [anon_sym_u16] = ACTIONS(2318), - [anon_sym_i16] = ACTIONS(2318), - [anon_sym_u32] = ACTIONS(2318), - [anon_sym_i32] = ACTIONS(2318), - [anon_sym_u64] = ACTIONS(2318), - [anon_sym_i64] = ACTIONS(2318), - [anon_sym_u128] = ACTIONS(2318), - [anon_sym_i128] = ACTIONS(2318), - [anon_sym_isize] = ACTIONS(2318), - [anon_sym_usize] = ACTIONS(2318), - [anon_sym_f32] = ACTIONS(2318), - [anon_sym_f64] = ACTIONS(2318), - [anon_sym_bool] = ACTIONS(2318), - [anon_sym_str] = ACTIONS(2318), - [anon_sym_char] = ACTIONS(2318), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_COLON_COLON] = ACTIONS(2316), - [anon_sym_BANG] = ACTIONS(2316), - [anon_sym_AMP] = ACTIONS(2316), - [anon_sym_POUND] = ACTIONS(2316), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_SQUOTE] = ACTIONS(2318), - [anon_sym_async] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2318), - [anon_sym_const] = ACTIONS(2318), - [anon_sym_continue] = ACTIONS(2318), - [anon_sym_default] = ACTIONS(2318), - [anon_sym_enum] = ACTIONS(2318), - [anon_sym_fn] = ACTIONS(2318), - [anon_sym_for] = ACTIONS(2318), - [anon_sym_if] = ACTIONS(2318), - [anon_sym_impl] = ACTIONS(2318), - [anon_sym_let] = ACTIONS(2318), - [anon_sym_loop] = ACTIONS(2318), - [anon_sym_match] = ACTIONS(2318), - [anon_sym_mod] = ACTIONS(2318), - [anon_sym_pub] = ACTIONS(2318), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_static] = ACTIONS(2318), - [anon_sym_struct] = ACTIONS(2318), - [anon_sym_trait] = ACTIONS(2318), - [anon_sym_type] = ACTIONS(2318), - [anon_sym_union] = ACTIONS(2318), - [anon_sym_unsafe] = ACTIONS(2318), - [anon_sym_use] = ACTIONS(2318), - [anon_sym_while] = ACTIONS(2318), - [anon_sym_extern] = ACTIONS(2318), - [anon_sym_DOT_DOT] = ACTIONS(2316), - [anon_sym_yield] = ACTIONS(2318), - [anon_sym_move] = ACTIONS(2318), - [anon_sym_try] = ACTIONS(2318), - [sym_integer_literal] = ACTIONS(2316), - [aux_sym_string_literal_token1] = ACTIONS(2316), - [sym_char_literal] = ACTIONS(2316), - [anon_sym_true] = ACTIONS(2318), - [anon_sym_false] = ACTIONS(2318), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2318), - [sym_super] = ACTIONS(2318), - [sym_crate] = ACTIONS(2318), - [sym_metavariable] = ACTIONS(2316), - [sym_raw_string_literal] = ACTIONS(2316), - [sym_float_literal] = ACTIONS(2316), + [ts_builtin_sym_end] = ACTIONS(2294), + [sym_identifier] = ACTIONS(2296), + [anon_sym_SEMI] = ACTIONS(2294), + [anon_sym_macro_rules_BANG] = ACTIONS(2294), + [anon_sym_LPAREN] = ACTIONS(2294), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LBRACE] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_u8] = ACTIONS(2296), + [anon_sym_i8] = ACTIONS(2296), + [anon_sym_u16] = ACTIONS(2296), + [anon_sym_i16] = ACTIONS(2296), + [anon_sym_u32] = ACTIONS(2296), + [anon_sym_i32] = ACTIONS(2296), + [anon_sym_u64] = ACTIONS(2296), + [anon_sym_i64] = ACTIONS(2296), + [anon_sym_u128] = ACTIONS(2296), + [anon_sym_i128] = ACTIONS(2296), + [anon_sym_isize] = ACTIONS(2296), + [anon_sym_usize] = ACTIONS(2296), + [anon_sym_f32] = ACTIONS(2296), + [anon_sym_f64] = ACTIONS(2296), + [anon_sym_bool] = ACTIONS(2296), + [anon_sym_str] = ACTIONS(2296), + [anon_sym_char] = ACTIONS(2296), + [anon_sym_DASH] = ACTIONS(2294), + [anon_sym_COLON_COLON] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_POUND] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_SQUOTE] = ACTIONS(2296), + [anon_sym_async] = ACTIONS(2296), + [anon_sym_break] = ACTIONS(2296), + [anon_sym_const] = ACTIONS(2296), + [anon_sym_continue] = ACTIONS(2296), + [anon_sym_default] = ACTIONS(2296), + [anon_sym_enum] = ACTIONS(2296), + [anon_sym_fn] = ACTIONS(2296), + [anon_sym_for] = ACTIONS(2296), + [anon_sym_if] = ACTIONS(2296), + [anon_sym_impl] = ACTIONS(2296), + [anon_sym_let] = ACTIONS(2296), + [anon_sym_loop] = ACTIONS(2296), + [anon_sym_match] = ACTIONS(2296), + [anon_sym_mod] = ACTIONS(2296), + [anon_sym_pub] = ACTIONS(2296), + [anon_sym_return] = ACTIONS(2296), + [anon_sym_static] = ACTIONS(2296), + [anon_sym_struct] = ACTIONS(2296), + [anon_sym_trait] = ACTIONS(2296), + [anon_sym_type] = ACTIONS(2296), + [anon_sym_union] = ACTIONS(2296), + [anon_sym_unsafe] = ACTIONS(2296), + [anon_sym_use] = ACTIONS(2296), + [anon_sym_while] = ACTIONS(2296), + [anon_sym_extern] = ACTIONS(2296), + [anon_sym_DOT_DOT] = ACTIONS(2294), + [anon_sym_yield] = ACTIONS(2296), + [anon_sym_move] = ACTIONS(2296), + [anon_sym_try] = ACTIONS(2296), + [sym_integer_literal] = ACTIONS(2294), + [aux_sym_string_literal_token1] = ACTIONS(2294), + [sym_char_literal] = ACTIONS(2294), + [anon_sym_true] = ACTIONS(2296), + [anon_sym_false] = ACTIONS(2296), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2296), + [sym_super] = ACTIONS(2296), + [sym_crate] = ACTIONS(2296), + [sym_metavariable] = ACTIONS(2294), + [sym_raw_string_literal] = ACTIONS(2294), + [sym_float_literal] = ACTIONS(2294), }, [632] = { [sym_line_comment] = STATE(632), [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2320), - [sym_identifier] = ACTIONS(2322), - [anon_sym_SEMI] = ACTIONS(2320), - [anon_sym_macro_rules_BANG] = ACTIONS(2320), - [anon_sym_LPAREN] = ACTIONS(2320), - [anon_sym_LBRACK] = ACTIONS(2320), - [anon_sym_LBRACE] = ACTIONS(2320), - [anon_sym_RBRACE] = ACTIONS(2320), - [anon_sym_STAR] = ACTIONS(2320), - [anon_sym_u8] = ACTIONS(2322), - [anon_sym_i8] = ACTIONS(2322), - [anon_sym_u16] = ACTIONS(2322), - [anon_sym_i16] = ACTIONS(2322), - [anon_sym_u32] = ACTIONS(2322), - [anon_sym_i32] = ACTIONS(2322), - [anon_sym_u64] = ACTIONS(2322), - [anon_sym_i64] = ACTIONS(2322), - [anon_sym_u128] = ACTIONS(2322), - [anon_sym_i128] = ACTIONS(2322), - [anon_sym_isize] = ACTIONS(2322), - [anon_sym_usize] = ACTIONS(2322), - [anon_sym_f32] = ACTIONS(2322), - [anon_sym_f64] = ACTIONS(2322), - [anon_sym_bool] = ACTIONS(2322), - [anon_sym_str] = ACTIONS(2322), - [anon_sym_char] = ACTIONS(2322), - [anon_sym_DASH] = ACTIONS(2320), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_BANG] = ACTIONS(2320), - [anon_sym_AMP] = ACTIONS(2320), - [anon_sym_POUND] = ACTIONS(2320), - [anon_sym_LT] = ACTIONS(2320), - [anon_sym_PIPE] = ACTIONS(2320), - [anon_sym_SQUOTE] = ACTIONS(2322), - [anon_sym_async] = ACTIONS(2322), - [anon_sym_break] = ACTIONS(2322), - [anon_sym_const] = ACTIONS(2322), - [anon_sym_continue] = ACTIONS(2322), - [anon_sym_default] = ACTIONS(2322), - [anon_sym_enum] = ACTIONS(2322), - [anon_sym_fn] = ACTIONS(2322), - [anon_sym_for] = ACTIONS(2322), - [anon_sym_if] = ACTIONS(2322), - [anon_sym_impl] = ACTIONS(2322), - [anon_sym_let] = ACTIONS(2322), - [anon_sym_loop] = ACTIONS(2322), - [anon_sym_match] = ACTIONS(2322), - [anon_sym_mod] = ACTIONS(2322), - [anon_sym_pub] = ACTIONS(2322), - [anon_sym_return] = ACTIONS(2322), - [anon_sym_static] = ACTIONS(2322), - [anon_sym_struct] = ACTIONS(2322), - [anon_sym_trait] = ACTIONS(2322), - [anon_sym_type] = ACTIONS(2322), - [anon_sym_union] = ACTIONS(2322), - [anon_sym_unsafe] = ACTIONS(2322), - [anon_sym_use] = ACTIONS(2322), - [anon_sym_while] = ACTIONS(2322), - [anon_sym_extern] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2320), - [anon_sym_yield] = ACTIONS(2322), - [anon_sym_move] = ACTIONS(2322), - [anon_sym_try] = ACTIONS(2322), - [sym_integer_literal] = ACTIONS(2320), - [aux_sym_string_literal_token1] = ACTIONS(2320), - [sym_char_literal] = ACTIONS(2320), - [anon_sym_true] = ACTIONS(2322), - [anon_sym_false] = ACTIONS(2322), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2322), - [sym_super] = ACTIONS(2322), - [sym_crate] = ACTIONS(2322), - [sym_metavariable] = ACTIONS(2320), - [sym_raw_string_literal] = ACTIONS(2320), - [sym_float_literal] = ACTIONS(2320), + [ts_builtin_sym_end] = ACTIONS(2298), + [sym_identifier] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2298), + [anon_sym_macro_rules_BANG] = ACTIONS(2298), + [anon_sym_LPAREN] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(2298), + [anon_sym_LBRACE] = ACTIONS(2298), + [anon_sym_RBRACE] = ACTIONS(2298), + [anon_sym_STAR] = ACTIONS(2298), + [anon_sym_u8] = ACTIONS(2300), + [anon_sym_i8] = ACTIONS(2300), + [anon_sym_u16] = ACTIONS(2300), + [anon_sym_i16] = ACTIONS(2300), + [anon_sym_u32] = ACTIONS(2300), + [anon_sym_i32] = ACTIONS(2300), + [anon_sym_u64] = ACTIONS(2300), + [anon_sym_i64] = ACTIONS(2300), + [anon_sym_u128] = ACTIONS(2300), + [anon_sym_i128] = ACTIONS(2300), + [anon_sym_isize] = ACTIONS(2300), + [anon_sym_usize] = ACTIONS(2300), + [anon_sym_f32] = ACTIONS(2300), + [anon_sym_f64] = ACTIONS(2300), + [anon_sym_bool] = ACTIONS(2300), + [anon_sym_str] = ACTIONS(2300), + [anon_sym_char] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2298), + [anon_sym_COLON_COLON] = ACTIONS(2298), + [anon_sym_BANG] = ACTIONS(2298), + [anon_sym_AMP] = ACTIONS(2298), + [anon_sym_POUND] = ACTIONS(2298), + [anon_sym_LT] = ACTIONS(2298), + [anon_sym_PIPE] = ACTIONS(2298), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_default] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [anon_sym_fn] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_impl] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_loop] = ACTIONS(2300), + [anon_sym_match] = ACTIONS(2300), + [anon_sym_mod] = ACTIONS(2300), + [anon_sym_pub] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_struct] = ACTIONS(2300), + [anon_sym_trait] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_union] = ACTIONS(2300), + [anon_sym_unsafe] = ACTIONS(2300), + [anon_sym_use] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_extern] = ACTIONS(2300), + [anon_sym_DOT_DOT] = ACTIONS(2298), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_move] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [sym_integer_literal] = ACTIONS(2298), + [aux_sym_string_literal_token1] = ACTIONS(2298), + [sym_char_literal] = ACTIONS(2298), + [anon_sym_true] = ACTIONS(2300), + [anon_sym_false] = ACTIONS(2300), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_crate] = ACTIONS(2300), + [sym_metavariable] = ACTIONS(2298), + [sym_raw_string_literal] = ACTIONS(2298), + [sym_float_literal] = ACTIONS(2298), }, [633] = { [sym_line_comment] = STATE(633), [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2324), - [sym_identifier] = ACTIONS(2326), - [anon_sym_SEMI] = ACTIONS(2324), - [anon_sym_macro_rules_BANG] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(2324), - [anon_sym_LBRACK] = ACTIONS(2324), - [anon_sym_LBRACE] = ACTIONS(2324), - [anon_sym_RBRACE] = ACTIONS(2324), - [anon_sym_STAR] = ACTIONS(2324), - [anon_sym_u8] = ACTIONS(2326), - [anon_sym_i8] = ACTIONS(2326), - [anon_sym_u16] = ACTIONS(2326), - [anon_sym_i16] = ACTIONS(2326), - [anon_sym_u32] = ACTIONS(2326), - [anon_sym_i32] = ACTIONS(2326), - [anon_sym_u64] = ACTIONS(2326), - [anon_sym_i64] = ACTIONS(2326), - [anon_sym_u128] = ACTIONS(2326), - [anon_sym_i128] = ACTIONS(2326), - [anon_sym_isize] = ACTIONS(2326), - [anon_sym_usize] = ACTIONS(2326), - [anon_sym_f32] = ACTIONS(2326), - [anon_sym_f64] = ACTIONS(2326), - [anon_sym_bool] = ACTIONS(2326), - [anon_sym_str] = ACTIONS(2326), - [anon_sym_char] = ACTIONS(2326), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_COLON_COLON] = ACTIONS(2324), - [anon_sym_BANG] = ACTIONS(2324), - [anon_sym_AMP] = ACTIONS(2324), - [anon_sym_POUND] = ACTIONS(2324), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_SQUOTE] = ACTIONS(2326), - [anon_sym_async] = ACTIONS(2326), - [anon_sym_break] = ACTIONS(2326), - [anon_sym_const] = ACTIONS(2326), - [anon_sym_continue] = ACTIONS(2326), - [anon_sym_default] = ACTIONS(2326), - [anon_sym_enum] = ACTIONS(2326), - [anon_sym_fn] = ACTIONS(2326), - [anon_sym_for] = ACTIONS(2326), - [anon_sym_if] = ACTIONS(2326), - [anon_sym_impl] = ACTIONS(2326), - [anon_sym_let] = ACTIONS(2326), - [anon_sym_loop] = ACTIONS(2326), - [anon_sym_match] = ACTIONS(2326), - [anon_sym_mod] = ACTIONS(2326), - [anon_sym_pub] = ACTIONS(2326), - [anon_sym_return] = ACTIONS(2326), - [anon_sym_static] = ACTIONS(2326), - [anon_sym_struct] = ACTIONS(2326), - [anon_sym_trait] = ACTIONS(2326), - [anon_sym_type] = ACTIONS(2326), - [anon_sym_union] = ACTIONS(2326), - [anon_sym_unsafe] = ACTIONS(2326), - [anon_sym_use] = ACTIONS(2326), - [anon_sym_while] = ACTIONS(2326), - [anon_sym_extern] = ACTIONS(2326), - [anon_sym_DOT_DOT] = ACTIONS(2324), - [anon_sym_yield] = ACTIONS(2326), - [anon_sym_move] = ACTIONS(2326), - [anon_sym_try] = ACTIONS(2326), - [sym_integer_literal] = ACTIONS(2324), - [aux_sym_string_literal_token1] = ACTIONS(2324), - [sym_char_literal] = ACTIONS(2324), - [anon_sym_true] = ACTIONS(2326), - [anon_sym_false] = ACTIONS(2326), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2326), - [sym_super] = ACTIONS(2326), - [sym_crate] = ACTIONS(2326), - [sym_metavariable] = ACTIONS(2324), - [sym_raw_string_literal] = ACTIONS(2324), - [sym_float_literal] = ACTIONS(2324), + [ts_builtin_sym_end] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2302), + [anon_sym_macro_rules_BANG] = ACTIONS(2302), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_LBRACK] = ACTIONS(2302), + [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_STAR] = ACTIONS(2302), + [anon_sym_u8] = ACTIONS(2304), + [anon_sym_i8] = ACTIONS(2304), + [anon_sym_u16] = ACTIONS(2304), + [anon_sym_i16] = ACTIONS(2304), + [anon_sym_u32] = ACTIONS(2304), + [anon_sym_i32] = ACTIONS(2304), + [anon_sym_u64] = ACTIONS(2304), + [anon_sym_i64] = ACTIONS(2304), + [anon_sym_u128] = ACTIONS(2304), + [anon_sym_i128] = ACTIONS(2304), + [anon_sym_isize] = ACTIONS(2304), + [anon_sym_usize] = ACTIONS(2304), + [anon_sym_f32] = ACTIONS(2304), + [anon_sym_f64] = ACTIONS(2304), + [anon_sym_bool] = ACTIONS(2304), + [anon_sym_str] = ACTIONS(2304), + [anon_sym_char] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2302), + [anon_sym_COLON_COLON] = ACTIONS(2302), + [anon_sym_BANG] = ACTIONS(2302), + [anon_sym_AMP] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2302), + [anon_sym_PIPE] = ACTIONS(2302), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), + [anon_sym_fn] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_impl] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_loop] = ACTIONS(2304), + [anon_sym_match] = ACTIONS(2304), + [anon_sym_mod] = ACTIONS(2304), + [anon_sym_pub] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_struct] = ACTIONS(2304), + [anon_sym_trait] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_union] = ACTIONS(2304), + [anon_sym_unsafe] = ACTIONS(2304), + [anon_sym_use] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_extern] = ACTIONS(2304), + [anon_sym_DOT_DOT] = ACTIONS(2302), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_move] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [sym_integer_literal] = ACTIONS(2302), + [aux_sym_string_literal_token1] = ACTIONS(2302), + [sym_char_literal] = ACTIONS(2302), + [anon_sym_true] = ACTIONS(2304), + [anon_sym_false] = ACTIONS(2304), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_crate] = ACTIONS(2304), + [sym_metavariable] = ACTIONS(2302), + [sym_raw_string_literal] = ACTIONS(2302), + [sym_float_literal] = ACTIONS(2302), }, [634] = { [sym_line_comment] = STATE(634), [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2328), - [sym_identifier] = ACTIONS(2330), - [anon_sym_SEMI] = ACTIONS(2328), - [anon_sym_macro_rules_BANG] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2328), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_STAR] = ACTIONS(2328), - [anon_sym_u8] = ACTIONS(2330), - [anon_sym_i8] = ACTIONS(2330), - [anon_sym_u16] = ACTIONS(2330), - [anon_sym_i16] = ACTIONS(2330), - [anon_sym_u32] = ACTIONS(2330), - [anon_sym_i32] = ACTIONS(2330), - [anon_sym_u64] = ACTIONS(2330), - [anon_sym_i64] = ACTIONS(2330), - [anon_sym_u128] = ACTIONS(2330), - [anon_sym_i128] = ACTIONS(2330), - [anon_sym_isize] = ACTIONS(2330), - [anon_sym_usize] = ACTIONS(2330), - [anon_sym_f32] = ACTIONS(2330), - [anon_sym_f64] = ACTIONS(2330), - [anon_sym_bool] = ACTIONS(2330), - [anon_sym_str] = ACTIONS(2330), - [anon_sym_char] = ACTIONS(2330), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_COLON_COLON] = ACTIONS(2328), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_POUND] = ACTIONS(2328), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_SQUOTE] = ACTIONS(2330), - [anon_sym_async] = ACTIONS(2330), - [anon_sym_break] = ACTIONS(2330), - [anon_sym_const] = ACTIONS(2330), - [anon_sym_continue] = ACTIONS(2330), - [anon_sym_default] = ACTIONS(2330), - [anon_sym_enum] = ACTIONS(2330), - [anon_sym_fn] = ACTIONS(2330), - [anon_sym_for] = ACTIONS(2330), - [anon_sym_if] = ACTIONS(2330), - [anon_sym_impl] = ACTIONS(2330), - [anon_sym_let] = ACTIONS(2330), - [anon_sym_loop] = ACTIONS(2330), - [anon_sym_match] = ACTIONS(2330), - [anon_sym_mod] = ACTIONS(2330), - [anon_sym_pub] = ACTIONS(2330), - [anon_sym_return] = ACTIONS(2330), - [anon_sym_static] = ACTIONS(2330), - [anon_sym_struct] = ACTIONS(2330), - [anon_sym_trait] = ACTIONS(2330), - [anon_sym_type] = ACTIONS(2330), - [anon_sym_union] = ACTIONS(2330), - [anon_sym_unsafe] = ACTIONS(2330), - [anon_sym_use] = ACTIONS(2330), - [anon_sym_while] = ACTIONS(2330), - [anon_sym_extern] = ACTIONS(2330), - [anon_sym_DOT_DOT] = ACTIONS(2328), - [anon_sym_yield] = ACTIONS(2330), - [anon_sym_move] = ACTIONS(2330), - [anon_sym_try] = ACTIONS(2330), - [sym_integer_literal] = ACTIONS(2328), - [aux_sym_string_literal_token1] = ACTIONS(2328), - [sym_char_literal] = ACTIONS(2328), - [anon_sym_true] = ACTIONS(2330), - [anon_sym_false] = ACTIONS(2330), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2330), - [sym_super] = ACTIONS(2330), - [sym_crate] = ACTIONS(2330), - [sym_metavariable] = ACTIONS(2328), - [sym_raw_string_literal] = ACTIONS(2328), - [sym_float_literal] = ACTIONS(2328), + [ts_builtin_sym_end] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2306), + [anon_sym_macro_rules_BANG] = ACTIONS(2306), + [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_LBRACK] = ACTIONS(2306), + [anon_sym_LBRACE] = ACTIONS(2306), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_STAR] = ACTIONS(2306), + [anon_sym_u8] = ACTIONS(2308), + [anon_sym_i8] = ACTIONS(2308), + [anon_sym_u16] = ACTIONS(2308), + [anon_sym_i16] = ACTIONS(2308), + [anon_sym_u32] = ACTIONS(2308), + [anon_sym_i32] = ACTIONS(2308), + [anon_sym_u64] = ACTIONS(2308), + [anon_sym_i64] = ACTIONS(2308), + [anon_sym_u128] = ACTIONS(2308), + [anon_sym_i128] = ACTIONS(2308), + [anon_sym_isize] = ACTIONS(2308), + [anon_sym_usize] = ACTIONS(2308), + [anon_sym_f32] = ACTIONS(2308), + [anon_sym_f64] = ACTIONS(2308), + [anon_sym_bool] = ACTIONS(2308), + [anon_sym_str] = ACTIONS(2308), + [anon_sym_char] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2306), + [anon_sym_COLON_COLON] = ACTIONS(2306), + [anon_sym_BANG] = ACTIONS(2306), + [anon_sym_AMP] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(2306), + [anon_sym_LT] = ACTIONS(2306), + [anon_sym_PIPE] = ACTIONS(2306), + [anon_sym_SQUOTE] = ACTIONS(2308), + [anon_sym_async] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_default] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), + [anon_sym_fn] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_impl] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_loop] = ACTIONS(2308), + [anon_sym_match] = ACTIONS(2308), + [anon_sym_mod] = ACTIONS(2308), + [anon_sym_pub] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_static] = ACTIONS(2308), + [anon_sym_struct] = ACTIONS(2308), + [anon_sym_trait] = ACTIONS(2308), + [anon_sym_type] = ACTIONS(2308), + [anon_sym_union] = ACTIONS(2308), + [anon_sym_unsafe] = ACTIONS(2308), + [anon_sym_use] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(2308), + [anon_sym_DOT_DOT] = ACTIONS(2306), + [anon_sym_yield] = ACTIONS(2308), + [anon_sym_move] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [sym_integer_literal] = ACTIONS(2306), + [aux_sym_string_literal_token1] = ACTIONS(2306), + [sym_char_literal] = ACTIONS(2306), + [anon_sym_true] = ACTIONS(2308), + [anon_sym_false] = ACTIONS(2308), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2308), + [sym_super] = ACTIONS(2308), + [sym_crate] = ACTIONS(2308), + [sym_metavariable] = ACTIONS(2306), + [sym_raw_string_literal] = ACTIONS(2306), + [sym_float_literal] = ACTIONS(2306), }, [635] = { [sym_line_comment] = STATE(635), [sym_block_comment] = STATE(635), + [ts_builtin_sym_end] = ACTIONS(2310), + [sym_identifier] = ACTIONS(2312), + [anon_sym_SEMI] = ACTIONS(2310), + [anon_sym_macro_rules_BANG] = ACTIONS(2310), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_LBRACK] = ACTIONS(2310), + [anon_sym_LBRACE] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_u8] = ACTIONS(2312), + [anon_sym_i8] = ACTIONS(2312), + [anon_sym_u16] = ACTIONS(2312), + [anon_sym_i16] = ACTIONS(2312), + [anon_sym_u32] = ACTIONS(2312), + [anon_sym_i32] = ACTIONS(2312), + [anon_sym_u64] = ACTIONS(2312), + [anon_sym_i64] = ACTIONS(2312), + [anon_sym_u128] = ACTIONS(2312), + [anon_sym_i128] = ACTIONS(2312), + [anon_sym_isize] = ACTIONS(2312), + [anon_sym_usize] = ACTIONS(2312), + [anon_sym_f32] = ACTIONS(2312), + [anon_sym_f64] = ACTIONS(2312), + [anon_sym_bool] = ACTIONS(2312), + [anon_sym_str] = ACTIONS(2312), + [anon_sym_char] = ACTIONS(2312), + [anon_sym_DASH] = ACTIONS(2310), + [anon_sym_COLON_COLON] = ACTIONS(2310), + [anon_sym_BANG] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_POUND] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_SQUOTE] = ACTIONS(2312), + [anon_sym_async] = ACTIONS(2312), + [anon_sym_break] = ACTIONS(2312), + [anon_sym_const] = ACTIONS(2312), + [anon_sym_continue] = ACTIONS(2312), + [anon_sym_default] = ACTIONS(2312), + [anon_sym_enum] = ACTIONS(2312), + [anon_sym_fn] = ACTIONS(2312), + [anon_sym_for] = ACTIONS(2312), + [anon_sym_if] = ACTIONS(2312), + [anon_sym_impl] = ACTIONS(2312), + [anon_sym_let] = ACTIONS(2312), + [anon_sym_loop] = ACTIONS(2312), + [anon_sym_match] = ACTIONS(2312), + [anon_sym_mod] = ACTIONS(2312), + [anon_sym_pub] = ACTIONS(2312), + [anon_sym_return] = ACTIONS(2312), + [anon_sym_static] = ACTIONS(2312), + [anon_sym_struct] = ACTIONS(2312), + [anon_sym_trait] = ACTIONS(2312), + [anon_sym_type] = ACTIONS(2312), + [anon_sym_union] = ACTIONS(2312), + [anon_sym_unsafe] = ACTIONS(2312), + [anon_sym_use] = ACTIONS(2312), + [anon_sym_while] = ACTIONS(2312), + [anon_sym_extern] = ACTIONS(2312), + [anon_sym_DOT_DOT] = ACTIONS(2310), + [anon_sym_yield] = ACTIONS(2312), + [anon_sym_move] = ACTIONS(2312), + [anon_sym_try] = ACTIONS(2312), + [sym_integer_literal] = ACTIONS(2310), + [aux_sym_string_literal_token1] = ACTIONS(2310), + [sym_char_literal] = ACTIONS(2310), + [anon_sym_true] = ACTIONS(2312), + [anon_sym_false] = ACTIONS(2312), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2312), + [sym_super] = ACTIONS(2312), + [sym_crate] = ACTIONS(2312), + [sym_metavariable] = ACTIONS(2310), + [sym_raw_string_literal] = ACTIONS(2310), + [sym_float_literal] = ACTIONS(2310), + }, + [636] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), + [ts_builtin_sym_end] = ACTIONS(2314), + [sym_identifier] = ACTIONS(2316), + [anon_sym_SEMI] = ACTIONS(2314), + [anon_sym_macro_rules_BANG] = ACTIONS(2314), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_LBRACK] = ACTIONS(2314), + [anon_sym_LBRACE] = ACTIONS(2314), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_STAR] = ACTIONS(2314), + [anon_sym_u8] = ACTIONS(2316), + [anon_sym_i8] = ACTIONS(2316), + [anon_sym_u16] = ACTIONS(2316), + [anon_sym_i16] = ACTIONS(2316), + [anon_sym_u32] = ACTIONS(2316), + [anon_sym_i32] = ACTIONS(2316), + [anon_sym_u64] = ACTIONS(2316), + [anon_sym_i64] = ACTIONS(2316), + [anon_sym_u128] = ACTIONS(2316), + [anon_sym_i128] = ACTIONS(2316), + [anon_sym_isize] = ACTIONS(2316), + [anon_sym_usize] = ACTIONS(2316), + [anon_sym_f32] = ACTIONS(2316), + [anon_sym_f64] = ACTIONS(2316), + [anon_sym_bool] = ACTIONS(2316), + [anon_sym_str] = ACTIONS(2316), + [anon_sym_char] = ACTIONS(2316), + [anon_sym_DASH] = ACTIONS(2314), + [anon_sym_COLON_COLON] = ACTIONS(2314), + [anon_sym_BANG] = ACTIONS(2314), + [anon_sym_AMP] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(2314), + [anon_sym_LT] = ACTIONS(2314), + [anon_sym_PIPE] = ACTIONS(2314), + [anon_sym_SQUOTE] = ACTIONS(2316), + [anon_sym_async] = ACTIONS(2316), + [anon_sym_break] = ACTIONS(2316), + [anon_sym_const] = ACTIONS(2316), + [anon_sym_continue] = ACTIONS(2316), + [anon_sym_default] = ACTIONS(2316), + [anon_sym_enum] = ACTIONS(2316), + [anon_sym_fn] = ACTIONS(2316), + [anon_sym_for] = ACTIONS(2316), + [anon_sym_if] = ACTIONS(2316), + [anon_sym_impl] = ACTIONS(2316), + [anon_sym_let] = ACTIONS(2316), + [anon_sym_loop] = ACTIONS(2316), + [anon_sym_match] = ACTIONS(2316), + [anon_sym_mod] = ACTIONS(2316), + [anon_sym_pub] = ACTIONS(2316), + [anon_sym_return] = ACTIONS(2316), + [anon_sym_static] = ACTIONS(2316), + [anon_sym_struct] = ACTIONS(2316), + [anon_sym_trait] = ACTIONS(2316), + [anon_sym_type] = ACTIONS(2316), + [anon_sym_union] = ACTIONS(2316), + [anon_sym_unsafe] = ACTIONS(2316), + [anon_sym_use] = ACTIONS(2316), + [anon_sym_while] = ACTIONS(2316), + [anon_sym_extern] = ACTIONS(2316), + [anon_sym_DOT_DOT] = ACTIONS(2314), + [anon_sym_yield] = ACTIONS(2316), + [anon_sym_move] = ACTIONS(2316), + [anon_sym_try] = ACTIONS(2316), + [sym_integer_literal] = ACTIONS(2314), + [aux_sym_string_literal_token1] = ACTIONS(2314), + [sym_char_literal] = ACTIONS(2314), + [anon_sym_true] = ACTIONS(2316), + [anon_sym_false] = ACTIONS(2316), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2316), + [sym_super] = ACTIONS(2316), + [sym_crate] = ACTIONS(2316), + [sym_metavariable] = ACTIONS(2314), + [sym_raw_string_literal] = ACTIONS(2314), + [sym_float_literal] = ACTIONS(2314), + }, + [637] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), + [ts_builtin_sym_end] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2320), + [anon_sym_SEMI] = ACTIONS(2318), + [anon_sym_macro_rules_BANG] = ACTIONS(2318), + [anon_sym_LPAREN] = ACTIONS(2318), + [anon_sym_LBRACK] = ACTIONS(2318), + [anon_sym_LBRACE] = ACTIONS(2318), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_STAR] = ACTIONS(2318), + [anon_sym_u8] = ACTIONS(2320), + [anon_sym_i8] = ACTIONS(2320), + [anon_sym_u16] = ACTIONS(2320), + [anon_sym_i16] = ACTIONS(2320), + [anon_sym_u32] = ACTIONS(2320), + [anon_sym_i32] = ACTIONS(2320), + [anon_sym_u64] = ACTIONS(2320), + [anon_sym_i64] = ACTIONS(2320), + [anon_sym_u128] = ACTIONS(2320), + [anon_sym_i128] = ACTIONS(2320), + [anon_sym_isize] = ACTIONS(2320), + [anon_sym_usize] = ACTIONS(2320), + [anon_sym_f32] = ACTIONS(2320), + [anon_sym_f64] = ACTIONS(2320), + [anon_sym_bool] = ACTIONS(2320), + [anon_sym_str] = ACTIONS(2320), + [anon_sym_char] = ACTIONS(2320), + [anon_sym_DASH] = ACTIONS(2318), + [anon_sym_COLON_COLON] = ACTIONS(2318), + [anon_sym_BANG] = ACTIONS(2318), + [anon_sym_AMP] = ACTIONS(2318), + [anon_sym_POUND] = ACTIONS(2318), + [anon_sym_LT] = ACTIONS(2318), + [anon_sym_PIPE] = ACTIONS(2318), + [anon_sym_SQUOTE] = ACTIONS(2320), + [anon_sym_async] = ACTIONS(2320), + [anon_sym_break] = ACTIONS(2320), + [anon_sym_const] = ACTIONS(2320), + [anon_sym_continue] = ACTIONS(2320), + [anon_sym_default] = ACTIONS(2320), + [anon_sym_enum] = ACTIONS(2320), + [anon_sym_fn] = ACTIONS(2320), + [anon_sym_for] = ACTIONS(2320), + [anon_sym_if] = ACTIONS(2320), + [anon_sym_impl] = ACTIONS(2320), + [anon_sym_let] = ACTIONS(2320), + [anon_sym_loop] = ACTIONS(2320), + [anon_sym_match] = ACTIONS(2320), + [anon_sym_mod] = ACTIONS(2320), + [anon_sym_pub] = ACTIONS(2320), + [anon_sym_return] = ACTIONS(2320), + [anon_sym_static] = ACTIONS(2320), + [anon_sym_struct] = ACTIONS(2320), + [anon_sym_trait] = ACTIONS(2320), + [anon_sym_type] = ACTIONS(2320), + [anon_sym_union] = ACTIONS(2320), + [anon_sym_unsafe] = ACTIONS(2320), + [anon_sym_use] = ACTIONS(2320), + [anon_sym_while] = ACTIONS(2320), + [anon_sym_extern] = ACTIONS(2320), + [anon_sym_DOT_DOT] = ACTIONS(2318), + [anon_sym_yield] = ACTIONS(2320), + [anon_sym_move] = ACTIONS(2320), + [anon_sym_try] = ACTIONS(2320), + [sym_integer_literal] = ACTIONS(2318), + [aux_sym_string_literal_token1] = ACTIONS(2318), + [sym_char_literal] = ACTIONS(2318), + [anon_sym_true] = ACTIONS(2320), + [anon_sym_false] = ACTIONS(2320), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2320), + [sym_super] = ACTIONS(2320), + [sym_crate] = ACTIONS(2320), + [sym_metavariable] = ACTIONS(2318), + [sym_raw_string_literal] = ACTIONS(2318), + [sym_float_literal] = ACTIONS(2318), + }, + [638] = { + [sym_attribute_item] = STATE(1461), + [sym_inner_attribute_item] = STATE(1461), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_match_arm] = STATE(1462), + [sym_last_match_arm] = STATE(3440), + [sym_match_pattern] = STATE(3553), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), + [aux_sym_match_block_repeat1] = STATE(747), + [aux_sym_match_arm_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), + }, + [639] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), + [ts_builtin_sym_end] = ACTIONS(2322), + [sym_identifier] = ACTIONS(2324), + [anon_sym_SEMI] = ACTIONS(2322), + [anon_sym_macro_rules_BANG] = ACTIONS(2322), + [anon_sym_LPAREN] = ACTIONS(2322), + [anon_sym_LBRACK] = ACTIONS(2322), + [anon_sym_LBRACE] = ACTIONS(2322), + [anon_sym_RBRACE] = ACTIONS(2322), + [anon_sym_STAR] = ACTIONS(2322), + [anon_sym_u8] = ACTIONS(2324), + [anon_sym_i8] = ACTIONS(2324), + [anon_sym_u16] = ACTIONS(2324), + [anon_sym_i16] = ACTIONS(2324), + [anon_sym_u32] = ACTIONS(2324), + [anon_sym_i32] = ACTIONS(2324), + [anon_sym_u64] = ACTIONS(2324), + [anon_sym_i64] = ACTIONS(2324), + [anon_sym_u128] = ACTIONS(2324), + [anon_sym_i128] = ACTIONS(2324), + [anon_sym_isize] = ACTIONS(2324), + [anon_sym_usize] = ACTIONS(2324), + [anon_sym_f32] = ACTIONS(2324), + [anon_sym_f64] = ACTIONS(2324), + [anon_sym_bool] = ACTIONS(2324), + [anon_sym_str] = ACTIONS(2324), + [anon_sym_char] = ACTIONS(2324), + [anon_sym_DASH] = ACTIONS(2322), + [anon_sym_COLON_COLON] = ACTIONS(2322), + [anon_sym_BANG] = ACTIONS(2322), + [anon_sym_AMP] = ACTIONS(2322), + [anon_sym_POUND] = ACTIONS(2322), + [anon_sym_LT] = ACTIONS(2322), + [anon_sym_PIPE] = ACTIONS(2322), + [anon_sym_SQUOTE] = ACTIONS(2324), + [anon_sym_async] = ACTIONS(2324), + [anon_sym_break] = ACTIONS(2324), + [anon_sym_const] = ACTIONS(2324), + [anon_sym_continue] = ACTIONS(2324), + [anon_sym_default] = ACTIONS(2324), + [anon_sym_enum] = ACTIONS(2324), + [anon_sym_fn] = ACTIONS(2324), + [anon_sym_for] = ACTIONS(2324), + [anon_sym_if] = ACTIONS(2324), + [anon_sym_impl] = ACTIONS(2324), + [anon_sym_let] = ACTIONS(2324), + [anon_sym_loop] = ACTIONS(2324), + [anon_sym_match] = ACTIONS(2324), + [anon_sym_mod] = ACTIONS(2324), + [anon_sym_pub] = ACTIONS(2324), + [anon_sym_return] = ACTIONS(2324), + [anon_sym_static] = ACTIONS(2324), + [anon_sym_struct] = ACTIONS(2324), + [anon_sym_trait] = ACTIONS(2324), + [anon_sym_type] = ACTIONS(2324), + [anon_sym_union] = ACTIONS(2324), + [anon_sym_unsafe] = ACTIONS(2324), + [anon_sym_use] = ACTIONS(2324), + [anon_sym_while] = ACTIONS(2324), + [anon_sym_extern] = ACTIONS(2324), + [anon_sym_DOT_DOT] = ACTIONS(2322), + [anon_sym_yield] = ACTIONS(2324), + [anon_sym_move] = ACTIONS(2324), + [anon_sym_try] = ACTIONS(2324), + [sym_integer_literal] = ACTIONS(2322), + [aux_sym_string_literal_token1] = ACTIONS(2322), + [sym_char_literal] = ACTIONS(2322), + [anon_sym_true] = ACTIONS(2324), + [anon_sym_false] = ACTIONS(2324), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2324), + [sym_super] = ACTIONS(2324), + [sym_crate] = ACTIONS(2324), + [sym_metavariable] = ACTIONS(2322), + [sym_raw_string_literal] = ACTIONS(2322), + [sym_float_literal] = ACTIONS(2322), + }, + [640] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), + [ts_builtin_sym_end] = ACTIONS(2326), + [sym_identifier] = ACTIONS(2328), + [anon_sym_SEMI] = ACTIONS(2326), + [anon_sym_macro_rules_BANG] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_LBRACK] = ACTIONS(2326), + [anon_sym_LBRACE] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_STAR] = ACTIONS(2326), + [anon_sym_u8] = ACTIONS(2328), + [anon_sym_i8] = ACTIONS(2328), + [anon_sym_u16] = ACTIONS(2328), + [anon_sym_i16] = ACTIONS(2328), + [anon_sym_u32] = ACTIONS(2328), + [anon_sym_i32] = ACTIONS(2328), + [anon_sym_u64] = ACTIONS(2328), + [anon_sym_i64] = ACTIONS(2328), + [anon_sym_u128] = ACTIONS(2328), + [anon_sym_i128] = ACTIONS(2328), + [anon_sym_isize] = ACTIONS(2328), + [anon_sym_usize] = ACTIONS(2328), + [anon_sym_f32] = ACTIONS(2328), + [anon_sym_f64] = ACTIONS(2328), + [anon_sym_bool] = ACTIONS(2328), + [anon_sym_str] = ACTIONS(2328), + [anon_sym_char] = ACTIONS(2328), + [anon_sym_DASH] = ACTIONS(2326), + [anon_sym_COLON_COLON] = ACTIONS(2326), + [anon_sym_BANG] = ACTIONS(2326), + [anon_sym_AMP] = ACTIONS(2326), + [anon_sym_POUND] = ACTIONS(2326), + [anon_sym_LT] = ACTIONS(2326), + [anon_sym_PIPE] = ACTIONS(2326), + [anon_sym_SQUOTE] = ACTIONS(2328), + [anon_sym_async] = ACTIONS(2328), + [anon_sym_break] = ACTIONS(2328), + [anon_sym_const] = ACTIONS(2328), + [anon_sym_continue] = ACTIONS(2328), + [anon_sym_default] = ACTIONS(2328), + [anon_sym_enum] = ACTIONS(2328), + [anon_sym_fn] = ACTIONS(2328), + [anon_sym_for] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2328), + [anon_sym_impl] = ACTIONS(2328), + [anon_sym_let] = ACTIONS(2328), + [anon_sym_loop] = ACTIONS(2328), + [anon_sym_match] = ACTIONS(2328), + [anon_sym_mod] = ACTIONS(2328), + [anon_sym_pub] = ACTIONS(2328), + [anon_sym_return] = ACTIONS(2328), + [anon_sym_static] = ACTIONS(2328), + [anon_sym_struct] = ACTIONS(2328), + [anon_sym_trait] = ACTIONS(2328), + [anon_sym_type] = ACTIONS(2328), + [anon_sym_union] = ACTIONS(2328), + [anon_sym_unsafe] = ACTIONS(2328), + [anon_sym_use] = ACTIONS(2328), + [anon_sym_while] = ACTIONS(2328), + [anon_sym_extern] = ACTIONS(2328), + [anon_sym_DOT_DOT] = ACTIONS(2326), + [anon_sym_yield] = ACTIONS(2328), + [anon_sym_move] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2328), + [sym_integer_literal] = ACTIONS(2326), + [aux_sym_string_literal_token1] = ACTIONS(2326), + [sym_char_literal] = ACTIONS(2326), + [anon_sym_true] = ACTIONS(2328), + [anon_sym_false] = ACTIONS(2328), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2328), + [sym_super] = ACTIONS(2328), + [sym_crate] = ACTIONS(2328), + [sym_metavariable] = ACTIONS(2326), + [sym_raw_string_literal] = ACTIONS(2326), + [sym_float_literal] = ACTIONS(2326), + }, + [641] = { + [sym_empty_statement] = STATE(1143), + [sym_macro_definition] = STATE(1143), + [sym_attribute_item] = STATE(1143), + [sym_inner_attribute_item] = STATE(1143), + [sym_mod_item] = STATE(1143), + [sym_foreign_mod_item] = STATE(1143), + [sym_struct_item] = STATE(1143), + [sym_union_item] = STATE(1143), + [sym_enum_item] = STATE(1143), + [sym_extern_crate_declaration] = STATE(1143), + [sym_const_item] = STATE(1143), + [sym_static_item] = STATE(1143), + [sym_type_item] = STATE(1143), + [sym_function_item] = STATE(1143), + [sym_function_signature_item] = STATE(1143), + [sym_function_modifiers] = STATE(3554), + [sym_impl_item] = STATE(1143), + [sym_trait_item] = STATE(1143), + [sym_associated_type] = STATE(1143), + [sym_let_declaration] = STATE(1143), + [sym_use_declaration] = STATE(1143), + [sym_extern_modifier] = STATE(2155), + [sym_visibility_modifier] = STATE(1923), + [sym_bracketed_type] = STATE(3383), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_macro_invocation] = STATE(1143), + [sym_scoped_identifier] = STATE(3220), + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), + [aux_sym_declaration_list_repeat1] = STATE(522), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(1636), + [anon_sym_SEMI] = ACTIONS(1638), + [anon_sym_macro_rules_BANG] = ACTIONS(1640), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_u8] = ACTIONS(1644), + [anon_sym_i8] = ACTIONS(1644), + [anon_sym_u16] = ACTIONS(1644), + [anon_sym_i16] = ACTIONS(1644), + [anon_sym_u32] = ACTIONS(1644), + [anon_sym_i32] = ACTIONS(1644), + [anon_sym_u64] = ACTIONS(1644), + [anon_sym_i64] = ACTIONS(1644), + [anon_sym_u128] = ACTIONS(1644), + [anon_sym_i128] = ACTIONS(1644), + [anon_sym_isize] = ACTIONS(1644), + [anon_sym_usize] = ACTIONS(1644), + [anon_sym_f32] = ACTIONS(1644), + [anon_sym_f64] = ACTIONS(1644), + [anon_sym_bool] = ACTIONS(1644), + [anon_sym_str] = ACTIONS(1644), + [anon_sym_char] = ACTIONS(1644), + [anon_sym_COLON_COLON] = ACTIONS(1646), + [anon_sym_POUND] = ACTIONS(1648), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1650), + [anon_sym_default] = ACTIONS(1652), + [anon_sym_enum] = ACTIONS(1654), + [anon_sym_fn] = ACTIONS(1656), + [anon_sym_impl] = ACTIONS(1658), + [anon_sym_let] = ACTIONS(1660), + [anon_sym_mod] = ACTIONS(1662), + [anon_sym_pub] = ACTIONS(65), + [anon_sym_static] = ACTIONS(1664), + [anon_sym_struct] = ACTIONS(1666), + [anon_sym_trait] = ACTIONS(1668), + [anon_sym_type] = ACTIONS(1670), + [anon_sym_union] = ACTIONS(1672), + [anon_sym_unsafe] = ACTIONS(1674), + [anon_sym_use] = ACTIONS(1676), + [anon_sym_extern] = ACTIONS(1678), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1680), + [sym_super] = ACTIONS(1680), + [sym_crate] = ACTIONS(1682), + [sym_metavariable] = ACTIONS(1684), + }, + [642] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), [ts_builtin_sym_end] = ACTIONS(2332), [sym_identifier] = ACTIONS(2334), [anon_sym_SEMI] = ACTIONS(2332), @@ -83810,9 +83440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2332), [sym_float_literal] = ACTIONS(2332), }, - [636] = { - [sym_line_comment] = STATE(636), - [sym_block_comment] = STATE(636), + [643] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), [ts_builtin_sym_end] = ACTIONS(2336), [sym_identifier] = ACTIONS(2338), [anon_sym_SEMI] = ACTIONS(2336), @@ -83890,9 +83520,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2336), [sym_float_literal] = ACTIONS(2336), }, - [637] = { - [sym_line_comment] = STATE(637), - [sym_block_comment] = STATE(637), + [644] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), [ts_builtin_sym_end] = ACTIONS(2340), [sym_identifier] = ACTIONS(2342), [anon_sym_SEMI] = ACTIONS(2340), @@ -83970,9 +83600,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2340), [sym_float_literal] = ACTIONS(2340), }, - [638] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), + [645] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), [ts_builtin_sym_end] = ACTIONS(2344), [sym_identifier] = ACTIONS(2346), [anon_sym_SEMI] = ACTIONS(2344), @@ -84050,9 +83680,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2344), [sym_float_literal] = ACTIONS(2344), }, - [639] = { - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), + [646] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), [ts_builtin_sym_end] = ACTIONS(2348), [sym_identifier] = ACTIONS(2350), [anon_sym_SEMI] = ACTIONS(2348), @@ -84130,9 +83760,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2348), [sym_float_literal] = ACTIONS(2348), }, - [640] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), + [647] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), [ts_builtin_sym_end] = ACTIONS(2352), [sym_identifier] = ACTIONS(2354), [anon_sym_SEMI] = ACTIONS(2352), @@ -84210,9 +83840,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2352), [sym_float_literal] = ACTIONS(2352), }, - [641] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), + [648] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), [ts_builtin_sym_end] = ACTIONS(2356), [sym_identifier] = ACTIONS(2358), [anon_sym_SEMI] = ACTIONS(2356), @@ -84290,9 +83920,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2356), [sym_float_literal] = ACTIONS(2356), }, - [642] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), + [649] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), [ts_builtin_sym_end] = ACTIONS(2360), [sym_identifier] = ACTIONS(2362), [anon_sym_SEMI] = ACTIONS(2360), @@ -84370,9 +84000,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2360), [sym_float_literal] = ACTIONS(2360), }, - [643] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), + [650] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), [ts_builtin_sym_end] = ACTIONS(2364), [sym_identifier] = ACTIONS(2366), [anon_sym_SEMI] = ACTIONS(2364), @@ -84450,9 +84080,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2364), [sym_float_literal] = ACTIONS(2364), }, - [644] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), + [651] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), [ts_builtin_sym_end] = ACTIONS(2368), [sym_identifier] = ACTIONS(2370), [anon_sym_SEMI] = ACTIONS(2368), @@ -84530,9 +84160,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2368), [sym_float_literal] = ACTIONS(2368), }, - [645] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), + [652] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(850), + [sym_identifier] = ACTIONS(852), + [anon_sym_SEMI] = ACTIONS(850), + [anon_sym_macro_rules_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_LBRACK] = ACTIONS(850), + [anon_sym_LBRACE] = ACTIONS(850), + [anon_sym_RBRACE] = ACTIONS(850), + [anon_sym_STAR] = ACTIONS(850), + [anon_sym_u8] = ACTIONS(852), + [anon_sym_i8] = ACTIONS(852), + [anon_sym_u16] = ACTIONS(852), + [anon_sym_i16] = ACTIONS(852), + [anon_sym_u32] = ACTIONS(852), + [anon_sym_i32] = ACTIONS(852), + [anon_sym_u64] = ACTIONS(852), + [anon_sym_i64] = ACTIONS(852), + [anon_sym_u128] = ACTIONS(852), + [anon_sym_i128] = ACTIONS(852), + [anon_sym_isize] = ACTIONS(852), + [anon_sym_usize] = ACTIONS(852), + [anon_sym_f32] = ACTIONS(852), + [anon_sym_f64] = ACTIONS(852), + [anon_sym_bool] = ACTIONS(852), + [anon_sym_str] = ACTIONS(852), + [anon_sym_char] = ACTIONS(852), + [anon_sym_DASH] = ACTIONS(850), + [anon_sym_COLON_COLON] = ACTIONS(850), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_AMP] = ACTIONS(850), + [anon_sym_POUND] = ACTIONS(850), + [anon_sym_LT] = ACTIONS(850), + [anon_sym_PIPE] = ACTIONS(850), + [anon_sym_SQUOTE] = ACTIONS(852), + [anon_sym_async] = ACTIONS(852), + [anon_sym_break] = ACTIONS(852), + [anon_sym_const] = ACTIONS(852), + [anon_sym_continue] = ACTIONS(852), + [anon_sym_default] = ACTIONS(852), + [anon_sym_enum] = ACTIONS(852), + [anon_sym_fn] = ACTIONS(852), + [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(852), + [anon_sym_impl] = ACTIONS(852), + [anon_sym_let] = ACTIONS(852), + [anon_sym_loop] = ACTIONS(852), + [anon_sym_match] = ACTIONS(852), + [anon_sym_mod] = ACTIONS(852), + [anon_sym_pub] = ACTIONS(852), + [anon_sym_return] = ACTIONS(852), + [anon_sym_static] = ACTIONS(852), + [anon_sym_struct] = ACTIONS(852), + [anon_sym_trait] = ACTIONS(852), + [anon_sym_type] = ACTIONS(852), + [anon_sym_union] = ACTIONS(852), + [anon_sym_unsafe] = ACTIONS(852), + [anon_sym_use] = ACTIONS(852), + [anon_sym_while] = ACTIONS(852), + [anon_sym_extern] = ACTIONS(852), + [anon_sym_DOT_DOT] = ACTIONS(850), + [anon_sym_yield] = ACTIONS(852), + [anon_sym_move] = ACTIONS(852), + [anon_sym_try] = ACTIONS(852), + [sym_integer_literal] = ACTIONS(850), + [aux_sym_string_literal_token1] = ACTIONS(850), + [sym_char_literal] = ACTIONS(850), + [anon_sym_true] = ACTIONS(852), + [anon_sym_false] = ACTIONS(852), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(852), + [sym_super] = ACTIONS(852), + [sym_crate] = ACTIONS(852), + [sym_metavariable] = ACTIONS(850), + [sym_raw_string_literal] = ACTIONS(850), + [sym_float_literal] = ACTIONS(850), + }, + [653] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), [ts_builtin_sym_end] = ACTIONS(2372), [sym_identifier] = ACTIONS(2374), [anon_sym_SEMI] = ACTIONS(2372), @@ -84610,9 +84320,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2372), [sym_float_literal] = ACTIONS(2372), }, - [646] = { - [sym_line_comment] = STATE(646), - [sym_block_comment] = STATE(646), + [654] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(854), + [sym_identifier] = ACTIONS(856), + [anon_sym_SEMI] = ACTIONS(854), + [anon_sym_macro_rules_BANG] = ACTIONS(854), + [anon_sym_LPAREN] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(854), + [anon_sym_LBRACE] = ACTIONS(854), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_STAR] = ACTIONS(854), + [anon_sym_u8] = ACTIONS(856), + [anon_sym_i8] = ACTIONS(856), + [anon_sym_u16] = ACTIONS(856), + [anon_sym_i16] = ACTIONS(856), + [anon_sym_u32] = ACTIONS(856), + [anon_sym_i32] = ACTIONS(856), + [anon_sym_u64] = ACTIONS(856), + [anon_sym_i64] = ACTIONS(856), + [anon_sym_u128] = ACTIONS(856), + [anon_sym_i128] = ACTIONS(856), + [anon_sym_isize] = ACTIONS(856), + [anon_sym_usize] = ACTIONS(856), + [anon_sym_f32] = ACTIONS(856), + [anon_sym_f64] = ACTIONS(856), + [anon_sym_bool] = ACTIONS(856), + [anon_sym_str] = ACTIONS(856), + [anon_sym_char] = ACTIONS(856), + [anon_sym_DASH] = ACTIONS(854), + [anon_sym_COLON_COLON] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(854), + [anon_sym_AMP] = ACTIONS(854), + [anon_sym_POUND] = ACTIONS(854), + [anon_sym_LT] = ACTIONS(854), + [anon_sym_PIPE] = ACTIONS(854), + [anon_sym_SQUOTE] = ACTIONS(856), + [anon_sym_async] = ACTIONS(856), + [anon_sym_break] = ACTIONS(856), + [anon_sym_const] = ACTIONS(856), + [anon_sym_continue] = ACTIONS(856), + [anon_sym_default] = ACTIONS(856), + [anon_sym_enum] = ACTIONS(856), + [anon_sym_fn] = ACTIONS(856), + [anon_sym_for] = ACTIONS(856), + [anon_sym_if] = ACTIONS(856), + [anon_sym_impl] = ACTIONS(856), + [anon_sym_let] = ACTIONS(856), + [anon_sym_loop] = ACTIONS(856), + [anon_sym_match] = ACTIONS(856), + [anon_sym_mod] = ACTIONS(856), + [anon_sym_pub] = ACTIONS(856), + [anon_sym_return] = ACTIONS(856), + [anon_sym_static] = ACTIONS(856), + [anon_sym_struct] = ACTIONS(856), + [anon_sym_trait] = ACTIONS(856), + [anon_sym_type] = ACTIONS(856), + [anon_sym_union] = ACTIONS(856), + [anon_sym_unsafe] = ACTIONS(856), + [anon_sym_use] = ACTIONS(856), + [anon_sym_while] = ACTIONS(856), + [anon_sym_extern] = ACTIONS(856), + [anon_sym_DOT_DOT] = ACTIONS(854), + [anon_sym_yield] = ACTIONS(856), + [anon_sym_move] = ACTIONS(856), + [anon_sym_try] = ACTIONS(856), + [sym_integer_literal] = ACTIONS(854), + [aux_sym_string_literal_token1] = ACTIONS(854), + [sym_char_literal] = ACTIONS(854), + [anon_sym_true] = ACTIONS(856), + [anon_sym_false] = ACTIONS(856), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(856), + [sym_super] = ACTIONS(856), + [sym_crate] = ACTIONS(856), + [sym_metavariable] = ACTIONS(854), + [sym_raw_string_literal] = ACTIONS(854), + [sym_float_literal] = ACTIONS(854), + }, + [655] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), [ts_builtin_sym_end] = ACTIONS(2376), [sym_identifier] = ACTIONS(2378), [anon_sym_SEMI] = ACTIONS(2376), @@ -84690,9 +84480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2376), [sym_float_literal] = ACTIONS(2376), }, - [647] = { - [sym_line_comment] = STATE(647), - [sym_block_comment] = STATE(647), + [656] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), [ts_builtin_sym_end] = ACTIONS(2380), [sym_identifier] = ACTIONS(2382), [anon_sym_SEMI] = ACTIONS(2380), @@ -84770,9 +84560,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2380), [sym_float_literal] = ACTIONS(2380), }, - [648] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), + [657] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), [ts_builtin_sym_end] = ACTIONS(2384), [sym_identifier] = ACTIONS(2386), [anon_sym_SEMI] = ACTIONS(2384), @@ -84850,9 +84640,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2384), [sym_float_literal] = ACTIONS(2384), }, - [649] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), + [658] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), [ts_builtin_sym_end] = ACTIONS(2388), [sym_identifier] = ACTIONS(2390), [anon_sym_SEMI] = ACTIONS(2388), @@ -84930,9 +84720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2388), [sym_float_literal] = ACTIONS(2388), }, - [650] = { - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), + [659] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), [ts_builtin_sym_end] = ACTIONS(2392), [sym_identifier] = ACTIONS(2394), [anon_sym_SEMI] = ACTIONS(2392), @@ -85010,9 +84800,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2392), [sym_float_literal] = ACTIONS(2392), }, - [651] = { - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), + [660] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), [ts_builtin_sym_end] = ACTIONS(2396), [sym_identifier] = ACTIONS(2398), [anon_sym_SEMI] = ACTIONS(2396), @@ -85090,9 +84880,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2396), [sym_float_literal] = ACTIONS(2396), }, - [652] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), + [661] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), [ts_builtin_sym_end] = ACTIONS(2400), [sym_identifier] = ACTIONS(2402), [anon_sym_SEMI] = ACTIONS(2400), @@ -85170,9 +84960,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2400), [sym_float_literal] = ACTIONS(2400), }, - [653] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), + [662] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), [ts_builtin_sym_end] = ACTIONS(2404), [sym_identifier] = ACTIONS(2406), [anon_sym_SEMI] = ACTIONS(2404), @@ -85250,9 +85040,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2404), [sym_float_literal] = ACTIONS(2404), }, - [654] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), + [663] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), [ts_builtin_sym_end] = ACTIONS(2408), [sym_identifier] = ACTIONS(2410), [anon_sym_SEMI] = ACTIONS(2408), @@ -85330,9 +85120,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2408), [sym_float_literal] = ACTIONS(2408), }, - [655] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), + [664] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), [ts_builtin_sym_end] = ACTIONS(2412), [sym_identifier] = ACTIONS(2414), [anon_sym_SEMI] = ACTIONS(2412), @@ -85410,9 +85200,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2412), [sym_float_literal] = ACTIONS(2412), }, - [656] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), + [665] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), [ts_builtin_sym_end] = ACTIONS(2416), [sym_identifier] = ACTIONS(2418), [anon_sym_SEMI] = ACTIONS(2416), @@ -85490,9 +85280,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2416), [sym_float_literal] = ACTIONS(2416), }, - [657] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), + [666] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), [ts_builtin_sym_end] = ACTIONS(2420), [sym_identifier] = ACTIONS(2422), [anon_sym_SEMI] = ACTIONS(2420), @@ -85570,9 +85360,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2420), [sym_float_literal] = ACTIONS(2420), }, - [658] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), + [667] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), [ts_builtin_sym_end] = ACTIONS(2424), [sym_identifier] = ACTIONS(2426), [anon_sym_SEMI] = ACTIONS(2424), @@ -85650,9 +85440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2424), [sym_float_literal] = ACTIONS(2424), }, - [659] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), + [668] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), [ts_builtin_sym_end] = ACTIONS(2428), [sym_identifier] = ACTIONS(2430), [anon_sym_SEMI] = ACTIONS(2428), @@ -85730,9 +85520,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2428), [sym_float_literal] = ACTIONS(2428), }, - [660] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), + [669] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), [ts_builtin_sym_end] = ACTIONS(2432), [sym_identifier] = ACTIONS(2434), [anon_sym_SEMI] = ACTIONS(2432), @@ -85810,9 +85600,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2432), [sym_float_literal] = ACTIONS(2432), }, - [661] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), + [670] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(2436), [sym_identifier] = ACTIONS(2438), [anon_sym_SEMI] = ACTIONS(2436), @@ -85890,9 +85680,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2436), [sym_float_literal] = ACTIONS(2436), }, - [662] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), + [671] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), [ts_builtin_sym_end] = ACTIONS(2440), [sym_identifier] = ACTIONS(2442), [anon_sym_SEMI] = ACTIONS(2440), @@ -85970,9 +85760,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2440), [sym_float_literal] = ACTIONS(2440), }, - [663] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), + [672] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), [ts_builtin_sym_end] = ACTIONS(2444), [sym_identifier] = ACTIONS(2446), [anon_sym_SEMI] = ACTIONS(2444), @@ -86050,9 +85840,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2444), [sym_float_literal] = ACTIONS(2444), }, - [664] = { - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), + [673] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), [ts_builtin_sym_end] = ACTIONS(2448), [sym_identifier] = ACTIONS(2450), [anon_sym_SEMI] = ACTIONS(2448), @@ -86130,9 +85920,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2448), [sym_float_literal] = ACTIONS(2448), }, - [665] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), + [674] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), [ts_builtin_sym_end] = ACTIONS(2452), [sym_identifier] = ACTIONS(2454), [anon_sym_SEMI] = ACTIONS(2452), @@ -86210,9 +86000,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2452), [sym_float_literal] = ACTIONS(2452), }, - [666] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), + [675] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), [ts_builtin_sym_end] = ACTIONS(2456), [sym_identifier] = ACTIONS(2458), [anon_sym_SEMI] = ACTIONS(2456), @@ -86290,9 +86080,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2456), [sym_float_literal] = ACTIONS(2456), }, - [667] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), + [676] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), [ts_builtin_sym_end] = ACTIONS(2460), [sym_identifier] = ACTIONS(2462), [anon_sym_SEMI] = ACTIONS(2460), @@ -86370,9 +86160,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2460), [sym_float_literal] = ACTIONS(2460), }, - [668] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), + [677] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), [ts_builtin_sym_end] = ACTIONS(2464), [sym_identifier] = ACTIONS(2466), [anon_sym_SEMI] = ACTIONS(2464), @@ -86450,9 +86240,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2464), [sym_float_literal] = ACTIONS(2464), }, - [669] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), + [678] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), [ts_builtin_sym_end] = ACTIONS(2468), [sym_identifier] = ACTIONS(2470), [anon_sym_SEMI] = ACTIONS(2468), @@ -86530,9 +86320,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2468), [sym_float_literal] = ACTIONS(2468), }, - [670] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), + [679] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), [ts_builtin_sym_end] = ACTIONS(2472), [sym_identifier] = ACTIONS(2474), [anon_sym_SEMI] = ACTIONS(2472), @@ -86610,9 +86400,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2472), [sym_float_literal] = ACTIONS(2472), }, - [671] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), + [680] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), [ts_builtin_sym_end] = ACTIONS(2476), [sym_identifier] = ACTIONS(2478), [anon_sym_SEMI] = ACTIONS(2476), @@ -86690,9 +86480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2476), [sym_float_literal] = ACTIONS(2476), }, - [672] = { - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), + [681] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), [ts_builtin_sym_end] = ACTIONS(2480), [sym_identifier] = ACTIONS(2482), [anon_sym_SEMI] = ACTIONS(2480), @@ -86770,89 +86560,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2480), [sym_float_literal] = ACTIONS(2480), }, - [673] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(986), - [sym_identifier] = ACTIONS(988), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_macro_rules_BANG] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_STAR] = ACTIONS(986), - [anon_sym_u8] = ACTIONS(988), - [anon_sym_i8] = ACTIONS(988), - [anon_sym_u16] = ACTIONS(988), - [anon_sym_i16] = ACTIONS(988), - [anon_sym_u32] = ACTIONS(988), - [anon_sym_i32] = ACTIONS(988), - [anon_sym_u64] = ACTIONS(988), - [anon_sym_i64] = ACTIONS(988), - [anon_sym_u128] = ACTIONS(988), - [anon_sym_i128] = ACTIONS(988), - [anon_sym_isize] = ACTIONS(988), - [anon_sym_usize] = ACTIONS(988), - [anon_sym_f32] = ACTIONS(988), - [anon_sym_f64] = ACTIONS(988), - [anon_sym_bool] = ACTIONS(988), - [anon_sym_str] = ACTIONS(988), - [anon_sym_char] = ACTIONS(988), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_COLON_COLON] = ACTIONS(986), - [anon_sym_BANG] = ACTIONS(986), - [anon_sym_AMP] = ACTIONS(986), - [anon_sym_POUND] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_SQUOTE] = ACTIONS(988), - [anon_sym_async] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_default] = ACTIONS(988), - [anon_sym_enum] = ACTIONS(988), - [anon_sym_fn] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_impl] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_mod] = ACTIONS(988), - [anon_sym_pub] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_static] = ACTIONS(988), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_trait] = ACTIONS(988), - [anon_sym_type] = ACTIONS(988), - [anon_sym_union] = ACTIONS(988), - [anon_sym_unsafe] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_DOT_DOT] = ACTIONS(986), - [anon_sym_yield] = ACTIONS(988), - [anon_sym_move] = ACTIONS(988), - [anon_sym_try] = ACTIONS(988), - [sym_integer_literal] = ACTIONS(986), - [aux_sym_string_literal_token1] = ACTIONS(986), - [sym_char_literal] = ACTIONS(986), - [anon_sym_true] = ACTIONS(988), - [anon_sym_false] = ACTIONS(988), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(988), - [sym_super] = ACTIONS(988), - [sym_crate] = ACTIONS(988), - [sym_metavariable] = ACTIONS(986), - [sym_raw_string_literal] = ACTIONS(986), - [sym_float_literal] = ACTIONS(986), - }, - [674] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), + [682] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), [ts_builtin_sym_end] = ACTIONS(2484), [sym_identifier] = ACTIONS(2486), [anon_sym_SEMI] = ACTIONS(2484), @@ -86930,9 +86640,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2484), [sym_float_literal] = ACTIONS(2484), }, - [675] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), + [683] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), [ts_builtin_sym_end] = ACTIONS(2488), [sym_identifier] = ACTIONS(2490), [anon_sym_SEMI] = ACTIONS(2488), @@ -87010,9 +86720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2488), [sym_float_literal] = ACTIONS(2488), }, - [676] = { - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), + [684] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), [ts_builtin_sym_end] = ACTIONS(2492), [sym_identifier] = ACTIONS(2494), [anon_sym_SEMI] = ACTIONS(2492), @@ -87090,9 +86800,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2492), [sym_float_literal] = ACTIONS(2492), }, - [677] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), + [685] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), [ts_builtin_sym_end] = ACTIONS(2496), [sym_identifier] = ACTIONS(2498), [anon_sym_SEMI] = ACTIONS(2496), @@ -87170,9 +86880,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2496), [sym_float_literal] = ACTIONS(2496), }, - [678] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), + [686] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), [ts_builtin_sym_end] = ACTIONS(2500), [sym_identifier] = ACTIONS(2502), [anon_sym_SEMI] = ACTIONS(2500), @@ -87250,9 +86960,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2500), [sym_float_literal] = ACTIONS(2500), }, - [679] = { - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), + [687] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), [ts_builtin_sym_end] = ACTIONS(2504), [sym_identifier] = ACTIONS(2506), [anon_sym_SEMI] = ACTIONS(2504), @@ -87330,9 +87040,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2504), [sym_float_literal] = ACTIONS(2504), }, - [680] = { - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), + [688] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), [ts_builtin_sym_end] = ACTIONS(2508), [sym_identifier] = ACTIONS(2510), [anon_sym_SEMI] = ACTIONS(2508), @@ -87410,9 +87120,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2508), [sym_float_literal] = ACTIONS(2508), }, - [681] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), + [689] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), [ts_builtin_sym_end] = ACTIONS(2512), [sym_identifier] = ACTIONS(2514), [anon_sym_SEMI] = ACTIONS(2512), @@ -87490,9 +87200,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2512), [sym_float_literal] = ACTIONS(2512), }, - [682] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), + [690] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), [ts_builtin_sym_end] = ACTIONS(2516), [sym_identifier] = ACTIONS(2518), [anon_sym_SEMI] = ACTIONS(2516), @@ -87570,9 +87280,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2516), [sym_float_literal] = ACTIONS(2516), }, - [683] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), + [691] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), [ts_builtin_sym_end] = ACTIONS(2520), [sym_identifier] = ACTIONS(2522), [anon_sym_SEMI] = ACTIONS(2520), @@ -87650,9 +87360,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2520), [sym_float_literal] = ACTIONS(2520), }, - [684] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), + [692] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), [ts_builtin_sym_end] = ACTIONS(2524), [sym_identifier] = ACTIONS(2526), [anon_sym_SEMI] = ACTIONS(2524), @@ -87730,9 +87440,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2524), [sym_float_literal] = ACTIONS(2524), }, - [685] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), + [693] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), [ts_builtin_sym_end] = ACTIONS(2528), [sym_identifier] = ACTIONS(2530), [anon_sym_SEMI] = ACTIONS(2528), @@ -87810,9 +87520,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2528), [sym_float_literal] = ACTIONS(2528), }, - [686] = { - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), + [694] = { + [sym_attribute_item] = STATE(1461), + [sym_inner_attribute_item] = STATE(1461), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_match_arm] = STATE(1462), + [sym_last_match_arm] = STATE(3425), + [sym_match_pattern] = STATE(3553), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [aux_sym_match_block_repeat1] = STATE(747), + [aux_sym_match_arm_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), + }, + [695] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), [ts_builtin_sym_end] = ACTIONS(2532), [sym_identifier] = ACTIONS(2534), [anon_sym_SEMI] = ACTIONS(2532), @@ -87890,9 +87680,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2532), [sym_float_literal] = ACTIONS(2532), }, - [687] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), + [696] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), [ts_builtin_sym_end] = ACTIONS(2536), [sym_identifier] = ACTIONS(2538), [anon_sym_SEMI] = ACTIONS(2536), @@ -87970,9 +87760,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2536), [sym_float_literal] = ACTIONS(2536), }, - [688] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), + [697] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), [ts_builtin_sym_end] = ACTIONS(2540), [sym_identifier] = ACTIONS(2542), [anon_sym_SEMI] = ACTIONS(2540), @@ -88050,9 +87840,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2540), [sym_float_literal] = ACTIONS(2540), }, - [689] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), + [698] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), [ts_builtin_sym_end] = ACTIONS(2544), [sym_identifier] = ACTIONS(2546), [anon_sym_SEMI] = ACTIONS(2544), @@ -88130,9 +87920,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2544), [sym_float_literal] = ACTIONS(2544), }, - [690] = { - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), + [699] = { + [sym_line_comment] = STATE(699), + [sym_block_comment] = STATE(699), [ts_builtin_sym_end] = ACTIONS(2548), [sym_identifier] = ACTIONS(2550), [anon_sym_SEMI] = ACTIONS(2548), @@ -88210,9 +88000,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2548), [sym_float_literal] = ACTIONS(2548), }, - [691] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), + [700] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), [ts_builtin_sym_end] = ACTIONS(2552), [sym_identifier] = ACTIONS(2554), [anon_sym_SEMI] = ACTIONS(2552), @@ -88290,9 +88080,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2552), [sym_float_literal] = ACTIONS(2552), }, - [692] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), + [701] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), [ts_builtin_sym_end] = ACTIONS(2556), [sym_identifier] = ACTIONS(2558), [anon_sym_SEMI] = ACTIONS(2556), @@ -88370,11566 +88160,11084 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_literal] = ACTIONS(2556), [sym_float_literal] = ACTIONS(2556), }, - [693] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(2560), - [sym_identifier] = ACTIONS(2562), - [anon_sym_SEMI] = ACTIONS(2560), - [anon_sym_macro_rules_BANG] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2560), - [anon_sym_LBRACK] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(2560), - [anon_sym_RBRACE] = ACTIONS(2560), - [anon_sym_STAR] = ACTIONS(2560), - [anon_sym_u8] = ACTIONS(2562), - [anon_sym_i8] = ACTIONS(2562), - [anon_sym_u16] = ACTIONS(2562), - [anon_sym_i16] = ACTIONS(2562), - [anon_sym_u32] = ACTIONS(2562), - [anon_sym_i32] = ACTIONS(2562), - [anon_sym_u64] = ACTIONS(2562), - [anon_sym_i64] = ACTIONS(2562), - [anon_sym_u128] = ACTIONS(2562), - [anon_sym_i128] = ACTIONS(2562), - [anon_sym_isize] = ACTIONS(2562), - [anon_sym_usize] = ACTIONS(2562), - [anon_sym_f32] = ACTIONS(2562), - [anon_sym_f64] = ACTIONS(2562), - [anon_sym_bool] = ACTIONS(2562), - [anon_sym_str] = ACTIONS(2562), - [anon_sym_char] = ACTIONS(2562), - [anon_sym_DASH] = ACTIONS(2560), - [anon_sym_COLON_COLON] = ACTIONS(2560), - [anon_sym_BANG] = ACTIONS(2560), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_POUND] = ACTIONS(2560), - [anon_sym_LT] = ACTIONS(2560), - [anon_sym_PIPE] = ACTIONS(2560), - [anon_sym_SQUOTE] = ACTIONS(2562), - [anon_sym_async] = ACTIONS(2562), - [anon_sym_break] = ACTIONS(2562), - [anon_sym_const] = ACTIONS(2562), - [anon_sym_continue] = ACTIONS(2562), - [anon_sym_default] = ACTIONS(2562), - [anon_sym_enum] = ACTIONS(2562), - [anon_sym_fn] = ACTIONS(2562), - [anon_sym_for] = ACTIONS(2562), - [anon_sym_if] = ACTIONS(2562), - [anon_sym_impl] = ACTIONS(2562), - [anon_sym_let] = ACTIONS(2562), - [anon_sym_loop] = ACTIONS(2562), - [anon_sym_match] = ACTIONS(2562), - [anon_sym_mod] = ACTIONS(2562), - [anon_sym_pub] = ACTIONS(2562), - [anon_sym_return] = ACTIONS(2562), - [anon_sym_static] = ACTIONS(2562), - [anon_sym_struct] = ACTIONS(2562), - [anon_sym_trait] = ACTIONS(2562), - [anon_sym_type] = ACTIONS(2562), - [anon_sym_union] = ACTIONS(2562), - [anon_sym_unsafe] = ACTIONS(2562), - [anon_sym_use] = ACTIONS(2562), - [anon_sym_while] = ACTIONS(2562), - [anon_sym_extern] = ACTIONS(2562), - [anon_sym_DOT_DOT] = ACTIONS(2560), - [anon_sym_yield] = ACTIONS(2562), - [anon_sym_move] = ACTIONS(2562), - [anon_sym_try] = ACTIONS(2562), - [sym_integer_literal] = ACTIONS(2560), - [aux_sym_string_literal_token1] = ACTIONS(2560), - [sym_char_literal] = ACTIONS(2560), - [anon_sym_true] = ACTIONS(2562), - [anon_sym_false] = ACTIONS(2562), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2562), - [sym_super] = ACTIONS(2562), - [sym_crate] = ACTIONS(2562), - [sym_metavariable] = ACTIONS(2560), - [sym_raw_string_literal] = ACTIONS(2560), - [sym_float_literal] = ACTIONS(2560), - }, - [694] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), - [ts_builtin_sym_end] = ACTIONS(2564), - [sym_identifier] = ACTIONS(2566), - [anon_sym_SEMI] = ACTIONS(2564), - [anon_sym_macro_rules_BANG] = ACTIONS(2564), - [anon_sym_LPAREN] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2564), - [anon_sym_LBRACE] = ACTIONS(2564), - [anon_sym_RBRACE] = ACTIONS(2564), - [anon_sym_STAR] = ACTIONS(2564), - [anon_sym_u8] = ACTIONS(2566), - [anon_sym_i8] = ACTIONS(2566), - [anon_sym_u16] = ACTIONS(2566), - [anon_sym_i16] = ACTIONS(2566), - [anon_sym_u32] = ACTIONS(2566), - [anon_sym_i32] = ACTIONS(2566), - [anon_sym_u64] = ACTIONS(2566), - [anon_sym_i64] = ACTIONS(2566), - [anon_sym_u128] = ACTIONS(2566), - [anon_sym_i128] = ACTIONS(2566), - [anon_sym_isize] = ACTIONS(2566), - [anon_sym_usize] = ACTIONS(2566), - [anon_sym_f32] = ACTIONS(2566), - [anon_sym_f64] = ACTIONS(2566), - [anon_sym_bool] = ACTIONS(2566), - [anon_sym_str] = ACTIONS(2566), - [anon_sym_char] = ACTIONS(2566), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_COLON_COLON] = ACTIONS(2564), - [anon_sym_BANG] = ACTIONS(2564), - [anon_sym_AMP] = ACTIONS(2564), - [anon_sym_POUND] = ACTIONS(2564), - [anon_sym_LT] = ACTIONS(2564), - [anon_sym_PIPE] = ACTIONS(2564), - [anon_sym_SQUOTE] = ACTIONS(2566), - [anon_sym_async] = ACTIONS(2566), - [anon_sym_break] = ACTIONS(2566), - [anon_sym_const] = ACTIONS(2566), - [anon_sym_continue] = ACTIONS(2566), - [anon_sym_default] = ACTIONS(2566), - [anon_sym_enum] = ACTIONS(2566), - [anon_sym_fn] = ACTIONS(2566), - [anon_sym_for] = ACTIONS(2566), - [anon_sym_if] = ACTIONS(2566), - [anon_sym_impl] = ACTIONS(2566), - [anon_sym_let] = ACTIONS(2566), - [anon_sym_loop] = ACTIONS(2566), - [anon_sym_match] = ACTIONS(2566), - [anon_sym_mod] = ACTIONS(2566), - [anon_sym_pub] = ACTIONS(2566), - [anon_sym_return] = ACTIONS(2566), - [anon_sym_static] = ACTIONS(2566), - [anon_sym_struct] = ACTIONS(2566), - [anon_sym_trait] = ACTIONS(2566), - [anon_sym_type] = ACTIONS(2566), - [anon_sym_union] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(2566), - [anon_sym_use] = ACTIONS(2566), - [anon_sym_while] = ACTIONS(2566), - [anon_sym_extern] = ACTIONS(2566), - [anon_sym_DOT_DOT] = ACTIONS(2564), - [anon_sym_yield] = ACTIONS(2566), - [anon_sym_move] = ACTIONS(2566), - [anon_sym_try] = ACTIONS(2566), - [sym_integer_literal] = ACTIONS(2564), - [aux_sym_string_literal_token1] = ACTIONS(2564), - [sym_char_literal] = ACTIONS(2564), - [anon_sym_true] = ACTIONS(2566), - [anon_sym_false] = ACTIONS(2566), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2566), - [sym_super] = ACTIONS(2566), - [sym_crate] = ACTIONS(2566), - [sym_metavariable] = ACTIONS(2564), - [sym_raw_string_literal] = ACTIONS(2564), - [sym_float_literal] = ACTIONS(2564), - }, - [695] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(2568), - [sym_identifier] = ACTIONS(2570), - [anon_sym_SEMI] = ACTIONS(2568), - [anon_sym_macro_rules_BANG] = ACTIONS(2568), - [anon_sym_LPAREN] = ACTIONS(2568), - [anon_sym_LBRACK] = ACTIONS(2568), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_RBRACE] = ACTIONS(2568), - [anon_sym_STAR] = ACTIONS(2568), - [anon_sym_u8] = ACTIONS(2570), - [anon_sym_i8] = ACTIONS(2570), - [anon_sym_u16] = ACTIONS(2570), - [anon_sym_i16] = ACTIONS(2570), - [anon_sym_u32] = ACTIONS(2570), - [anon_sym_i32] = ACTIONS(2570), - [anon_sym_u64] = ACTIONS(2570), - [anon_sym_i64] = ACTIONS(2570), - [anon_sym_u128] = ACTIONS(2570), - [anon_sym_i128] = ACTIONS(2570), - [anon_sym_isize] = ACTIONS(2570), - [anon_sym_usize] = ACTIONS(2570), - [anon_sym_f32] = ACTIONS(2570), - [anon_sym_f64] = ACTIONS(2570), - [anon_sym_bool] = ACTIONS(2570), - [anon_sym_str] = ACTIONS(2570), - [anon_sym_char] = ACTIONS(2570), - [anon_sym_DASH] = ACTIONS(2568), - [anon_sym_COLON_COLON] = ACTIONS(2568), - [anon_sym_BANG] = ACTIONS(2568), - [anon_sym_AMP] = ACTIONS(2568), - [anon_sym_POUND] = ACTIONS(2568), - [anon_sym_LT] = ACTIONS(2568), - [anon_sym_PIPE] = ACTIONS(2568), - [anon_sym_SQUOTE] = ACTIONS(2570), - [anon_sym_async] = ACTIONS(2570), - [anon_sym_break] = ACTIONS(2570), - [anon_sym_const] = ACTIONS(2570), - [anon_sym_continue] = ACTIONS(2570), - [anon_sym_default] = ACTIONS(2570), - [anon_sym_enum] = ACTIONS(2570), - [anon_sym_fn] = ACTIONS(2570), - [anon_sym_for] = ACTIONS(2570), - [anon_sym_if] = ACTIONS(2570), - [anon_sym_impl] = ACTIONS(2570), - [anon_sym_let] = ACTIONS(2570), - [anon_sym_loop] = ACTIONS(2570), - [anon_sym_match] = ACTIONS(2570), - [anon_sym_mod] = ACTIONS(2570), - [anon_sym_pub] = ACTIONS(2570), - [anon_sym_return] = ACTIONS(2570), - [anon_sym_static] = ACTIONS(2570), - [anon_sym_struct] = ACTIONS(2570), - [anon_sym_trait] = ACTIONS(2570), - [anon_sym_type] = ACTIONS(2570), - [anon_sym_union] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(2570), - [anon_sym_use] = ACTIONS(2570), - [anon_sym_while] = ACTIONS(2570), - [anon_sym_extern] = ACTIONS(2570), - [anon_sym_DOT_DOT] = ACTIONS(2568), - [anon_sym_yield] = ACTIONS(2570), - [anon_sym_move] = ACTIONS(2570), - [anon_sym_try] = ACTIONS(2570), - [sym_integer_literal] = ACTIONS(2568), - [aux_sym_string_literal_token1] = ACTIONS(2568), - [sym_char_literal] = ACTIONS(2568), - [anon_sym_true] = ACTIONS(2570), - [anon_sym_false] = ACTIONS(2570), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2570), - [sym_super] = ACTIONS(2570), - [sym_crate] = ACTIONS(2570), - [sym_metavariable] = ACTIONS(2568), - [sym_raw_string_literal] = ACTIONS(2568), - [sym_float_literal] = ACTIONS(2568), - }, - [696] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(2572), - [sym_identifier] = ACTIONS(2574), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_macro_rules_BANG] = ACTIONS(2572), - [anon_sym_LPAREN] = ACTIONS(2572), - [anon_sym_LBRACK] = ACTIONS(2572), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_STAR] = ACTIONS(2572), - [anon_sym_u8] = ACTIONS(2574), - [anon_sym_i8] = ACTIONS(2574), - [anon_sym_u16] = ACTIONS(2574), - [anon_sym_i16] = ACTIONS(2574), - [anon_sym_u32] = ACTIONS(2574), - [anon_sym_i32] = ACTIONS(2574), - [anon_sym_u64] = ACTIONS(2574), - [anon_sym_i64] = ACTIONS(2574), - [anon_sym_u128] = ACTIONS(2574), - [anon_sym_i128] = ACTIONS(2574), - [anon_sym_isize] = ACTIONS(2574), - [anon_sym_usize] = ACTIONS(2574), - [anon_sym_f32] = ACTIONS(2574), - [anon_sym_f64] = ACTIONS(2574), - [anon_sym_bool] = ACTIONS(2574), - [anon_sym_str] = ACTIONS(2574), - [anon_sym_char] = ACTIONS(2574), - [anon_sym_DASH] = ACTIONS(2572), - [anon_sym_COLON_COLON] = ACTIONS(2572), - [anon_sym_BANG] = ACTIONS(2572), - [anon_sym_AMP] = ACTIONS(2572), - [anon_sym_POUND] = ACTIONS(2572), - [anon_sym_LT] = ACTIONS(2572), - [anon_sym_PIPE] = ACTIONS(2572), - [anon_sym_SQUOTE] = ACTIONS(2574), - [anon_sym_async] = ACTIONS(2574), - [anon_sym_break] = ACTIONS(2574), - [anon_sym_const] = ACTIONS(2574), - [anon_sym_continue] = ACTIONS(2574), - [anon_sym_default] = ACTIONS(2574), - [anon_sym_enum] = ACTIONS(2574), - [anon_sym_fn] = ACTIONS(2574), - [anon_sym_for] = ACTIONS(2574), - [anon_sym_if] = ACTIONS(2574), - [anon_sym_impl] = ACTIONS(2574), - [anon_sym_let] = ACTIONS(2574), - [anon_sym_loop] = ACTIONS(2574), - [anon_sym_match] = ACTIONS(2574), - [anon_sym_mod] = ACTIONS(2574), - [anon_sym_pub] = ACTIONS(2574), - [anon_sym_return] = ACTIONS(2574), - [anon_sym_static] = ACTIONS(2574), - [anon_sym_struct] = ACTIONS(2574), - [anon_sym_trait] = ACTIONS(2574), - [anon_sym_type] = ACTIONS(2574), - [anon_sym_union] = ACTIONS(2574), - [anon_sym_unsafe] = ACTIONS(2574), - [anon_sym_use] = ACTIONS(2574), - [anon_sym_while] = ACTIONS(2574), - [anon_sym_extern] = ACTIONS(2574), - [anon_sym_DOT_DOT] = ACTIONS(2572), - [anon_sym_yield] = ACTIONS(2574), - [anon_sym_move] = ACTIONS(2574), - [anon_sym_try] = ACTIONS(2574), - [sym_integer_literal] = ACTIONS(2572), - [aux_sym_string_literal_token1] = ACTIONS(2572), - [sym_char_literal] = ACTIONS(2572), - [anon_sym_true] = ACTIONS(2574), - [anon_sym_false] = ACTIONS(2574), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2574), - [sym_super] = ACTIONS(2574), - [sym_crate] = ACTIONS(2574), - [sym_metavariable] = ACTIONS(2572), - [sym_raw_string_literal] = ACTIONS(2572), - [sym_float_literal] = ACTIONS(2572), - }, - [697] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), - [ts_builtin_sym_end] = ACTIONS(2576), - [sym_identifier] = ACTIONS(2578), - [anon_sym_SEMI] = ACTIONS(2576), - [anon_sym_macro_rules_BANG] = ACTIONS(2576), - [anon_sym_LPAREN] = ACTIONS(2576), - [anon_sym_LBRACK] = ACTIONS(2576), - [anon_sym_LBRACE] = ACTIONS(2576), - [anon_sym_RBRACE] = ACTIONS(2576), - [anon_sym_STAR] = ACTIONS(2576), - [anon_sym_u8] = ACTIONS(2578), - [anon_sym_i8] = ACTIONS(2578), - [anon_sym_u16] = ACTIONS(2578), - [anon_sym_i16] = ACTIONS(2578), - [anon_sym_u32] = ACTIONS(2578), - [anon_sym_i32] = ACTIONS(2578), - [anon_sym_u64] = ACTIONS(2578), - [anon_sym_i64] = ACTIONS(2578), - [anon_sym_u128] = ACTIONS(2578), - [anon_sym_i128] = ACTIONS(2578), - [anon_sym_isize] = ACTIONS(2578), - [anon_sym_usize] = ACTIONS(2578), - [anon_sym_f32] = ACTIONS(2578), - [anon_sym_f64] = ACTIONS(2578), - [anon_sym_bool] = ACTIONS(2578), - [anon_sym_str] = ACTIONS(2578), - [anon_sym_char] = ACTIONS(2578), - [anon_sym_DASH] = ACTIONS(2576), - [anon_sym_COLON_COLON] = ACTIONS(2576), - [anon_sym_BANG] = ACTIONS(2576), - [anon_sym_AMP] = ACTIONS(2576), - [anon_sym_POUND] = ACTIONS(2576), - [anon_sym_LT] = ACTIONS(2576), - [anon_sym_PIPE] = ACTIONS(2576), - [anon_sym_SQUOTE] = ACTIONS(2578), - [anon_sym_async] = ACTIONS(2578), - [anon_sym_break] = ACTIONS(2578), - [anon_sym_const] = ACTIONS(2578), - [anon_sym_continue] = ACTIONS(2578), - [anon_sym_default] = ACTIONS(2578), - [anon_sym_enum] = ACTIONS(2578), - [anon_sym_fn] = ACTIONS(2578), - [anon_sym_for] = ACTIONS(2578), - [anon_sym_if] = ACTIONS(2578), - [anon_sym_impl] = ACTIONS(2578), - [anon_sym_let] = ACTIONS(2578), - [anon_sym_loop] = ACTIONS(2578), - [anon_sym_match] = ACTIONS(2578), - [anon_sym_mod] = ACTIONS(2578), - [anon_sym_pub] = ACTIONS(2578), - [anon_sym_return] = ACTIONS(2578), - [anon_sym_static] = ACTIONS(2578), - [anon_sym_struct] = ACTIONS(2578), - [anon_sym_trait] = ACTIONS(2578), - [anon_sym_type] = ACTIONS(2578), - [anon_sym_union] = ACTIONS(2578), - [anon_sym_unsafe] = ACTIONS(2578), - [anon_sym_use] = ACTIONS(2578), - [anon_sym_while] = ACTIONS(2578), - [anon_sym_extern] = ACTIONS(2578), - [anon_sym_DOT_DOT] = ACTIONS(2576), - [anon_sym_yield] = ACTIONS(2578), - [anon_sym_move] = ACTIONS(2578), - [anon_sym_try] = ACTIONS(2578), - [sym_integer_literal] = ACTIONS(2576), - [aux_sym_string_literal_token1] = ACTIONS(2576), - [sym_char_literal] = ACTIONS(2576), - [anon_sym_true] = ACTIONS(2578), - [anon_sym_false] = ACTIONS(2578), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2578), - [sym_super] = ACTIONS(2578), - [sym_crate] = ACTIONS(2578), - [sym_metavariable] = ACTIONS(2576), - [sym_raw_string_literal] = ACTIONS(2576), - [sym_float_literal] = ACTIONS(2576), - }, - [698] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), - [ts_builtin_sym_end] = ACTIONS(2580), - [sym_identifier] = ACTIONS(2582), - [anon_sym_SEMI] = ACTIONS(2580), - [anon_sym_macro_rules_BANG] = ACTIONS(2580), - [anon_sym_LPAREN] = ACTIONS(2580), - [anon_sym_LBRACK] = ACTIONS(2580), - [anon_sym_LBRACE] = ACTIONS(2580), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_STAR] = ACTIONS(2580), - [anon_sym_u8] = ACTIONS(2582), - [anon_sym_i8] = ACTIONS(2582), - [anon_sym_u16] = ACTIONS(2582), - [anon_sym_i16] = ACTIONS(2582), - [anon_sym_u32] = ACTIONS(2582), - [anon_sym_i32] = ACTIONS(2582), - [anon_sym_u64] = ACTIONS(2582), - [anon_sym_i64] = ACTIONS(2582), - [anon_sym_u128] = ACTIONS(2582), - [anon_sym_i128] = ACTIONS(2582), - [anon_sym_isize] = ACTIONS(2582), - [anon_sym_usize] = ACTIONS(2582), - [anon_sym_f32] = ACTIONS(2582), - [anon_sym_f64] = ACTIONS(2582), - [anon_sym_bool] = ACTIONS(2582), - [anon_sym_str] = ACTIONS(2582), - [anon_sym_char] = ACTIONS(2582), - [anon_sym_DASH] = ACTIONS(2580), - [anon_sym_COLON_COLON] = ACTIONS(2580), - [anon_sym_BANG] = ACTIONS(2580), - [anon_sym_AMP] = ACTIONS(2580), - [anon_sym_POUND] = ACTIONS(2580), - [anon_sym_LT] = ACTIONS(2580), - [anon_sym_PIPE] = ACTIONS(2580), - [anon_sym_SQUOTE] = ACTIONS(2582), - [anon_sym_async] = ACTIONS(2582), - [anon_sym_break] = ACTIONS(2582), - [anon_sym_const] = ACTIONS(2582), - [anon_sym_continue] = ACTIONS(2582), - [anon_sym_default] = ACTIONS(2582), - [anon_sym_enum] = ACTIONS(2582), - [anon_sym_fn] = ACTIONS(2582), - [anon_sym_for] = ACTIONS(2582), - [anon_sym_if] = ACTIONS(2582), - [anon_sym_impl] = ACTIONS(2582), - [anon_sym_let] = ACTIONS(2582), - [anon_sym_loop] = ACTIONS(2582), - [anon_sym_match] = ACTIONS(2582), - [anon_sym_mod] = ACTIONS(2582), - [anon_sym_pub] = ACTIONS(2582), - [anon_sym_return] = ACTIONS(2582), - [anon_sym_static] = ACTIONS(2582), - [anon_sym_struct] = ACTIONS(2582), - [anon_sym_trait] = ACTIONS(2582), - [anon_sym_type] = ACTIONS(2582), - [anon_sym_union] = ACTIONS(2582), - [anon_sym_unsafe] = ACTIONS(2582), - [anon_sym_use] = ACTIONS(2582), - [anon_sym_while] = ACTIONS(2582), - [anon_sym_extern] = ACTIONS(2582), - [anon_sym_DOT_DOT] = ACTIONS(2580), - [anon_sym_yield] = ACTIONS(2582), - [anon_sym_move] = ACTIONS(2582), - [anon_sym_try] = ACTIONS(2582), - [sym_integer_literal] = ACTIONS(2580), - [aux_sym_string_literal_token1] = ACTIONS(2580), - [sym_char_literal] = ACTIONS(2580), - [anon_sym_true] = ACTIONS(2582), - [anon_sym_false] = ACTIONS(2582), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2582), - [sym_super] = ACTIONS(2582), - [sym_crate] = ACTIONS(2582), - [sym_metavariable] = ACTIONS(2580), - [sym_raw_string_literal] = ACTIONS(2580), - [sym_float_literal] = ACTIONS(2580), - }, - [699] = { - [sym_line_comment] = STATE(699), - [sym_block_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(2584), - [sym_identifier] = ACTIONS(2586), - [anon_sym_SEMI] = ACTIONS(2584), - [anon_sym_macro_rules_BANG] = ACTIONS(2584), - [anon_sym_LPAREN] = ACTIONS(2584), - [anon_sym_LBRACK] = ACTIONS(2584), - [anon_sym_LBRACE] = ACTIONS(2584), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_STAR] = ACTIONS(2584), - [anon_sym_u8] = ACTIONS(2586), - [anon_sym_i8] = ACTIONS(2586), - [anon_sym_u16] = ACTIONS(2586), - [anon_sym_i16] = ACTIONS(2586), - [anon_sym_u32] = ACTIONS(2586), - [anon_sym_i32] = ACTIONS(2586), - [anon_sym_u64] = ACTIONS(2586), - [anon_sym_i64] = ACTIONS(2586), - [anon_sym_u128] = ACTIONS(2586), - [anon_sym_i128] = ACTIONS(2586), - [anon_sym_isize] = ACTIONS(2586), - [anon_sym_usize] = ACTIONS(2586), - [anon_sym_f32] = ACTIONS(2586), - [anon_sym_f64] = ACTIONS(2586), - [anon_sym_bool] = ACTIONS(2586), - [anon_sym_str] = ACTIONS(2586), - [anon_sym_char] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2584), - [anon_sym_COLON_COLON] = ACTIONS(2584), - [anon_sym_BANG] = ACTIONS(2584), - [anon_sym_AMP] = ACTIONS(2584), - [anon_sym_POUND] = ACTIONS(2584), - [anon_sym_LT] = ACTIONS(2584), - [anon_sym_PIPE] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_async] = ACTIONS(2586), - [anon_sym_break] = ACTIONS(2586), - [anon_sym_const] = ACTIONS(2586), - [anon_sym_continue] = ACTIONS(2586), - [anon_sym_default] = ACTIONS(2586), - [anon_sym_enum] = ACTIONS(2586), - [anon_sym_fn] = ACTIONS(2586), - [anon_sym_for] = ACTIONS(2586), - [anon_sym_if] = ACTIONS(2586), - [anon_sym_impl] = ACTIONS(2586), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_loop] = ACTIONS(2586), - [anon_sym_match] = ACTIONS(2586), - [anon_sym_mod] = ACTIONS(2586), - [anon_sym_pub] = ACTIONS(2586), - [anon_sym_return] = ACTIONS(2586), - [anon_sym_static] = ACTIONS(2586), - [anon_sym_struct] = ACTIONS(2586), - [anon_sym_trait] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_union] = ACTIONS(2586), - [anon_sym_unsafe] = ACTIONS(2586), - [anon_sym_use] = ACTIONS(2586), - [anon_sym_while] = ACTIONS(2586), - [anon_sym_extern] = ACTIONS(2586), - [anon_sym_DOT_DOT] = ACTIONS(2584), - [anon_sym_yield] = ACTIONS(2586), - [anon_sym_move] = ACTIONS(2586), - [anon_sym_try] = ACTIONS(2586), - [sym_integer_literal] = ACTIONS(2584), - [aux_sym_string_literal_token1] = ACTIONS(2584), - [sym_char_literal] = ACTIONS(2584), - [anon_sym_true] = ACTIONS(2586), - [anon_sym_false] = ACTIONS(2586), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2586), - [sym_super] = ACTIONS(2586), - [sym_crate] = ACTIONS(2586), - [sym_metavariable] = ACTIONS(2584), - [sym_raw_string_literal] = ACTIONS(2584), - [sym_float_literal] = ACTIONS(2584), - }, - [700] = { - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(2588), - [sym_identifier] = ACTIONS(2590), - [anon_sym_SEMI] = ACTIONS(2588), - [anon_sym_macro_rules_BANG] = ACTIONS(2588), - [anon_sym_LPAREN] = ACTIONS(2588), - [anon_sym_LBRACK] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(2588), - [anon_sym_RBRACE] = ACTIONS(2588), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_u8] = ACTIONS(2590), - [anon_sym_i8] = ACTIONS(2590), - [anon_sym_u16] = ACTIONS(2590), - [anon_sym_i16] = ACTIONS(2590), - [anon_sym_u32] = ACTIONS(2590), - [anon_sym_i32] = ACTIONS(2590), - [anon_sym_u64] = ACTIONS(2590), - [anon_sym_i64] = ACTIONS(2590), - [anon_sym_u128] = ACTIONS(2590), - [anon_sym_i128] = ACTIONS(2590), - [anon_sym_isize] = ACTIONS(2590), - [anon_sym_usize] = ACTIONS(2590), - [anon_sym_f32] = ACTIONS(2590), - [anon_sym_f64] = ACTIONS(2590), - [anon_sym_bool] = ACTIONS(2590), - [anon_sym_str] = ACTIONS(2590), - [anon_sym_char] = ACTIONS(2590), - [anon_sym_DASH] = ACTIONS(2588), - [anon_sym_COLON_COLON] = ACTIONS(2588), - [anon_sym_BANG] = ACTIONS(2588), - [anon_sym_AMP] = ACTIONS(2588), - [anon_sym_POUND] = ACTIONS(2588), - [anon_sym_LT] = ACTIONS(2588), - [anon_sym_PIPE] = ACTIONS(2588), - [anon_sym_SQUOTE] = ACTIONS(2590), - [anon_sym_async] = ACTIONS(2590), - [anon_sym_break] = ACTIONS(2590), - [anon_sym_const] = ACTIONS(2590), - [anon_sym_continue] = ACTIONS(2590), - [anon_sym_default] = ACTIONS(2590), - [anon_sym_enum] = ACTIONS(2590), - [anon_sym_fn] = ACTIONS(2590), - [anon_sym_for] = ACTIONS(2590), - [anon_sym_if] = ACTIONS(2590), - [anon_sym_impl] = ACTIONS(2590), - [anon_sym_let] = ACTIONS(2590), - [anon_sym_loop] = ACTIONS(2590), - [anon_sym_match] = ACTIONS(2590), - [anon_sym_mod] = ACTIONS(2590), - [anon_sym_pub] = ACTIONS(2590), - [anon_sym_return] = ACTIONS(2590), - [anon_sym_static] = ACTIONS(2590), - [anon_sym_struct] = ACTIONS(2590), - [anon_sym_trait] = ACTIONS(2590), - [anon_sym_type] = ACTIONS(2590), - [anon_sym_union] = ACTIONS(2590), - [anon_sym_unsafe] = ACTIONS(2590), - [anon_sym_use] = ACTIONS(2590), - [anon_sym_while] = ACTIONS(2590), - [anon_sym_extern] = ACTIONS(2590), - [anon_sym_DOT_DOT] = ACTIONS(2588), - [anon_sym_yield] = ACTIONS(2590), - [anon_sym_move] = ACTIONS(2590), - [anon_sym_try] = ACTIONS(2590), - [sym_integer_literal] = ACTIONS(2588), - [aux_sym_string_literal_token1] = ACTIONS(2588), - [sym_char_literal] = ACTIONS(2588), - [anon_sym_true] = ACTIONS(2590), - [anon_sym_false] = ACTIONS(2590), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2590), - [sym_super] = ACTIONS(2590), - [sym_crate] = ACTIONS(2590), - [sym_metavariable] = ACTIONS(2588), - [sym_raw_string_literal] = ACTIONS(2588), - [sym_float_literal] = ACTIONS(2588), - }, - [701] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(2592), - [sym_identifier] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2592), - [anon_sym_macro_rules_BANG] = ACTIONS(2592), - [anon_sym_LPAREN] = ACTIONS(2592), - [anon_sym_LBRACK] = ACTIONS(2592), - [anon_sym_LBRACE] = ACTIONS(2592), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_STAR] = ACTIONS(2592), - [anon_sym_u8] = ACTIONS(2594), - [anon_sym_i8] = ACTIONS(2594), - [anon_sym_u16] = ACTIONS(2594), - [anon_sym_i16] = ACTIONS(2594), - [anon_sym_u32] = ACTIONS(2594), - [anon_sym_i32] = ACTIONS(2594), - [anon_sym_u64] = ACTIONS(2594), - [anon_sym_i64] = ACTIONS(2594), - [anon_sym_u128] = ACTIONS(2594), - [anon_sym_i128] = ACTIONS(2594), - [anon_sym_isize] = ACTIONS(2594), - [anon_sym_usize] = ACTIONS(2594), - [anon_sym_f32] = ACTIONS(2594), - [anon_sym_f64] = ACTIONS(2594), - [anon_sym_bool] = ACTIONS(2594), - [anon_sym_str] = ACTIONS(2594), - [anon_sym_char] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2592), - [anon_sym_COLON_COLON] = ACTIONS(2592), - [anon_sym_BANG] = ACTIONS(2592), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_POUND] = ACTIONS(2592), - [anon_sym_LT] = ACTIONS(2592), - [anon_sym_PIPE] = ACTIONS(2592), - [anon_sym_SQUOTE] = ACTIONS(2594), - [anon_sym_async] = ACTIONS(2594), - [anon_sym_break] = ACTIONS(2594), - [anon_sym_const] = ACTIONS(2594), - [anon_sym_continue] = ACTIONS(2594), - [anon_sym_default] = ACTIONS(2594), - [anon_sym_enum] = ACTIONS(2594), - [anon_sym_fn] = ACTIONS(2594), - [anon_sym_for] = ACTIONS(2594), - [anon_sym_if] = ACTIONS(2594), - [anon_sym_impl] = ACTIONS(2594), - [anon_sym_let] = ACTIONS(2594), - [anon_sym_loop] = ACTIONS(2594), - [anon_sym_match] = ACTIONS(2594), - [anon_sym_mod] = ACTIONS(2594), - [anon_sym_pub] = ACTIONS(2594), - [anon_sym_return] = ACTIONS(2594), - [anon_sym_static] = ACTIONS(2594), - [anon_sym_struct] = ACTIONS(2594), - [anon_sym_trait] = ACTIONS(2594), - [anon_sym_type] = ACTIONS(2594), - [anon_sym_union] = ACTIONS(2594), - [anon_sym_unsafe] = ACTIONS(2594), - [anon_sym_use] = ACTIONS(2594), - [anon_sym_while] = ACTIONS(2594), - [anon_sym_extern] = ACTIONS(2594), - [anon_sym_DOT_DOT] = ACTIONS(2592), - [anon_sym_yield] = ACTIONS(2594), - [anon_sym_move] = ACTIONS(2594), - [anon_sym_try] = ACTIONS(2594), - [sym_integer_literal] = ACTIONS(2592), - [aux_sym_string_literal_token1] = ACTIONS(2592), - [sym_char_literal] = ACTIONS(2592), - [anon_sym_true] = ACTIONS(2594), - [anon_sym_false] = ACTIONS(2594), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2594), - [sym_super] = ACTIONS(2594), - [sym_crate] = ACTIONS(2594), - [sym_metavariable] = ACTIONS(2592), - [sym_raw_string_literal] = ACTIONS(2592), - [sym_float_literal] = ACTIONS(2592), - }, [702] = { + [sym_empty_statement] = STATE(1143), + [sym_macro_definition] = STATE(1143), + [sym_attribute_item] = STATE(1143), + [sym_inner_attribute_item] = STATE(1143), + [sym_mod_item] = STATE(1143), + [sym_foreign_mod_item] = STATE(1143), + [sym_struct_item] = STATE(1143), + [sym_union_item] = STATE(1143), + [sym_enum_item] = STATE(1143), + [sym_extern_crate_declaration] = STATE(1143), + [sym_const_item] = STATE(1143), + [sym_static_item] = STATE(1143), + [sym_type_item] = STATE(1143), + [sym_function_item] = STATE(1143), + [sym_function_signature_item] = STATE(1143), + [sym_function_modifiers] = STATE(3554), + [sym_impl_item] = STATE(1143), + [sym_trait_item] = STATE(1143), + [sym_associated_type] = STATE(1143), + [sym_let_declaration] = STATE(1143), + [sym_use_declaration] = STATE(1143), + [sym_extern_modifier] = STATE(2155), + [sym_visibility_modifier] = STATE(1923), + [sym_bracketed_type] = STATE(3383), + [sym_generic_type_with_turbofish] = STATE(3313), + [sym_macro_invocation] = STATE(1143), + [sym_scoped_identifier] = STATE(3220), [sym_line_comment] = STATE(702), [sym_block_comment] = STATE(702), - [ts_builtin_sym_end] = ACTIONS(2596), - [sym_identifier] = ACTIONS(2598), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_macro_rules_BANG] = ACTIONS(2596), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_LBRACK] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_u8] = ACTIONS(2598), - [anon_sym_i8] = ACTIONS(2598), - [anon_sym_u16] = ACTIONS(2598), - [anon_sym_i16] = ACTIONS(2598), - [anon_sym_u32] = ACTIONS(2598), - [anon_sym_i32] = ACTIONS(2598), - [anon_sym_u64] = ACTIONS(2598), - [anon_sym_i64] = ACTIONS(2598), - [anon_sym_u128] = ACTIONS(2598), - [anon_sym_i128] = ACTIONS(2598), - [anon_sym_isize] = ACTIONS(2598), - [anon_sym_usize] = ACTIONS(2598), - [anon_sym_f32] = ACTIONS(2598), - [anon_sym_f64] = ACTIONS(2598), - [anon_sym_bool] = ACTIONS(2598), - [anon_sym_str] = ACTIONS(2598), - [anon_sym_char] = ACTIONS(2598), - [anon_sym_DASH] = ACTIONS(2596), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_BANG] = ACTIONS(2596), - [anon_sym_AMP] = ACTIONS(2596), - [anon_sym_POUND] = ACTIONS(2596), - [anon_sym_LT] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2598), - [anon_sym_async] = ACTIONS(2598), - [anon_sym_break] = ACTIONS(2598), - [anon_sym_const] = ACTIONS(2598), - [anon_sym_continue] = ACTIONS(2598), - [anon_sym_default] = ACTIONS(2598), - [anon_sym_enum] = ACTIONS(2598), - [anon_sym_fn] = ACTIONS(2598), - [anon_sym_for] = ACTIONS(2598), - [anon_sym_if] = ACTIONS(2598), + [aux_sym_declaration_list_repeat1] = STATE(702), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2560), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_macro_rules_BANG] = ACTIONS(2566), + [anon_sym_RBRACE] = ACTIONS(2569), + [anon_sym_u8] = ACTIONS(2571), + [anon_sym_i8] = ACTIONS(2571), + [anon_sym_u16] = ACTIONS(2571), + [anon_sym_i16] = ACTIONS(2571), + [anon_sym_u32] = ACTIONS(2571), + [anon_sym_i32] = ACTIONS(2571), + [anon_sym_u64] = ACTIONS(2571), + [anon_sym_i64] = ACTIONS(2571), + [anon_sym_u128] = ACTIONS(2571), + [anon_sym_i128] = ACTIONS(2571), + [anon_sym_isize] = ACTIONS(2571), + [anon_sym_usize] = ACTIONS(2571), + [anon_sym_f32] = ACTIONS(2571), + [anon_sym_f64] = ACTIONS(2571), + [anon_sym_bool] = ACTIONS(2571), + [anon_sym_str] = ACTIONS(2571), + [anon_sym_char] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2574), + [anon_sym_POUND] = ACTIONS(2577), + [anon_sym_LT] = ACTIONS(2580), + [anon_sym_async] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2586), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2592), + [anon_sym_fn] = ACTIONS(2595), [anon_sym_impl] = ACTIONS(2598), - [anon_sym_let] = ACTIONS(2598), - [anon_sym_loop] = ACTIONS(2598), - [anon_sym_match] = ACTIONS(2598), - [anon_sym_mod] = ACTIONS(2598), - [anon_sym_pub] = ACTIONS(2598), - [anon_sym_return] = ACTIONS(2598), - [anon_sym_static] = ACTIONS(2598), - [anon_sym_struct] = ACTIONS(2598), - [anon_sym_trait] = ACTIONS(2598), - [anon_sym_type] = ACTIONS(2598), - [anon_sym_union] = ACTIONS(2598), - [anon_sym_unsafe] = ACTIONS(2598), - [anon_sym_use] = ACTIONS(2598), - [anon_sym_while] = ACTIONS(2598), - [anon_sym_extern] = ACTIONS(2598), - [anon_sym_DOT_DOT] = ACTIONS(2596), - [anon_sym_yield] = ACTIONS(2598), - [anon_sym_move] = ACTIONS(2598), - [anon_sym_try] = ACTIONS(2598), - [sym_integer_literal] = ACTIONS(2596), - [aux_sym_string_literal_token1] = ACTIONS(2596), - [sym_char_literal] = ACTIONS(2596), - [anon_sym_true] = ACTIONS(2598), - [anon_sym_false] = ACTIONS(2598), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2598), - [sym_super] = ACTIONS(2598), - [sym_crate] = ACTIONS(2598), - [sym_metavariable] = ACTIONS(2596), - [sym_raw_string_literal] = ACTIONS(2596), - [sym_float_literal] = ACTIONS(2596), + [anon_sym_let] = ACTIONS(2601), + [anon_sym_mod] = ACTIONS(2604), + [anon_sym_pub] = ACTIONS(2607), + [anon_sym_static] = ACTIONS(2610), + [anon_sym_struct] = ACTIONS(2613), + [anon_sym_trait] = ACTIONS(2616), + [anon_sym_type] = ACTIONS(2619), + [anon_sym_union] = ACTIONS(2622), + [anon_sym_unsafe] = ACTIONS(2625), + [anon_sym_use] = ACTIONS(2628), + [anon_sym_extern] = ACTIONS(2631), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2634), + [sym_super] = ACTIONS(2634), + [sym_crate] = ACTIONS(2637), + [sym_metavariable] = ACTIONS(2640), }, [703] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [ts_builtin_sym_end] = ACTIONS(2600), - [sym_identifier] = ACTIONS(2602), - [anon_sym_SEMI] = ACTIONS(2600), - [anon_sym_macro_rules_BANG] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_RBRACE] = ACTIONS(2600), - [anon_sym_STAR] = ACTIONS(2600), - [anon_sym_u8] = ACTIONS(2602), - [anon_sym_i8] = ACTIONS(2602), - [anon_sym_u16] = ACTIONS(2602), - [anon_sym_i16] = ACTIONS(2602), - [anon_sym_u32] = ACTIONS(2602), - [anon_sym_i32] = ACTIONS(2602), - [anon_sym_u64] = ACTIONS(2602), - [anon_sym_i64] = ACTIONS(2602), - [anon_sym_u128] = ACTIONS(2602), - [anon_sym_i128] = ACTIONS(2602), - [anon_sym_isize] = ACTIONS(2602), - [anon_sym_usize] = ACTIONS(2602), - [anon_sym_f32] = ACTIONS(2602), - [anon_sym_f64] = ACTIONS(2602), - [anon_sym_bool] = ACTIONS(2602), - [anon_sym_str] = ACTIONS(2602), - [anon_sym_char] = ACTIONS(2602), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_COLON_COLON] = ACTIONS(2600), - [anon_sym_BANG] = ACTIONS(2600), - [anon_sym_AMP] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(2600), - [anon_sym_LT] = ACTIONS(2600), - [anon_sym_PIPE] = ACTIONS(2600), - [anon_sym_SQUOTE] = ACTIONS(2602), - [anon_sym_async] = ACTIONS(2602), - [anon_sym_break] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_continue] = ACTIONS(2602), - [anon_sym_default] = ACTIONS(2602), - [anon_sym_enum] = ACTIONS(2602), - [anon_sym_fn] = ACTIONS(2602), - [anon_sym_for] = ACTIONS(2602), - [anon_sym_if] = ACTIONS(2602), - [anon_sym_impl] = ACTIONS(2602), - [anon_sym_let] = ACTIONS(2602), - [anon_sym_loop] = ACTIONS(2602), - [anon_sym_match] = ACTIONS(2602), - [anon_sym_mod] = ACTIONS(2602), - [anon_sym_pub] = ACTIONS(2602), - [anon_sym_return] = ACTIONS(2602), - [anon_sym_static] = ACTIONS(2602), - [anon_sym_struct] = ACTIONS(2602), - [anon_sym_trait] = ACTIONS(2602), - [anon_sym_type] = ACTIONS(2602), - [anon_sym_union] = ACTIONS(2602), - [anon_sym_unsafe] = ACTIONS(2602), - [anon_sym_use] = ACTIONS(2602), - [anon_sym_while] = ACTIONS(2602), - [anon_sym_extern] = ACTIONS(2602), - [anon_sym_DOT_DOT] = ACTIONS(2600), - [anon_sym_yield] = ACTIONS(2602), - [anon_sym_move] = ACTIONS(2602), - [anon_sym_try] = ACTIONS(2602), - [sym_integer_literal] = ACTIONS(2600), - [aux_sym_string_literal_token1] = ACTIONS(2600), - [sym_char_literal] = ACTIONS(2600), - [anon_sym_true] = ACTIONS(2602), - [anon_sym_false] = ACTIONS(2602), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2602), - [sym_super] = ACTIONS(2602), - [sym_crate] = ACTIONS(2602), - [sym_metavariable] = ACTIONS(2600), - [sym_raw_string_literal] = ACTIONS(2600), - [sym_float_literal] = ACTIONS(2600), + [ts_builtin_sym_end] = ACTIONS(2643), + [sym_identifier] = ACTIONS(2645), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_macro_rules_BANG] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_RBRACE] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_u8] = ACTIONS(2645), + [anon_sym_i8] = ACTIONS(2645), + [anon_sym_u16] = ACTIONS(2645), + [anon_sym_i16] = ACTIONS(2645), + [anon_sym_u32] = ACTIONS(2645), + [anon_sym_i32] = ACTIONS(2645), + [anon_sym_u64] = ACTIONS(2645), + [anon_sym_i64] = ACTIONS(2645), + [anon_sym_u128] = ACTIONS(2645), + [anon_sym_i128] = ACTIONS(2645), + [anon_sym_isize] = ACTIONS(2645), + [anon_sym_usize] = ACTIONS(2645), + [anon_sym_f32] = ACTIONS(2645), + [anon_sym_f64] = ACTIONS(2645), + [anon_sym_bool] = ACTIONS(2645), + [anon_sym_str] = ACTIONS(2645), + [anon_sym_char] = ACTIONS(2645), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_POUND] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2645), + [anon_sym_async] = ACTIONS(2645), + [anon_sym_break] = ACTIONS(2645), + [anon_sym_const] = ACTIONS(2645), + [anon_sym_continue] = ACTIONS(2645), + [anon_sym_default] = ACTIONS(2645), + [anon_sym_enum] = ACTIONS(2645), + [anon_sym_fn] = ACTIONS(2645), + [anon_sym_for] = ACTIONS(2645), + [anon_sym_if] = ACTIONS(2645), + [anon_sym_impl] = ACTIONS(2645), + [anon_sym_let] = ACTIONS(2645), + [anon_sym_loop] = ACTIONS(2645), + [anon_sym_match] = ACTIONS(2645), + [anon_sym_mod] = ACTIONS(2645), + [anon_sym_pub] = ACTIONS(2645), + [anon_sym_return] = ACTIONS(2645), + [anon_sym_static] = ACTIONS(2645), + [anon_sym_struct] = ACTIONS(2645), + [anon_sym_trait] = ACTIONS(2645), + [anon_sym_type] = ACTIONS(2645), + [anon_sym_union] = ACTIONS(2645), + [anon_sym_unsafe] = ACTIONS(2645), + [anon_sym_use] = ACTIONS(2645), + [anon_sym_while] = ACTIONS(2645), + [anon_sym_extern] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2643), + [anon_sym_yield] = ACTIONS(2645), + [anon_sym_move] = ACTIONS(2645), + [anon_sym_try] = ACTIONS(2645), + [sym_integer_literal] = ACTIONS(2643), + [aux_sym_string_literal_token1] = ACTIONS(2643), + [sym_char_literal] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2645), + [anon_sym_false] = ACTIONS(2645), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2645), + [sym_super] = ACTIONS(2645), + [sym_crate] = ACTIONS(2645), + [sym_metavariable] = ACTIONS(2643), + [sym_raw_string_literal] = ACTIONS(2643), + [sym_float_literal] = ACTIONS(2643), }, [704] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [ts_builtin_sym_end] = ACTIONS(2604), - [sym_identifier] = ACTIONS(2606), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_macro_rules_BANG] = ACTIONS(2604), - [anon_sym_LPAREN] = ACTIONS(2604), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_RBRACE] = ACTIONS(2604), - [anon_sym_STAR] = ACTIONS(2604), - [anon_sym_u8] = ACTIONS(2606), - [anon_sym_i8] = ACTIONS(2606), - [anon_sym_u16] = ACTIONS(2606), - [anon_sym_i16] = ACTIONS(2606), - [anon_sym_u32] = ACTIONS(2606), - [anon_sym_i32] = ACTIONS(2606), - [anon_sym_u64] = ACTIONS(2606), - [anon_sym_i64] = ACTIONS(2606), - [anon_sym_u128] = ACTIONS(2606), - [anon_sym_i128] = ACTIONS(2606), - [anon_sym_isize] = ACTIONS(2606), - [anon_sym_usize] = ACTIONS(2606), - [anon_sym_f32] = ACTIONS(2606), - [anon_sym_f64] = ACTIONS(2606), - [anon_sym_bool] = ACTIONS(2606), - [anon_sym_str] = ACTIONS(2606), - [anon_sym_char] = ACTIONS(2606), - [anon_sym_DASH] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2604), - [anon_sym_BANG] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(2604), - [anon_sym_LT] = ACTIONS(2604), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_SQUOTE] = ACTIONS(2606), - [anon_sym_async] = ACTIONS(2606), - [anon_sym_break] = ACTIONS(2606), - [anon_sym_const] = ACTIONS(2606), - [anon_sym_continue] = ACTIONS(2606), - [anon_sym_default] = ACTIONS(2606), - [anon_sym_enum] = ACTIONS(2606), - [anon_sym_fn] = ACTIONS(2606), - [anon_sym_for] = ACTIONS(2606), - [anon_sym_if] = ACTIONS(2606), - [anon_sym_impl] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2606), - [anon_sym_loop] = ACTIONS(2606), - [anon_sym_match] = ACTIONS(2606), - [anon_sym_mod] = ACTIONS(2606), - [anon_sym_pub] = ACTIONS(2606), - [anon_sym_return] = ACTIONS(2606), - [anon_sym_static] = ACTIONS(2606), - [anon_sym_struct] = ACTIONS(2606), - [anon_sym_trait] = ACTIONS(2606), - [anon_sym_type] = ACTIONS(2606), - [anon_sym_union] = ACTIONS(2606), - [anon_sym_unsafe] = ACTIONS(2606), - [anon_sym_use] = ACTIONS(2606), - [anon_sym_while] = ACTIONS(2606), - [anon_sym_extern] = ACTIONS(2606), - [anon_sym_DOT_DOT] = ACTIONS(2604), - [anon_sym_yield] = ACTIONS(2606), - [anon_sym_move] = ACTIONS(2606), - [anon_sym_try] = ACTIONS(2606), - [sym_integer_literal] = ACTIONS(2604), - [aux_sym_string_literal_token1] = ACTIONS(2604), - [sym_char_literal] = ACTIONS(2604), - [anon_sym_true] = ACTIONS(2606), - [anon_sym_false] = ACTIONS(2606), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2606), - [sym_super] = ACTIONS(2606), - [sym_crate] = ACTIONS(2606), - [sym_metavariable] = ACTIONS(2604), - [sym_raw_string_literal] = ACTIONS(2604), - [sym_float_literal] = ACTIONS(2604), + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_SEMI] = ACTIONS(2647), + [anon_sym_macro_rules_BANG] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_u8] = ACTIONS(2649), + [anon_sym_i8] = ACTIONS(2649), + [anon_sym_u16] = ACTIONS(2649), + [anon_sym_i16] = ACTIONS(2649), + [anon_sym_u32] = ACTIONS(2649), + [anon_sym_i32] = ACTIONS(2649), + [anon_sym_u64] = ACTIONS(2649), + [anon_sym_i64] = ACTIONS(2649), + [anon_sym_u128] = ACTIONS(2649), + [anon_sym_i128] = ACTIONS(2649), + [anon_sym_isize] = ACTIONS(2649), + [anon_sym_usize] = ACTIONS(2649), + [anon_sym_f32] = ACTIONS(2649), + [anon_sym_f64] = ACTIONS(2649), + [anon_sym_bool] = ACTIONS(2649), + [anon_sym_str] = ACTIONS(2649), + [anon_sym_char] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_COLON_COLON] = ACTIONS(2647), + [anon_sym_BANG] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2647), + [anon_sym_POUND] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2647), + [anon_sym_SQUOTE] = ACTIONS(2649), + [anon_sym_async] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_default] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_impl] = ACTIONS(2649), + [anon_sym_let] = ACTIONS(2649), + [anon_sym_loop] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_mod] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_static] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_trait] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_use] = ACTIONS(2649), + [anon_sym_while] = ACTIONS(2649), + [anon_sym_extern] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2649), + [anon_sym_move] = ACTIONS(2649), + [anon_sym_try] = ACTIONS(2649), + [sym_integer_literal] = ACTIONS(2647), + [aux_sym_string_literal_token1] = ACTIONS(2647), + [sym_char_literal] = ACTIONS(2647), + [anon_sym_true] = ACTIONS(2649), + [anon_sym_false] = ACTIONS(2649), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2649), + [sym_super] = ACTIONS(2649), + [sym_crate] = ACTIONS(2649), + [sym_metavariable] = ACTIONS(2647), + [sym_raw_string_literal] = ACTIONS(2647), + [sym_float_literal] = ACTIONS(2647), }, [705] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [ts_builtin_sym_end] = ACTIONS(2608), - [sym_identifier] = ACTIONS(2610), - [anon_sym_SEMI] = ACTIONS(2608), - [anon_sym_macro_rules_BANG] = ACTIONS(2608), - [anon_sym_LPAREN] = ACTIONS(2608), - [anon_sym_LBRACK] = ACTIONS(2608), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_STAR] = ACTIONS(2608), - [anon_sym_u8] = ACTIONS(2610), - [anon_sym_i8] = ACTIONS(2610), - [anon_sym_u16] = ACTIONS(2610), - [anon_sym_i16] = ACTIONS(2610), - [anon_sym_u32] = ACTIONS(2610), - [anon_sym_i32] = ACTIONS(2610), - [anon_sym_u64] = ACTIONS(2610), - [anon_sym_i64] = ACTIONS(2610), - [anon_sym_u128] = ACTIONS(2610), - [anon_sym_i128] = ACTIONS(2610), - [anon_sym_isize] = ACTIONS(2610), - [anon_sym_usize] = ACTIONS(2610), - [anon_sym_f32] = ACTIONS(2610), - [anon_sym_f64] = ACTIONS(2610), - [anon_sym_bool] = ACTIONS(2610), - [anon_sym_str] = ACTIONS(2610), - [anon_sym_char] = ACTIONS(2610), - [anon_sym_DASH] = ACTIONS(2608), - [anon_sym_COLON_COLON] = ACTIONS(2608), - [anon_sym_BANG] = ACTIONS(2608), - [anon_sym_AMP] = ACTIONS(2608), - [anon_sym_POUND] = ACTIONS(2608), - [anon_sym_LT] = ACTIONS(2608), - [anon_sym_PIPE] = ACTIONS(2608), - [anon_sym_SQUOTE] = ACTIONS(2610), - [anon_sym_async] = ACTIONS(2610), - [anon_sym_break] = ACTIONS(2610), - [anon_sym_const] = ACTIONS(2610), - [anon_sym_continue] = ACTIONS(2610), - [anon_sym_default] = ACTIONS(2610), - [anon_sym_enum] = ACTIONS(2610), - [anon_sym_fn] = ACTIONS(2610), - [anon_sym_for] = ACTIONS(2610), - [anon_sym_if] = ACTIONS(2610), - [anon_sym_impl] = ACTIONS(2610), - [anon_sym_let] = ACTIONS(2610), - [anon_sym_loop] = ACTIONS(2610), - [anon_sym_match] = ACTIONS(2610), - [anon_sym_mod] = ACTIONS(2610), - [anon_sym_pub] = ACTIONS(2610), - [anon_sym_return] = ACTIONS(2610), - [anon_sym_static] = ACTIONS(2610), - [anon_sym_struct] = ACTIONS(2610), - [anon_sym_trait] = ACTIONS(2610), - [anon_sym_type] = ACTIONS(2610), - [anon_sym_union] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(2610), - [anon_sym_use] = ACTIONS(2610), - [anon_sym_while] = ACTIONS(2610), - [anon_sym_extern] = ACTIONS(2610), - [anon_sym_DOT_DOT] = ACTIONS(2608), - [anon_sym_yield] = ACTIONS(2610), - [anon_sym_move] = ACTIONS(2610), - [anon_sym_try] = ACTIONS(2610), - [sym_integer_literal] = ACTIONS(2608), - [aux_sym_string_literal_token1] = ACTIONS(2608), - [sym_char_literal] = ACTIONS(2608), - [anon_sym_true] = ACTIONS(2610), - [anon_sym_false] = ACTIONS(2610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2610), - [sym_super] = ACTIONS(2610), - [sym_crate] = ACTIONS(2610), - [sym_metavariable] = ACTIONS(2608), - [sym_raw_string_literal] = ACTIONS(2608), - [sym_float_literal] = ACTIONS(2608), + [ts_builtin_sym_end] = ACTIONS(2651), + [sym_identifier] = ACTIONS(2653), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_macro_rules_BANG] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_u8] = ACTIONS(2653), + [anon_sym_i8] = ACTIONS(2653), + [anon_sym_u16] = ACTIONS(2653), + [anon_sym_i16] = ACTIONS(2653), + [anon_sym_u32] = ACTIONS(2653), + [anon_sym_i32] = ACTIONS(2653), + [anon_sym_u64] = ACTIONS(2653), + [anon_sym_i64] = ACTIONS(2653), + [anon_sym_u128] = ACTIONS(2653), + [anon_sym_i128] = ACTIONS(2653), + [anon_sym_isize] = ACTIONS(2653), + [anon_sym_usize] = ACTIONS(2653), + [anon_sym_f32] = ACTIONS(2653), + [anon_sym_f64] = ACTIONS(2653), + [anon_sym_bool] = ACTIONS(2653), + [anon_sym_str] = ACTIONS(2653), + [anon_sym_char] = ACTIONS(2653), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_COLON_COLON] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_POUND] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_SQUOTE] = ACTIONS(2653), + [anon_sym_async] = ACTIONS(2653), + [anon_sym_break] = ACTIONS(2653), + [anon_sym_const] = ACTIONS(2653), + [anon_sym_continue] = ACTIONS(2653), + [anon_sym_default] = ACTIONS(2653), + [anon_sym_enum] = ACTIONS(2653), + [anon_sym_fn] = ACTIONS(2653), + [anon_sym_for] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2653), + [anon_sym_impl] = ACTIONS(2653), + [anon_sym_let] = ACTIONS(2653), + [anon_sym_loop] = ACTIONS(2653), + [anon_sym_match] = ACTIONS(2653), + [anon_sym_mod] = ACTIONS(2653), + [anon_sym_pub] = ACTIONS(2653), + [anon_sym_return] = ACTIONS(2653), + [anon_sym_static] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2653), + [anon_sym_trait] = ACTIONS(2653), + [anon_sym_type] = ACTIONS(2653), + [anon_sym_union] = ACTIONS(2653), + [anon_sym_unsafe] = ACTIONS(2653), + [anon_sym_use] = ACTIONS(2653), + [anon_sym_while] = ACTIONS(2653), + [anon_sym_extern] = ACTIONS(2653), + [anon_sym_DOT_DOT] = ACTIONS(2651), + [anon_sym_yield] = ACTIONS(2653), + [anon_sym_move] = ACTIONS(2653), + [anon_sym_try] = ACTIONS(2653), + [sym_integer_literal] = ACTIONS(2651), + [aux_sym_string_literal_token1] = ACTIONS(2651), + [sym_char_literal] = ACTIONS(2651), + [anon_sym_true] = ACTIONS(2653), + [anon_sym_false] = ACTIONS(2653), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2653), + [sym_super] = ACTIONS(2653), + [sym_crate] = ACTIONS(2653), + [sym_metavariable] = ACTIONS(2651), + [sym_raw_string_literal] = ACTIONS(2651), + [sym_float_literal] = ACTIONS(2651), }, [706] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [ts_builtin_sym_end] = ACTIONS(2612), - [sym_identifier] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2612), - [anon_sym_macro_rules_BANG] = ACTIONS(2612), - [anon_sym_LPAREN] = ACTIONS(2612), - [anon_sym_LBRACK] = ACTIONS(2612), - [anon_sym_LBRACE] = ACTIONS(2612), - [anon_sym_RBRACE] = ACTIONS(2612), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_u8] = ACTIONS(2614), - [anon_sym_i8] = ACTIONS(2614), - [anon_sym_u16] = ACTIONS(2614), - [anon_sym_i16] = ACTIONS(2614), - [anon_sym_u32] = ACTIONS(2614), - [anon_sym_i32] = ACTIONS(2614), - [anon_sym_u64] = ACTIONS(2614), - [anon_sym_i64] = ACTIONS(2614), - [anon_sym_u128] = ACTIONS(2614), - [anon_sym_i128] = ACTIONS(2614), - [anon_sym_isize] = ACTIONS(2614), - [anon_sym_usize] = ACTIONS(2614), - [anon_sym_f32] = ACTIONS(2614), - [anon_sym_f64] = ACTIONS(2614), - [anon_sym_bool] = ACTIONS(2614), - [anon_sym_str] = ACTIONS(2614), - [anon_sym_char] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2612), - [anon_sym_COLON_COLON] = ACTIONS(2612), - [anon_sym_BANG] = ACTIONS(2612), - [anon_sym_AMP] = ACTIONS(2612), - [anon_sym_POUND] = ACTIONS(2612), - [anon_sym_LT] = ACTIONS(2612), - [anon_sym_PIPE] = ACTIONS(2612), - [anon_sym_SQUOTE] = ACTIONS(2614), - [anon_sym_async] = ACTIONS(2614), - [anon_sym_break] = ACTIONS(2614), - [anon_sym_const] = ACTIONS(2614), - [anon_sym_continue] = ACTIONS(2614), - [anon_sym_default] = ACTIONS(2614), - [anon_sym_enum] = ACTIONS(2614), - [anon_sym_fn] = ACTIONS(2614), - [anon_sym_for] = ACTIONS(2614), - [anon_sym_if] = ACTIONS(2614), - [anon_sym_impl] = ACTIONS(2614), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_loop] = ACTIONS(2614), - [anon_sym_match] = ACTIONS(2614), - [anon_sym_mod] = ACTIONS(2614), - [anon_sym_pub] = ACTIONS(2614), - [anon_sym_return] = ACTIONS(2614), - [anon_sym_static] = ACTIONS(2614), - [anon_sym_struct] = ACTIONS(2614), - [anon_sym_trait] = ACTIONS(2614), - [anon_sym_type] = ACTIONS(2614), - [anon_sym_union] = ACTIONS(2614), - [anon_sym_unsafe] = ACTIONS(2614), - [anon_sym_use] = ACTIONS(2614), - [anon_sym_while] = ACTIONS(2614), - [anon_sym_extern] = ACTIONS(2614), - [anon_sym_DOT_DOT] = ACTIONS(2612), - [anon_sym_yield] = ACTIONS(2614), - [anon_sym_move] = ACTIONS(2614), - [anon_sym_try] = ACTIONS(2614), - [sym_integer_literal] = ACTIONS(2612), - [aux_sym_string_literal_token1] = ACTIONS(2612), - [sym_char_literal] = ACTIONS(2612), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2614), - [sym_super] = ACTIONS(2614), - [sym_crate] = ACTIONS(2614), - [sym_metavariable] = ACTIONS(2612), - [sym_raw_string_literal] = ACTIONS(2612), - [sym_float_literal] = ACTIONS(2612), + [ts_builtin_sym_end] = ACTIONS(2655), + [sym_identifier] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_macro_rules_BANG] = ACTIONS(2655), + [anon_sym_LPAREN] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(2655), + [anon_sym_RBRACE] = ACTIONS(2655), + [anon_sym_STAR] = ACTIONS(2655), + [anon_sym_u8] = ACTIONS(2657), + [anon_sym_i8] = ACTIONS(2657), + [anon_sym_u16] = ACTIONS(2657), + [anon_sym_i16] = ACTIONS(2657), + [anon_sym_u32] = ACTIONS(2657), + [anon_sym_i32] = ACTIONS(2657), + [anon_sym_u64] = ACTIONS(2657), + [anon_sym_i64] = ACTIONS(2657), + [anon_sym_u128] = ACTIONS(2657), + [anon_sym_i128] = ACTIONS(2657), + [anon_sym_isize] = ACTIONS(2657), + [anon_sym_usize] = ACTIONS(2657), + [anon_sym_f32] = ACTIONS(2657), + [anon_sym_f64] = ACTIONS(2657), + [anon_sym_bool] = ACTIONS(2657), + [anon_sym_str] = ACTIONS(2657), + [anon_sym_char] = ACTIONS(2657), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_COLON_COLON] = ACTIONS(2655), + [anon_sym_BANG] = ACTIONS(2655), + [anon_sym_AMP] = ACTIONS(2655), + [anon_sym_POUND] = ACTIONS(2655), + [anon_sym_LT] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2655), + [anon_sym_SQUOTE] = ACTIONS(2657), + [anon_sym_async] = ACTIONS(2657), + [anon_sym_break] = ACTIONS(2657), + [anon_sym_const] = ACTIONS(2657), + [anon_sym_continue] = ACTIONS(2657), + [anon_sym_default] = ACTIONS(2657), + [anon_sym_enum] = ACTIONS(2657), + [anon_sym_fn] = ACTIONS(2657), + [anon_sym_for] = ACTIONS(2657), + [anon_sym_if] = ACTIONS(2657), + [anon_sym_impl] = ACTIONS(2657), + [anon_sym_let] = ACTIONS(2657), + [anon_sym_loop] = ACTIONS(2657), + [anon_sym_match] = ACTIONS(2657), + [anon_sym_mod] = ACTIONS(2657), + [anon_sym_pub] = ACTIONS(2657), + [anon_sym_return] = ACTIONS(2657), + [anon_sym_static] = ACTIONS(2657), + [anon_sym_struct] = ACTIONS(2657), + [anon_sym_trait] = ACTIONS(2657), + [anon_sym_type] = ACTIONS(2657), + [anon_sym_union] = ACTIONS(2657), + [anon_sym_unsafe] = ACTIONS(2657), + [anon_sym_use] = ACTIONS(2657), + [anon_sym_while] = ACTIONS(2657), + [anon_sym_extern] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2655), + [anon_sym_yield] = ACTIONS(2657), + [anon_sym_move] = ACTIONS(2657), + [anon_sym_try] = ACTIONS(2657), + [sym_integer_literal] = ACTIONS(2655), + [aux_sym_string_literal_token1] = ACTIONS(2655), + [sym_char_literal] = ACTIONS(2655), + [anon_sym_true] = ACTIONS(2657), + [anon_sym_false] = ACTIONS(2657), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2657), + [sym_super] = ACTIONS(2657), + [sym_crate] = ACTIONS(2657), + [sym_metavariable] = ACTIONS(2655), + [sym_raw_string_literal] = ACTIONS(2655), + [sym_float_literal] = ACTIONS(2655), }, [707] = { [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [ts_builtin_sym_end] = ACTIONS(2616), - [sym_identifier] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_macro_rules_BANG] = ACTIONS(2616), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_LBRACK] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_STAR] = ACTIONS(2616), - [anon_sym_u8] = ACTIONS(2618), - [anon_sym_i8] = ACTIONS(2618), - [anon_sym_u16] = ACTIONS(2618), - [anon_sym_i16] = ACTIONS(2618), - [anon_sym_u32] = ACTIONS(2618), - [anon_sym_i32] = ACTIONS(2618), - [anon_sym_u64] = ACTIONS(2618), - [anon_sym_i64] = ACTIONS(2618), - [anon_sym_u128] = ACTIONS(2618), - [anon_sym_i128] = ACTIONS(2618), - [anon_sym_isize] = ACTIONS(2618), - [anon_sym_usize] = ACTIONS(2618), - [anon_sym_f32] = ACTIONS(2618), - [anon_sym_f64] = ACTIONS(2618), - [anon_sym_bool] = ACTIONS(2618), - [anon_sym_str] = ACTIONS(2618), - [anon_sym_char] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2616), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_BANG] = ACTIONS(2616), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_POUND] = ACTIONS(2616), - [anon_sym_LT] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2618), - [anon_sym_async] = ACTIONS(2618), - [anon_sym_break] = ACTIONS(2618), - [anon_sym_const] = ACTIONS(2618), - [anon_sym_continue] = ACTIONS(2618), - [anon_sym_default] = ACTIONS(2618), - [anon_sym_enum] = ACTIONS(2618), - [anon_sym_fn] = ACTIONS(2618), - [anon_sym_for] = ACTIONS(2618), - [anon_sym_if] = ACTIONS(2618), - [anon_sym_impl] = ACTIONS(2618), - [anon_sym_let] = ACTIONS(2618), - [anon_sym_loop] = ACTIONS(2618), - [anon_sym_match] = ACTIONS(2618), - [anon_sym_mod] = ACTIONS(2618), - [anon_sym_pub] = ACTIONS(2618), - [anon_sym_return] = ACTIONS(2618), - [anon_sym_static] = ACTIONS(2618), - [anon_sym_struct] = ACTIONS(2618), - [anon_sym_trait] = ACTIONS(2618), - [anon_sym_type] = ACTIONS(2618), - [anon_sym_union] = ACTIONS(2618), - [anon_sym_unsafe] = ACTIONS(2618), - [anon_sym_use] = ACTIONS(2618), - [anon_sym_while] = ACTIONS(2618), - [anon_sym_extern] = ACTIONS(2618), - [anon_sym_DOT_DOT] = ACTIONS(2616), - [anon_sym_yield] = ACTIONS(2618), - [anon_sym_move] = ACTIONS(2618), - [anon_sym_try] = ACTIONS(2618), - [sym_integer_literal] = ACTIONS(2616), - [aux_sym_string_literal_token1] = ACTIONS(2616), - [sym_char_literal] = ACTIONS(2616), - [anon_sym_true] = ACTIONS(2618), - [anon_sym_false] = ACTIONS(2618), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2618), - [sym_super] = ACTIONS(2618), - [sym_crate] = ACTIONS(2618), - [sym_metavariable] = ACTIONS(2616), - [sym_raw_string_literal] = ACTIONS(2616), - [sym_float_literal] = ACTIONS(2616), + [ts_builtin_sym_end] = ACTIONS(2659), + [sym_identifier] = ACTIONS(2661), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_macro_rules_BANG] = ACTIONS(2659), + [anon_sym_LPAREN] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2659), + [anon_sym_LBRACE] = ACTIONS(2659), + [anon_sym_RBRACE] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2659), + [anon_sym_u8] = ACTIONS(2661), + [anon_sym_i8] = ACTIONS(2661), + [anon_sym_u16] = ACTIONS(2661), + [anon_sym_i16] = ACTIONS(2661), + [anon_sym_u32] = ACTIONS(2661), + [anon_sym_i32] = ACTIONS(2661), + [anon_sym_u64] = ACTIONS(2661), + [anon_sym_i64] = ACTIONS(2661), + [anon_sym_u128] = ACTIONS(2661), + [anon_sym_i128] = ACTIONS(2661), + [anon_sym_isize] = ACTIONS(2661), + [anon_sym_usize] = ACTIONS(2661), + [anon_sym_f32] = ACTIONS(2661), + [anon_sym_f64] = ACTIONS(2661), + [anon_sym_bool] = ACTIONS(2661), + [anon_sym_str] = ACTIONS(2661), + [anon_sym_char] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_COLON_COLON] = ACTIONS(2659), + [anon_sym_BANG] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_POUND] = ACTIONS(2659), + [anon_sym_LT] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_SQUOTE] = ACTIONS(2661), + [anon_sym_async] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_const] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_fn] = ACTIONS(2661), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_impl] = ACTIONS(2661), + [anon_sym_let] = ACTIONS(2661), + [anon_sym_loop] = ACTIONS(2661), + [anon_sym_match] = ACTIONS(2661), + [anon_sym_mod] = ACTIONS(2661), + [anon_sym_pub] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(2661), + [anon_sym_trait] = ACTIONS(2661), + [anon_sym_type] = ACTIONS(2661), + [anon_sym_union] = ACTIONS(2661), + [anon_sym_unsafe] = ACTIONS(2661), + [anon_sym_use] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym_DOT_DOT] = ACTIONS(2659), + [anon_sym_yield] = ACTIONS(2661), + [anon_sym_move] = ACTIONS(2661), + [anon_sym_try] = ACTIONS(2661), + [sym_integer_literal] = ACTIONS(2659), + [aux_sym_string_literal_token1] = ACTIONS(2659), + [sym_char_literal] = ACTIONS(2659), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2661), + [sym_super] = ACTIONS(2661), + [sym_crate] = ACTIONS(2661), + [sym_metavariable] = ACTIONS(2659), + [sym_raw_string_literal] = ACTIONS(2659), + [sym_float_literal] = ACTIONS(2659), }, [708] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(2620), - [sym_identifier] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2620), - [anon_sym_macro_rules_BANG] = ACTIONS(2620), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_LBRACK] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2620), - [anon_sym_RBRACE] = ACTIONS(2620), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_u8] = ACTIONS(2622), - [anon_sym_i8] = ACTIONS(2622), - [anon_sym_u16] = ACTIONS(2622), - [anon_sym_i16] = ACTIONS(2622), - [anon_sym_u32] = ACTIONS(2622), - [anon_sym_i32] = ACTIONS(2622), - [anon_sym_u64] = ACTIONS(2622), - [anon_sym_i64] = ACTIONS(2622), - [anon_sym_u128] = ACTIONS(2622), - [anon_sym_i128] = ACTIONS(2622), - [anon_sym_isize] = ACTIONS(2622), - [anon_sym_usize] = ACTIONS(2622), - [anon_sym_f32] = ACTIONS(2622), - [anon_sym_f64] = ACTIONS(2622), - [anon_sym_bool] = ACTIONS(2622), - [anon_sym_str] = ACTIONS(2622), - [anon_sym_char] = ACTIONS(2622), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_COLON_COLON] = ACTIONS(2620), - [anon_sym_BANG] = ACTIONS(2620), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_POUND] = ACTIONS(2620), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_SQUOTE] = ACTIONS(2622), - [anon_sym_async] = ACTIONS(2622), - [anon_sym_break] = ACTIONS(2622), - [anon_sym_const] = ACTIONS(2622), - [anon_sym_continue] = ACTIONS(2622), - [anon_sym_default] = ACTIONS(2622), - [anon_sym_enum] = ACTIONS(2622), - [anon_sym_fn] = ACTIONS(2622), - [anon_sym_for] = ACTIONS(2622), - [anon_sym_if] = ACTIONS(2622), - [anon_sym_impl] = ACTIONS(2622), - [anon_sym_let] = ACTIONS(2622), - [anon_sym_loop] = ACTIONS(2622), - [anon_sym_match] = ACTIONS(2622), - [anon_sym_mod] = ACTIONS(2622), - [anon_sym_pub] = ACTIONS(2622), - [anon_sym_return] = ACTIONS(2622), - [anon_sym_static] = ACTIONS(2622), - [anon_sym_struct] = ACTIONS(2622), - [anon_sym_trait] = ACTIONS(2622), - [anon_sym_type] = ACTIONS(2622), - [anon_sym_union] = ACTIONS(2622), - [anon_sym_unsafe] = ACTIONS(2622), - [anon_sym_use] = ACTIONS(2622), - [anon_sym_while] = ACTIONS(2622), - [anon_sym_extern] = ACTIONS(2622), - [anon_sym_DOT_DOT] = ACTIONS(2620), - [anon_sym_yield] = ACTIONS(2622), - [anon_sym_move] = ACTIONS(2622), - [anon_sym_try] = ACTIONS(2622), - [sym_integer_literal] = ACTIONS(2620), - [aux_sym_string_literal_token1] = ACTIONS(2620), - [sym_char_literal] = ACTIONS(2620), - [anon_sym_true] = ACTIONS(2622), - [anon_sym_false] = ACTIONS(2622), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2622), - [sym_super] = ACTIONS(2622), - [sym_crate] = ACTIONS(2622), - [sym_metavariable] = ACTIONS(2620), - [sym_raw_string_literal] = ACTIONS(2620), - [sym_float_literal] = ACTIONS(2620), + [ts_builtin_sym_end] = ACTIONS(2663), + [sym_identifier] = ACTIONS(2665), + [anon_sym_SEMI] = ACTIONS(2663), + [anon_sym_macro_rules_BANG] = ACTIONS(2663), + [anon_sym_LPAREN] = ACTIONS(2663), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_RBRACE] = ACTIONS(2663), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_u8] = ACTIONS(2665), + [anon_sym_i8] = ACTIONS(2665), + [anon_sym_u16] = ACTIONS(2665), + [anon_sym_i16] = ACTIONS(2665), + [anon_sym_u32] = ACTIONS(2665), + [anon_sym_i32] = ACTIONS(2665), + [anon_sym_u64] = ACTIONS(2665), + [anon_sym_i64] = ACTIONS(2665), + [anon_sym_u128] = ACTIONS(2665), + [anon_sym_i128] = ACTIONS(2665), + [anon_sym_isize] = ACTIONS(2665), + [anon_sym_usize] = ACTIONS(2665), + [anon_sym_f32] = ACTIONS(2665), + [anon_sym_f64] = ACTIONS(2665), + [anon_sym_bool] = ACTIONS(2665), + [anon_sym_str] = ACTIONS(2665), + [anon_sym_char] = ACTIONS(2665), + [anon_sym_DASH] = ACTIONS(2663), + [anon_sym_COLON_COLON] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2663), + [anon_sym_POUND] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(2663), + [anon_sym_PIPE] = ACTIONS(2663), + [anon_sym_SQUOTE] = ACTIONS(2665), + [anon_sym_async] = ACTIONS(2665), + [anon_sym_break] = ACTIONS(2665), + [anon_sym_const] = ACTIONS(2665), + [anon_sym_continue] = ACTIONS(2665), + [anon_sym_default] = ACTIONS(2665), + [anon_sym_enum] = ACTIONS(2665), + [anon_sym_fn] = ACTIONS(2665), + [anon_sym_for] = ACTIONS(2665), + [anon_sym_if] = ACTIONS(2665), + [anon_sym_impl] = ACTIONS(2665), + [anon_sym_let] = ACTIONS(2665), + [anon_sym_loop] = ACTIONS(2665), + [anon_sym_match] = ACTIONS(2665), + [anon_sym_mod] = ACTIONS(2665), + [anon_sym_pub] = ACTIONS(2665), + [anon_sym_return] = ACTIONS(2665), + [anon_sym_static] = ACTIONS(2665), + [anon_sym_struct] = ACTIONS(2665), + [anon_sym_trait] = ACTIONS(2665), + [anon_sym_type] = ACTIONS(2665), + [anon_sym_union] = ACTIONS(2665), + [anon_sym_unsafe] = ACTIONS(2665), + [anon_sym_use] = ACTIONS(2665), + [anon_sym_while] = ACTIONS(2665), + [anon_sym_extern] = ACTIONS(2665), + [anon_sym_DOT_DOT] = ACTIONS(2663), + [anon_sym_yield] = ACTIONS(2665), + [anon_sym_move] = ACTIONS(2665), + [anon_sym_try] = ACTIONS(2665), + [sym_integer_literal] = ACTIONS(2663), + [aux_sym_string_literal_token1] = ACTIONS(2663), + [sym_char_literal] = ACTIONS(2663), + [anon_sym_true] = ACTIONS(2665), + [anon_sym_false] = ACTIONS(2665), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2665), + [sym_super] = ACTIONS(2665), + [sym_crate] = ACTIONS(2665), + [sym_metavariable] = ACTIONS(2663), + [sym_raw_string_literal] = ACTIONS(2663), + [sym_float_literal] = ACTIONS(2663), }, [709] = { [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [ts_builtin_sym_end] = ACTIONS(2624), - [sym_identifier] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_macro_rules_BANG] = ACTIONS(2624), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_LBRACK] = ACTIONS(2624), - [anon_sym_LBRACE] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_STAR] = ACTIONS(2624), - [anon_sym_u8] = ACTIONS(2626), - [anon_sym_i8] = ACTIONS(2626), - [anon_sym_u16] = ACTIONS(2626), - [anon_sym_i16] = ACTIONS(2626), - [anon_sym_u32] = ACTIONS(2626), - [anon_sym_i32] = ACTIONS(2626), - [anon_sym_u64] = ACTIONS(2626), - [anon_sym_i64] = ACTIONS(2626), - [anon_sym_u128] = ACTIONS(2626), - [anon_sym_i128] = ACTIONS(2626), - [anon_sym_isize] = ACTIONS(2626), - [anon_sym_usize] = ACTIONS(2626), - [anon_sym_f32] = ACTIONS(2626), - [anon_sym_f64] = ACTIONS(2626), - [anon_sym_bool] = ACTIONS(2626), - [anon_sym_str] = ACTIONS(2626), - [anon_sym_char] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2624), - [anon_sym_COLON_COLON] = ACTIONS(2624), - [anon_sym_BANG] = ACTIONS(2624), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_POUND] = ACTIONS(2624), - [anon_sym_LT] = ACTIONS(2624), - [anon_sym_PIPE] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2626), - [anon_sym_async] = ACTIONS(2626), - [anon_sym_break] = ACTIONS(2626), - [anon_sym_const] = ACTIONS(2626), - [anon_sym_continue] = ACTIONS(2626), - [anon_sym_default] = ACTIONS(2626), - [anon_sym_enum] = ACTIONS(2626), - [anon_sym_fn] = ACTIONS(2626), - [anon_sym_for] = ACTIONS(2626), - [anon_sym_if] = ACTIONS(2626), - [anon_sym_impl] = ACTIONS(2626), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_loop] = ACTIONS(2626), - [anon_sym_match] = ACTIONS(2626), - [anon_sym_mod] = ACTIONS(2626), - [anon_sym_pub] = ACTIONS(2626), - [anon_sym_return] = ACTIONS(2626), - [anon_sym_static] = ACTIONS(2626), - [anon_sym_struct] = ACTIONS(2626), - [anon_sym_trait] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_union] = ACTIONS(2626), - [anon_sym_unsafe] = ACTIONS(2626), - [anon_sym_use] = ACTIONS(2626), - [anon_sym_while] = ACTIONS(2626), - [anon_sym_extern] = ACTIONS(2626), - [anon_sym_DOT_DOT] = ACTIONS(2624), - [anon_sym_yield] = ACTIONS(2626), - [anon_sym_move] = ACTIONS(2626), - [anon_sym_try] = ACTIONS(2626), - [sym_integer_literal] = ACTIONS(2624), - [aux_sym_string_literal_token1] = ACTIONS(2624), - [sym_char_literal] = ACTIONS(2624), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2626), - [sym_super] = ACTIONS(2626), - [sym_crate] = ACTIONS(2626), - [sym_metavariable] = ACTIONS(2624), - [sym_raw_string_literal] = ACTIONS(2624), - [sym_float_literal] = ACTIONS(2624), + [ts_builtin_sym_end] = ACTIONS(2667), + [sym_identifier] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2667), + [anon_sym_macro_rules_BANG] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2667), + [anon_sym_u8] = ACTIONS(2669), + [anon_sym_i8] = ACTIONS(2669), + [anon_sym_u16] = ACTIONS(2669), + [anon_sym_i16] = ACTIONS(2669), + [anon_sym_u32] = ACTIONS(2669), + [anon_sym_i32] = ACTIONS(2669), + [anon_sym_u64] = ACTIONS(2669), + [anon_sym_i64] = ACTIONS(2669), + [anon_sym_u128] = ACTIONS(2669), + [anon_sym_i128] = ACTIONS(2669), + [anon_sym_isize] = ACTIONS(2669), + [anon_sym_usize] = ACTIONS(2669), + [anon_sym_f32] = ACTIONS(2669), + [anon_sym_f64] = ACTIONS(2669), + [anon_sym_bool] = ACTIONS(2669), + [anon_sym_str] = ACTIONS(2669), + [anon_sym_char] = ACTIONS(2669), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2667), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(2667), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_SQUOTE] = ACTIONS(2669), + [anon_sym_async] = ACTIONS(2669), + [anon_sym_break] = ACTIONS(2669), + [anon_sym_const] = ACTIONS(2669), + [anon_sym_continue] = ACTIONS(2669), + [anon_sym_default] = ACTIONS(2669), + [anon_sym_enum] = ACTIONS(2669), + [anon_sym_fn] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2669), + [anon_sym_if] = ACTIONS(2669), + [anon_sym_impl] = ACTIONS(2669), + [anon_sym_let] = ACTIONS(2669), + [anon_sym_loop] = ACTIONS(2669), + [anon_sym_match] = ACTIONS(2669), + [anon_sym_mod] = ACTIONS(2669), + [anon_sym_pub] = ACTIONS(2669), + [anon_sym_return] = ACTIONS(2669), + [anon_sym_static] = ACTIONS(2669), + [anon_sym_struct] = ACTIONS(2669), + [anon_sym_trait] = ACTIONS(2669), + [anon_sym_type] = ACTIONS(2669), + [anon_sym_union] = ACTIONS(2669), + [anon_sym_unsafe] = ACTIONS(2669), + [anon_sym_use] = ACTIONS(2669), + [anon_sym_while] = ACTIONS(2669), + [anon_sym_extern] = ACTIONS(2669), + [anon_sym_DOT_DOT] = ACTIONS(2667), + [anon_sym_yield] = ACTIONS(2669), + [anon_sym_move] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2669), + [sym_integer_literal] = ACTIONS(2667), + [aux_sym_string_literal_token1] = ACTIONS(2667), + [sym_char_literal] = ACTIONS(2667), + [anon_sym_true] = ACTIONS(2669), + [anon_sym_false] = ACTIONS(2669), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2669), + [sym_super] = ACTIONS(2669), + [sym_crate] = ACTIONS(2669), + [sym_metavariable] = ACTIONS(2667), + [sym_raw_string_literal] = ACTIONS(2667), + [sym_float_literal] = ACTIONS(2667), }, [710] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [ts_builtin_sym_end] = ACTIONS(2628), - [sym_identifier] = ACTIONS(2630), - [anon_sym_SEMI] = ACTIONS(2628), - [anon_sym_macro_rules_BANG] = ACTIONS(2628), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_LBRACK] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2628), - [anon_sym_STAR] = ACTIONS(2628), - [anon_sym_u8] = ACTIONS(2630), - [anon_sym_i8] = ACTIONS(2630), - [anon_sym_u16] = ACTIONS(2630), - [anon_sym_i16] = ACTIONS(2630), - [anon_sym_u32] = ACTIONS(2630), - [anon_sym_i32] = ACTIONS(2630), - [anon_sym_u64] = ACTIONS(2630), - [anon_sym_i64] = ACTIONS(2630), - [anon_sym_u128] = ACTIONS(2630), - [anon_sym_i128] = ACTIONS(2630), - [anon_sym_isize] = ACTIONS(2630), - [anon_sym_usize] = ACTIONS(2630), - [anon_sym_f32] = ACTIONS(2630), - [anon_sym_f64] = ACTIONS(2630), - [anon_sym_bool] = ACTIONS(2630), - [anon_sym_str] = ACTIONS(2630), - [anon_sym_char] = ACTIONS(2630), - [anon_sym_DASH] = ACTIONS(2628), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_BANG] = ACTIONS(2628), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_POUND] = ACTIONS(2628), - [anon_sym_LT] = ACTIONS(2628), - [anon_sym_PIPE] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2630), - [anon_sym_async] = ACTIONS(2630), - [anon_sym_break] = ACTIONS(2630), - [anon_sym_const] = ACTIONS(2630), - [anon_sym_continue] = ACTIONS(2630), - [anon_sym_default] = ACTIONS(2630), - [anon_sym_enum] = ACTIONS(2630), - [anon_sym_fn] = ACTIONS(2630), - [anon_sym_for] = ACTIONS(2630), - [anon_sym_if] = ACTIONS(2630), - [anon_sym_impl] = ACTIONS(2630), - [anon_sym_let] = ACTIONS(2630), - [anon_sym_loop] = ACTIONS(2630), - [anon_sym_match] = ACTIONS(2630), - [anon_sym_mod] = ACTIONS(2630), - [anon_sym_pub] = ACTIONS(2630), - [anon_sym_return] = ACTIONS(2630), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_struct] = ACTIONS(2630), - [anon_sym_trait] = ACTIONS(2630), - [anon_sym_type] = ACTIONS(2630), - [anon_sym_union] = ACTIONS(2630), - [anon_sym_unsafe] = ACTIONS(2630), - [anon_sym_use] = ACTIONS(2630), - [anon_sym_while] = ACTIONS(2630), - [anon_sym_extern] = ACTIONS(2630), - [anon_sym_DOT_DOT] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2630), - [anon_sym_move] = ACTIONS(2630), - [anon_sym_try] = ACTIONS(2630), - [sym_integer_literal] = ACTIONS(2628), - [aux_sym_string_literal_token1] = ACTIONS(2628), - [sym_char_literal] = ACTIONS(2628), - [anon_sym_true] = ACTIONS(2630), - [anon_sym_false] = ACTIONS(2630), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2630), - [sym_super] = ACTIONS(2630), - [sym_crate] = ACTIONS(2630), - [sym_metavariable] = ACTIONS(2628), - [sym_raw_string_literal] = ACTIONS(2628), - [sym_float_literal] = ACTIONS(2628), + [ts_builtin_sym_end] = ACTIONS(2671), + [sym_identifier] = ACTIONS(2673), + [anon_sym_SEMI] = ACTIONS(2671), + [anon_sym_macro_rules_BANG] = ACTIONS(2671), + [anon_sym_LPAREN] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2671), + [anon_sym_RBRACE] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2671), + [anon_sym_u8] = ACTIONS(2673), + [anon_sym_i8] = ACTIONS(2673), + [anon_sym_u16] = ACTIONS(2673), + [anon_sym_i16] = ACTIONS(2673), + [anon_sym_u32] = ACTIONS(2673), + [anon_sym_i32] = ACTIONS(2673), + [anon_sym_u64] = ACTIONS(2673), + [anon_sym_i64] = ACTIONS(2673), + [anon_sym_u128] = ACTIONS(2673), + [anon_sym_i128] = ACTIONS(2673), + [anon_sym_isize] = ACTIONS(2673), + [anon_sym_usize] = ACTIONS(2673), + [anon_sym_f32] = ACTIONS(2673), + [anon_sym_f64] = ACTIONS(2673), + [anon_sym_bool] = ACTIONS(2673), + [anon_sym_str] = ACTIONS(2673), + [anon_sym_char] = ACTIONS(2673), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_COLON_COLON] = ACTIONS(2671), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_POUND] = ACTIONS(2671), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_SQUOTE] = ACTIONS(2673), + [anon_sym_async] = ACTIONS(2673), + [anon_sym_break] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2673), + [anon_sym_continue] = ACTIONS(2673), + [anon_sym_default] = ACTIONS(2673), + [anon_sym_enum] = ACTIONS(2673), + [anon_sym_fn] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2673), + [anon_sym_if] = ACTIONS(2673), + [anon_sym_impl] = ACTIONS(2673), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_loop] = ACTIONS(2673), + [anon_sym_match] = ACTIONS(2673), + [anon_sym_mod] = ACTIONS(2673), + [anon_sym_pub] = ACTIONS(2673), + [anon_sym_return] = ACTIONS(2673), + [anon_sym_static] = ACTIONS(2673), + [anon_sym_struct] = ACTIONS(2673), + [anon_sym_trait] = ACTIONS(2673), + [anon_sym_type] = ACTIONS(2673), + [anon_sym_union] = ACTIONS(2673), + [anon_sym_unsafe] = ACTIONS(2673), + [anon_sym_use] = ACTIONS(2673), + [anon_sym_while] = ACTIONS(2673), + [anon_sym_extern] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(2671), + [anon_sym_yield] = ACTIONS(2673), + [anon_sym_move] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2673), + [sym_integer_literal] = ACTIONS(2671), + [aux_sym_string_literal_token1] = ACTIONS(2671), + [sym_char_literal] = ACTIONS(2671), + [anon_sym_true] = ACTIONS(2673), + [anon_sym_false] = ACTIONS(2673), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2673), + [sym_super] = ACTIONS(2673), + [sym_crate] = ACTIONS(2673), + [sym_metavariable] = ACTIONS(2671), + [sym_raw_string_literal] = ACTIONS(2671), + [sym_float_literal] = ACTIONS(2671), }, [711] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [ts_builtin_sym_end] = ACTIONS(2632), - [sym_identifier] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2632), - [anon_sym_macro_rules_BANG] = ACTIONS(2632), - [anon_sym_LPAREN] = ACTIONS(2632), - [anon_sym_LBRACK] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(2632), - [anon_sym_RBRACE] = ACTIONS(2632), - [anon_sym_STAR] = ACTIONS(2632), - [anon_sym_u8] = ACTIONS(2634), - [anon_sym_i8] = ACTIONS(2634), - [anon_sym_u16] = ACTIONS(2634), - [anon_sym_i16] = ACTIONS(2634), - [anon_sym_u32] = ACTIONS(2634), - [anon_sym_i32] = ACTIONS(2634), - [anon_sym_u64] = ACTIONS(2634), - [anon_sym_i64] = ACTIONS(2634), - [anon_sym_u128] = ACTIONS(2634), - [anon_sym_i128] = ACTIONS(2634), - [anon_sym_isize] = ACTIONS(2634), - [anon_sym_usize] = ACTIONS(2634), - [anon_sym_f32] = ACTIONS(2634), - [anon_sym_f64] = ACTIONS(2634), - [anon_sym_bool] = ACTIONS(2634), - [anon_sym_str] = ACTIONS(2634), - [anon_sym_char] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2632), - [anon_sym_COLON_COLON] = ACTIONS(2632), - [anon_sym_BANG] = ACTIONS(2632), - [anon_sym_AMP] = ACTIONS(2632), - [anon_sym_POUND] = ACTIONS(2632), - [anon_sym_LT] = ACTIONS(2632), - [anon_sym_PIPE] = ACTIONS(2632), - [anon_sym_SQUOTE] = ACTIONS(2634), - [anon_sym_async] = ACTIONS(2634), - [anon_sym_break] = ACTIONS(2634), - [anon_sym_const] = ACTIONS(2634), - [anon_sym_continue] = ACTIONS(2634), - [anon_sym_default] = ACTIONS(2634), - [anon_sym_enum] = ACTIONS(2634), - [anon_sym_fn] = ACTIONS(2634), - [anon_sym_for] = ACTIONS(2634), - [anon_sym_if] = ACTIONS(2634), - [anon_sym_impl] = ACTIONS(2634), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_loop] = ACTIONS(2634), - [anon_sym_match] = ACTIONS(2634), - [anon_sym_mod] = ACTIONS(2634), - [anon_sym_pub] = ACTIONS(2634), - [anon_sym_return] = ACTIONS(2634), - [anon_sym_static] = ACTIONS(2634), - [anon_sym_struct] = ACTIONS(2634), - [anon_sym_trait] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_union] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(2634), - [anon_sym_use] = ACTIONS(2634), - [anon_sym_while] = ACTIONS(2634), - [anon_sym_extern] = ACTIONS(2634), - [anon_sym_DOT_DOT] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2634), - [anon_sym_move] = ACTIONS(2634), - [anon_sym_try] = ACTIONS(2634), - [sym_integer_literal] = ACTIONS(2632), - [aux_sym_string_literal_token1] = ACTIONS(2632), - [sym_char_literal] = ACTIONS(2632), - [anon_sym_true] = ACTIONS(2634), - [anon_sym_false] = ACTIONS(2634), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2634), - [sym_super] = ACTIONS(2634), - [sym_crate] = ACTIONS(2634), - [sym_metavariable] = ACTIONS(2632), - [sym_raw_string_literal] = ACTIONS(2632), - [sym_float_literal] = ACTIONS(2632), + [ts_builtin_sym_end] = ACTIONS(2675), + [sym_identifier] = ACTIONS(2677), + [anon_sym_SEMI] = ACTIONS(2675), + [anon_sym_macro_rules_BANG] = ACTIONS(2675), + [anon_sym_LPAREN] = ACTIONS(2675), + [anon_sym_LBRACK] = ACTIONS(2675), + [anon_sym_LBRACE] = ACTIONS(2675), + [anon_sym_RBRACE] = ACTIONS(2675), + [anon_sym_STAR] = ACTIONS(2675), + [anon_sym_u8] = ACTIONS(2677), + [anon_sym_i8] = ACTIONS(2677), + [anon_sym_u16] = ACTIONS(2677), + [anon_sym_i16] = ACTIONS(2677), + [anon_sym_u32] = ACTIONS(2677), + [anon_sym_i32] = ACTIONS(2677), + [anon_sym_u64] = ACTIONS(2677), + [anon_sym_i64] = ACTIONS(2677), + [anon_sym_u128] = ACTIONS(2677), + [anon_sym_i128] = ACTIONS(2677), + [anon_sym_isize] = ACTIONS(2677), + [anon_sym_usize] = ACTIONS(2677), + [anon_sym_f32] = ACTIONS(2677), + [anon_sym_f64] = ACTIONS(2677), + [anon_sym_bool] = ACTIONS(2677), + [anon_sym_str] = ACTIONS(2677), + [anon_sym_char] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2675), + [anon_sym_COLON_COLON] = ACTIONS(2675), + [anon_sym_BANG] = ACTIONS(2675), + [anon_sym_AMP] = ACTIONS(2675), + [anon_sym_POUND] = ACTIONS(2675), + [anon_sym_LT] = ACTIONS(2675), + [anon_sym_PIPE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_async] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_const] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_fn] = ACTIONS(2677), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_impl] = ACTIONS(2677), + [anon_sym_let] = ACTIONS(2677), + [anon_sym_loop] = ACTIONS(2677), + [anon_sym_match] = ACTIONS(2677), + [anon_sym_mod] = ACTIONS(2677), + [anon_sym_pub] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_struct] = ACTIONS(2677), + [anon_sym_trait] = ACTIONS(2677), + [anon_sym_type] = ACTIONS(2677), + [anon_sym_union] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(2677), + [anon_sym_use] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym_DOT_DOT] = ACTIONS(2675), + [anon_sym_yield] = ACTIONS(2677), + [anon_sym_move] = ACTIONS(2677), + [anon_sym_try] = ACTIONS(2677), + [sym_integer_literal] = ACTIONS(2675), + [aux_sym_string_literal_token1] = ACTIONS(2675), + [sym_char_literal] = ACTIONS(2675), + [anon_sym_true] = ACTIONS(2677), + [anon_sym_false] = ACTIONS(2677), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2677), + [sym_super] = ACTIONS(2677), + [sym_crate] = ACTIONS(2677), + [sym_metavariable] = ACTIONS(2675), + [sym_raw_string_literal] = ACTIONS(2675), + [sym_float_literal] = ACTIONS(2675), }, [712] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [ts_builtin_sym_end] = ACTIONS(2636), - [sym_identifier] = ACTIONS(2638), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_macro_rules_BANG] = ACTIONS(2636), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_LBRACK] = ACTIONS(2636), - [anon_sym_LBRACE] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_STAR] = ACTIONS(2636), - [anon_sym_u8] = ACTIONS(2638), - [anon_sym_i8] = ACTIONS(2638), - [anon_sym_u16] = ACTIONS(2638), - [anon_sym_i16] = ACTIONS(2638), - [anon_sym_u32] = ACTIONS(2638), - [anon_sym_i32] = ACTIONS(2638), - [anon_sym_u64] = ACTIONS(2638), - [anon_sym_i64] = ACTIONS(2638), - [anon_sym_u128] = ACTIONS(2638), - [anon_sym_i128] = ACTIONS(2638), - [anon_sym_isize] = ACTIONS(2638), - [anon_sym_usize] = ACTIONS(2638), - [anon_sym_f32] = ACTIONS(2638), - [anon_sym_f64] = ACTIONS(2638), - [anon_sym_bool] = ACTIONS(2638), - [anon_sym_str] = ACTIONS(2638), - [anon_sym_char] = ACTIONS(2638), - [anon_sym_DASH] = ACTIONS(2636), - [anon_sym_COLON_COLON] = ACTIONS(2636), - [anon_sym_BANG] = ACTIONS(2636), - [anon_sym_AMP] = ACTIONS(2636), - [anon_sym_POUND] = ACTIONS(2636), - [anon_sym_LT] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2638), - [anon_sym_async] = ACTIONS(2638), - [anon_sym_break] = ACTIONS(2638), - [anon_sym_const] = ACTIONS(2638), - [anon_sym_continue] = ACTIONS(2638), - [anon_sym_default] = ACTIONS(2638), - [anon_sym_enum] = ACTIONS(2638), - [anon_sym_fn] = ACTIONS(2638), - [anon_sym_for] = ACTIONS(2638), - [anon_sym_if] = ACTIONS(2638), - [anon_sym_impl] = ACTIONS(2638), - [anon_sym_let] = ACTIONS(2638), - [anon_sym_loop] = ACTIONS(2638), - [anon_sym_match] = ACTIONS(2638), - [anon_sym_mod] = ACTIONS(2638), - [anon_sym_pub] = ACTIONS(2638), - [anon_sym_return] = ACTIONS(2638), - [anon_sym_static] = ACTIONS(2638), - [anon_sym_struct] = ACTIONS(2638), - [anon_sym_trait] = ACTIONS(2638), - [anon_sym_type] = ACTIONS(2638), - [anon_sym_union] = ACTIONS(2638), - [anon_sym_unsafe] = ACTIONS(2638), - [anon_sym_use] = ACTIONS(2638), - [anon_sym_while] = ACTIONS(2638), - [anon_sym_extern] = ACTIONS(2638), - [anon_sym_DOT_DOT] = ACTIONS(2636), - [anon_sym_yield] = ACTIONS(2638), - [anon_sym_move] = ACTIONS(2638), - [anon_sym_try] = ACTIONS(2638), - [sym_integer_literal] = ACTIONS(2636), - [aux_sym_string_literal_token1] = ACTIONS(2636), - [sym_char_literal] = ACTIONS(2636), - [anon_sym_true] = ACTIONS(2638), - [anon_sym_false] = ACTIONS(2638), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2638), - [sym_super] = ACTIONS(2638), - [sym_crate] = ACTIONS(2638), - [sym_metavariable] = ACTIONS(2636), - [sym_raw_string_literal] = ACTIONS(2636), - [sym_float_literal] = ACTIONS(2636), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(2679), + [anon_sym_macro_rules_BANG] = ACTIONS(2679), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_RBRACE] = ACTIONS(2679), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_u8] = ACTIONS(2681), + [anon_sym_i8] = ACTIONS(2681), + [anon_sym_u16] = ACTIONS(2681), + [anon_sym_i16] = ACTIONS(2681), + [anon_sym_u32] = ACTIONS(2681), + [anon_sym_i32] = ACTIONS(2681), + [anon_sym_u64] = ACTIONS(2681), + [anon_sym_i64] = ACTIONS(2681), + [anon_sym_u128] = ACTIONS(2681), + [anon_sym_i128] = ACTIONS(2681), + [anon_sym_isize] = ACTIONS(2681), + [anon_sym_usize] = ACTIONS(2681), + [anon_sym_f32] = ACTIONS(2681), + [anon_sym_f64] = ACTIONS(2681), + [anon_sym_bool] = ACTIONS(2681), + [anon_sym_str] = ACTIONS(2681), + [anon_sym_char] = ACTIONS(2681), + [anon_sym_DASH] = ACTIONS(2679), + [anon_sym_COLON_COLON] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2679), + [anon_sym_POUND] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SQUOTE] = ACTIONS(2681), + [anon_sym_async] = ACTIONS(2681), + [anon_sym_break] = ACTIONS(2681), + [anon_sym_const] = ACTIONS(2681), + [anon_sym_continue] = ACTIONS(2681), + [anon_sym_default] = ACTIONS(2681), + [anon_sym_enum] = ACTIONS(2681), + [anon_sym_fn] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2681), + [anon_sym_if] = ACTIONS(2681), + [anon_sym_impl] = ACTIONS(2681), + [anon_sym_let] = ACTIONS(2681), + [anon_sym_loop] = ACTIONS(2681), + [anon_sym_match] = ACTIONS(2681), + [anon_sym_mod] = ACTIONS(2681), + [anon_sym_pub] = ACTIONS(2681), + [anon_sym_return] = ACTIONS(2681), + [anon_sym_static] = ACTIONS(2681), + [anon_sym_struct] = ACTIONS(2681), + [anon_sym_trait] = ACTIONS(2681), + [anon_sym_type] = ACTIONS(2681), + [anon_sym_union] = ACTIONS(2681), + [anon_sym_unsafe] = ACTIONS(2681), + [anon_sym_use] = ACTIONS(2681), + [anon_sym_while] = ACTIONS(2681), + [anon_sym_extern] = ACTIONS(2681), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_yield] = ACTIONS(2681), + [anon_sym_move] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2681), + [sym_integer_literal] = ACTIONS(2679), + [aux_sym_string_literal_token1] = ACTIONS(2679), + [sym_char_literal] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2681), + [anon_sym_false] = ACTIONS(2681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2681), + [sym_super] = ACTIONS(2681), + [sym_crate] = ACTIONS(2681), + [sym_metavariable] = ACTIONS(2679), + [sym_raw_string_literal] = ACTIONS(2679), + [sym_float_literal] = ACTIONS(2679), }, [713] = { - [sym_empty_statement] = STATE(1433), - [sym_macro_definition] = STATE(1433), - [sym_attribute_item] = STATE(1433), - [sym_inner_attribute_item] = STATE(1433), - [sym_mod_item] = STATE(1433), - [sym_foreign_mod_item] = STATE(1433), - [sym_struct_item] = STATE(1433), - [sym_union_item] = STATE(1433), - [sym_enum_item] = STATE(1433), - [sym_extern_crate_declaration] = STATE(1433), - [sym_const_item] = STATE(1433), - [sym_static_item] = STATE(1433), - [sym_type_item] = STATE(1433), - [sym_function_item] = STATE(1433), - [sym_function_signature_item] = STATE(1433), - [sym_function_modifiers] = STATE(3512), - [sym_impl_item] = STATE(1433), - [sym_trait_item] = STATE(1433), - [sym_associated_type] = STATE(1433), - [sym_let_declaration] = STATE(1433), - [sym_use_declaration] = STATE(1433), - [sym_extern_modifier] = STATE(2123), - [sym_visibility_modifier] = STATE(1927), - [sym_bracketed_type] = STATE(3248), - [sym_generic_type_with_turbofish] = STATE(3273), - [sym_macro_invocation] = STATE(1433), - [sym_scoped_identifier] = STATE(3071), [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [aux_sym_declaration_list_repeat1] = STATE(512), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(1743), - [anon_sym_SEMI] = ACTIONS(1745), - [anon_sym_macro_rules_BANG] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(2640), - [anon_sym_u8] = ACTIONS(1751), - [anon_sym_i8] = ACTIONS(1751), - [anon_sym_u16] = ACTIONS(1751), - [anon_sym_i16] = ACTIONS(1751), - [anon_sym_u32] = ACTIONS(1751), - [anon_sym_i32] = ACTIONS(1751), - [anon_sym_u64] = ACTIONS(1751), - [anon_sym_i64] = ACTIONS(1751), - [anon_sym_u128] = ACTIONS(1751), - [anon_sym_i128] = ACTIONS(1751), - [anon_sym_isize] = ACTIONS(1751), - [anon_sym_usize] = ACTIONS(1751), - [anon_sym_f32] = ACTIONS(1751), - [anon_sym_f64] = ACTIONS(1751), - [anon_sym_bool] = ACTIONS(1751), - [anon_sym_str] = ACTIONS(1751), - [anon_sym_char] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1753), - [anon_sym_POUND] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1761), - [anon_sym_fn] = ACTIONS(1763), - [anon_sym_impl] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1767), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(65), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_trait] = ACTIONS(1775), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1779), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_use] = ACTIONS(1783), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1787), - [sym_super] = ACTIONS(1787), - [sym_crate] = ACTIONS(1789), - [sym_metavariable] = ACTIONS(1791), + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_SEMI] = ACTIONS(2683), + [anon_sym_macro_rules_BANG] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_u8] = ACTIONS(2685), + [anon_sym_i8] = ACTIONS(2685), + [anon_sym_u16] = ACTIONS(2685), + [anon_sym_i16] = ACTIONS(2685), + [anon_sym_u32] = ACTIONS(2685), + [anon_sym_i32] = ACTIONS(2685), + [anon_sym_u64] = ACTIONS(2685), + [anon_sym_i64] = ACTIONS(2685), + [anon_sym_u128] = ACTIONS(2685), + [anon_sym_i128] = ACTIONS(2685), + [anon_sym_isize] = ACTIONS(2685), + [anon_sym_usize] = ACTIONS(2685), + [anon_sym_f32] = ACTIONS(2685), + [anon_sym_f64] = ACTIONS(2685), + [anon_sym_bool] = ACTIONS(2685), + [anon_sym_str] = ACTIONS(2685), + [anon_sym_char] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_COLON_COLON] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_SQUOTE] = ACTIONS(2685), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_impl] = ACTIONS(2685), + [anon_sym_let] = ACTIONS(2685), + [anon_sym_loop] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_mod] = ACTIONS(2685), + [anon_sym_pub] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_trait] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_use] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym_DOT_DOT] = ACTIONS(2683), + [anon_sym_yield] = ACTIONS(2685), + [anon_sym_move] = ACTIONS(2685), + [anon_sym_try] = ACTIONS(2685), + [sym_integer_literal] = ACTIONS(2683), + [aux_sym_string_literal_token1] = ACTIONS(2683), + [sym_char_literal] = ACTIONS(2683), + [anon_sym_true] = ACTIONS(2685), + [anon_sym_false] = ACTIONS(2685), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2685), + [sym_super] = ACTIONS(2685), + [sym_crate] = ACTIONS(2685), + [sym_metavariable] = ACTIONS(2683), + [sym_raw_string_literal] = ACTIONS(2683), + [sym_float_literal] = ACTIONS(2683), }, [714] = { + [sym_attribute_item] = STATE(1461), + [sym_inner_attribute_item] = STATE(1461), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_match_arm] = STATE(1462), + [sym_last_match_arm] = STATE(3389), + [sym_match_pattern] = STATE(3553), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [ts_builtin_sym_end] = ACTIONS(2642), - [sym_identifier] = ACTIONS(2644), - [anon_sym_SEMI] = ACTIONS(2642), - [anon_sym_macro_rules_BANG] = ACTIONS(2642), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_LBRACK] = ACTIONS(2642), - [anon_sym_LBRACE] = ACTIONS(2642), - [anon_sym_RBRACE] = ACTIONS(2642), - [anon_sym_STAR] = ACTIONS(2642), - [anon_sym_u8] = ACTIONS(2644), - [anon_sym_i8] = ACTIONS(2644), - [anon_sym_u16] = ACTIONS(2644), - [anon_sym_i16] = ACTIONS(2644), - [anon_sym_u32] = ACTIONS(2644), - [anon_sym_i32] = ACTIONS(2644), - [anon_sym_u64] = ACTIONS(2644), - [anon_sym_i64] = ACTIONS(2644), - [anon_sym_u128] = ACTIONS(2644), - [anon_sym_i128] = ACTIONS(2644), - [anon_sym_isize] = ACTIONS(2644), - [anon_sym_usize] = ACTIONS(2644), - [anon_sym_f32] = ACTIONS(2644), - [anon_sym_f64] = ACTIONS(2644), - [anon_sym_bool] = ACTIONS(2644), - [anon_sym_str] = ACTIONS(2644), - [anon_sym_char] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2642), - [anon_sym_COLON_COLON] = ACTIONS(2642), - [anon_sym_BANG] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2642), - [anon_sym_POUND] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2642), - [anon_sym_PIPE] = ACTIONS(2642), - [anon_sym_SQUOTE] = ACTIONS(2644), - [anon_sym_async] = ACTIONS(2644), - [anon_sym_break] = ACTIONS(2644), - [anon_sym_const] = ACTIONS(2644), - [anon_sym_continue] = ACTIONS(2644), - [anon_sym_default] = ACTIONS(2644), - [anon_sym_enum] = ACTIONS(2644), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_for] = ACTIONS(2644), - [anon_sym_if] = ACTIONS(2644), - [anon_sym_impl] = ACTIONS(2644), - [anon_sym_let] = ACTIONS(2644), - [anon_sym_loop] = ACTIONS(2644), - [anon_sym_match] = ACTIONS(2644), - [anon_sym_mod] = ACTIONS(2644), - [anon_sym_pub] = ACTIONS(2644), - [anon_sym_return] = ACTIONS(2644), - [anon_sym_static] = ACTIONS(2644), - [anon_sym_struct] = ACTIONS(2644), - [anon_sym_trait] = ACTIONS(2644), - [anon_sym_type] = ACTIONS(2644), - [anon_sym_union] = ACTIONS(2644), - [anon_sym_unsafe] = ACTIONS(2644), - [anon_sym_use] = ACTIONS(2644), - [anon_sym_while] = ACTIONS(2644), - [anon_sym_extern] = ACTIONS(2644), - [anon_sym_DOT_DOT] = ACTIONS(2642), - [anon_sym_yield] = ACTIONS(2644), - [anon_sym_move] = ACTIONS(2644), - [anon_sym_try] = ACTIONS(2644), - [sym_integer_literal] = ACTIONS(2642), - [aux_sym_string_literal_token1] = ACTIONS(2642), - [sym_char_literal] = ACTIONS(2642), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2644), - [sym_super] = ACTIONS(2644), - [sym_crate] = ACTIONS(2644), - [sym_metavariable] = ACTIONS(2642), - [sym_raw_string_literal] = ACTIONS(2642), - [sym_float_literal] = ACTIONS(2642), + [aux_sym_match_block_repeat1] = STATE(747), + [aux_sym_match_arm_repeat1] = STATE(757), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), }, [715] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [ts_builtin_sym_end] = ACTIONS(2646), - [sym_identifier] = ACTIONS(2648), - [anon_sym_SEMI] = ACTIONS(2646), - [anon_sym_macro_rules_BANG] = ACTIONS(2646), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_LBRACK] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2646), - [anon_sym_RBRACE] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2646), - [anon_sym_u8] = ACTIONS(2648), - [anon_sym_i8] = ACTIONS(2648), - [anon_sym_u16] = ACTIONS(2648), - [anon_sym_i16] = ACTIONS(2648), - [anon_sym_u32] = ACTIONS(2648), - [anon_sym_i32] = ACTIONS(2648), - [anon_sym_u64] = ACTIONS(2648), - [anon_sym_i64] = ACTIONS(2648), - [anon_sym_u128] = ACTIONS(2648), - [anon_sym_i128] = ACTIONS(2648), - [anon_sym_isize] = ACTIONS(2648), - [anon_sym_usize] = ACTIONS(2648), - [anon_sym_f32] = ACTIONS(2648), - [anon_sym_f64] = ACTIONS(2648), - [anon_sym_bool] = ACTIONS(2648), - [anon_sym_str] = ACTIONS(2648), - [anon_sym_char] = ACTIONS(2648), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_COLON_COLON] = ACTIONS(2646), - [anon_sym_BANG] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_POUND] = ACTIONS(2646), - [anon_sym_LT] = ACTIONS(2646), - [anon_sym_PIPE] = ACTIONS(2646), - [anon_sym_SQUOTE] = ACTIONS(2648), - [anon_sym_async] = ACTIONS(2648), - [anon_sym_break] = ACTIONS(2648), - [anon_sym_const] = ACTIONS(2648), - [anon_sym_continue] = ACTIONS(2648), - [anon_sym_default] = ACTIONS(2648), - [anon_sym_enum] = ACTIONS(2648), - [anon_sym_fn] = ACTIONS(2648), - [anon_sym_for] = ACTIONS(2648), - [anon_sym_if] = ACTIONS(2648), - [anon_sym_impl] = ACTIONS(2648), - [anon_sym_let] = ACTIONS(2648), - [anon_sym_loop] = ACTIONS(2648), - [anon_sym_match] = ACTIONS(2648), - [anon_sym_mod] = ACTIONS(2648), - [anon_sym_pub] = ACTIONS(2648), - [anon_sym_return] = ACTIONS(2648), - [anon_sym_static] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2648), - [anon_sym_trait] = ACTIONS(2648), - [anon_sym_type] = ACTIONS(2648), - [anon_sym_union] = ACTIONS(2648), - [anon_sym_unsafe] = ACTIONS(2648), - [anon_sym_use] = ACTIONS(2648), - [anon_sym_while] = ACTIONS(2648), - [anon_sym_extern] = ACTIONS(2648), - [anon_sym_DOT_DOT] = ACTIONS(2646), - [anon_sym_yield] = ACTIONS(2648), - [anon_sym_move] = ACTIONS(2648), - [anon_sym_try] = ACTIONS(2648), - [sym_integer_literal] = ACTIONS(2646), - [aux_sym_string_literal_token1] = ACTIONS(2646), - [sym_char_literal] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2648), - [anon_sym_false] = ACTIONS(2648), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2648), - [sym_super] = ACTIONS(2648), - [sym_crate] = ACTIONS(2648), - [sym_metavariable] = ACTIONS(2646), - [sym_raw_string_literal] = ACTIONS(2646), - [sym_float_literal] = ACTIONS(2646), + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2689), + [anon_sym_SEMI] = ACTIONS(2687), + [anon_sym_macro_rules_BANG] = ACTIONS(2687), + [anon_sym_LPAREN] = ACTIONS(2687), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_RBRACE] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_u8] = ACTIONS(2689), + [anon_sym_i8] = ACTIONS(2689), + [anon_sym_u16] = ACTIONS(2689), + [anon_sym_i16] = ACTIONS(2689), + [anon_sym_u32] = ACTIONS(2689), + [anon_sym_i32] = ACTIONS(2689), + [anon_sym_u64] = ACTIONS(2689), + [anon_sym_i64] = ACTIONS(2689), + [anon_sym_u128] = ACTIONS(2689), + [anon_sym_i128] = ACTIONS(2689), + [anon_sym_isize] = ACTIONS(2689), + [anon_sym_usize] = ACTIONS(2689), + [anon_sym_f32] = ACTIONS(2689), + [anon_sym_f64] = ACTIONS(2689), + [anon_sym_bool] = ACTIONS(2689), + [anon_sym_str] = ACTIONS(2689), + [anon_sym_char] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_COLON_COLON] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2687), + [anon_sym_POUND] = ACTIONS(2687), + [anon_sym_LT] = ACTIONS(2687), + [anon_sym_PIPE] = ACTIONS(2687), + [anon_sym_SQUOTE] = ACTIONS(2689), + [anon_sym_async] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_const] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_fn] = ACTIONS(2689), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_impl] = ACTIONS(2689), + [anon_sym_let] = ACTIONS(2689), + [anon_sym_loop] = ACTIONS(2689), + [anon_sym_match] = ACTIONS(2689), + [anon_sym_mod] = ACTIONS(2689), + [anon_sym_pub] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(2689), + [anon_sym_trait] = ACTIONS(2689), + [anon_sym_type] = ACTIONS(2689), + [anon_sym_union] = ACTIONS(2689), + [anon_sym_unsafe] = ACTIONS(2689), + [anon_sym_use] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym_DOT_DOT] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2689), + [anon_sym_move] = ACTIONS(2689), + [anon_sym_try] = ACTIONS(2689), + [sym_integer_literal] = ACTIONS(2687), + [aux_sym_string_literal_token1] = ACTIONS(2687), + [sym_char_literal] = ACTIONS(2687), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2689), + [sym_super] = ACTIONS(2689), + [sym_crate] = ACTIONS(2689), + [sym_metavariable] = ACTIONS(2687), + [sym_raw_string_literal] = ACTIONS(2687), + [sym_float_literal] = ACTIONS(2687), }, [716] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [ts_builtin_sym_end] = ACTIONS(2650), - [sym_identifier] = ACTIONS(2652), - [anon_sym_SEMI] = ACTIONS(2650), - [anon_sym_macro_rules_BANG] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2650), - [anon_sym_RBRACE] = ACTIONS(2650), - [anon_sym_STAR] = ACTIONS(2650), - [anon_sym_u8] = ACTIONS(2652), - [anon_sym_i8] = ACTIONS(2652), - [anon_sym_u16] = ACTIONS(2652), - [anon_sym_i16] = ACTIONS(2652), - [anon_sym_u32] = ACTIONS(2652), - [anon_sym_i32] = ACTIONS(2652), - [anon_sym_u64] = ACTIONS(2652), - [anon_sym_i64] = ACTIONS(2652), - [anon_sym_u128] = ACTIONS(2652), - [anon_sym_i128] = ACTIONS(2652), - [anon_sym_isize] = ACTIONS(2652), - [anon_sym_usize] = ACTIONS(2652), - [anon_sym_f32] = ACTIONS(2652), - [anon_sym_f64] = ACTIONS(2652), - [anon_sym_bool] = ACTIONS(2652), - [anon_sym_str] = ACTIONS(2652), - [anon_sym_char] = ACTIONS(2652), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_COLON_COLON] = ACTIONS(2650), - [anon_sym_BANG] = ACTIONS(2650), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2650), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_SQUOTE] = ACTIONS(2652), - [anon_sym_async] = ACTIONS(2652), - [anon_sym_break] = ACTIONS(2652), - [anon_sym_const] = ACTIONS(2652), - [anon_sym_continue] = ACTIONS(2652), - [anon_sym_default] = ACTIONS(2652), - [anon_sym_enum] = ACTIONS(2652), - [anon_sym_fn] = ACTIONS(2652), - [anon_sym_for] = ACTIONS(2652), - [anon_sym_if] = ACTIONS(2652), - [anon_sym_impl] = ACTIONS(2652), - [anon_sym_let] = ACTIONS(2652), - [anon_sym_loop] = ACTIONS(2652), - [anon_sym_match] = ACTIONS(2652), - [anon_sym_mod] = ACTIONS(2652), - [anon_sym_pub] = ACTIONS(2652), - [anon_sym_return] = ACTIONS(2652), - [anon_sym_static] = ACTIONS(2652), - [anon_sym_struct] = ACTIONS(2652), - [anon_sym_trait] = ACTIONS(2652), - [anon_sym_type] = ACTIONS(2652), - [anon_sym_union] = ACTIONS(2652), - [anon_sym_unsafe] = ACTIONS(2652), - [anon_sym_use] = ACTIONS(2652), - [anon_sym_while] = ACTIONS(2652), - [anon_sym_extern] = ACTIONS(2652), - [anon_sym_DOT_DOT] = ACTIONS(2650), - [anon_sym_yield] = ACTIONS(2652), - [anon_sym_move] = ACTIONS(2652), - [anon_sym_try] = ACTIONS(2652), - [sym_integer_literal] = ACTIONS(2650), - [aux_sym_string_literal_token1] = ACTIONS(2650), - [sym_char_literal] = ACTIONS(2650), - [anon_sym_true] = ACTIONS(2652), - [anon_sym_false] = ACTIONS(2652), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2652), - [sym_super] = ACTIONS(2652), - [sym_crate] = ACTIONS(2652), - [sym_metavariable] = ACTIONS(2650), - [sym_raw_string_literal] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2650), + [ts_builtin_sym_end] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2693), + [anon_sym_SEMI] = ACTIONS(2691), + [anon_sym_macro_rules_BANG] = ACTIONS(2691), + [anon_sym_LPAREN] = ACTIONS(2691), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_RBRACE] = ACTIONS(2691), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_u8] = ACTIONS(2693), + [anon_sym_i8] = ACTIONS(2693), + [anon_sym_u16] = ACTIONS(2693), + [anon_sym_i16] = ACTIONS(2693), + [anon_sym_u32] = ACTIONS(2693), + [anon_sym_i32] = ACTIONS(2693), + [anon_sym_u64] = ACTIONS(2693), + [anon_sym_i64] = ACTIONS(2693), + [anon_sym_u128] = ACTIONS(2693), + [anon_sym_i128] = ACTIONS(2693), + [anon_sym_isize] = ACTIONS(2693), + [anon_sym_usize] = ACTIONS(2693), + [anon_sym_f32] = ACTIONS(2693), + [anon_sym_f64] = ACTIONS(2693), + [anon_sym_bool] = ACTIONS(2693), + [anon_sym_str] = ACTIONS(2693), + [anon_sym_char] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2691), + [anon_sym_COLON_COLON] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2691), + [anon_sym_POUND] = ACTIONS(2691), + [anon_sym_LT] = ACTIONS(2691), + [anon_sym_PIPE] = ACTIONS(2691), + [anon_sym_SQUOTE] = ACTIONS(2693), + [anon_sym_async] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_const] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_fn] = ACTIONS(2693), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_impl] = ACTIONS(2693), + [anon_sym_let] = ACTIONS(2693), + [anon_sym_loop] = ACTIONS(2693), + [anon_sym_match] = ACTIONS(2693), + [anon_sym_mod] = ACTIONS(2693), + [anon_sym_pub] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_struct] = ACTIONS(2693), + [anon_sym_trait] = ACTIONS(2693), + [anon_sym_type] = ACTIONS(2693), + [anon_sym_union] = ACTIONS(2693), + [anon_sym_unsafe] = ACTIONS(2693), + [anon_sym_use] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym_DOT_DOT] = ACTIONS(2691), + [anon_sym_yield] = ACTIONS(2693), + [anon_sym_move] = ACTIONS(2693), + [anon_sym_try] = ACTIONS(2693), + [sym_integer_literal] = ACTIONS(2691), + [aux_sym_string_literal_token1] = ACTIONS(2691), + [sym_char_literal] = ACTIONS(2691), + [anon_sym_true] = ACTIONS(2693), + [anon_sym_false] = ACTIONS(2693), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2693), + [sym_super] = ACTIONS(2693), + [sym_crate] = ACTIONS(2693), + [sym_metavariable] = ACTIONS(2691), + [sym_raw_string_literal] = ACTIONS(2691), + [sym_float_literal] = ACTIONS(2691), }, [717] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [ts_builtin_sym_end] = ACTIONS(2654), - [sym_identifier] = ACTIONS(2656), - [anon_sym_SEMI] = ACTIONS(2654), - [anon_sym_macro_rules_BANG] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2654), - [anon_sym_RBRACE] = ACTIONS(2654), - [anon_sym_STAR] = ACTIONS(2654), - [anon_sym_u8] = ACTIONS(2656), - [anon_sym_i8] = ACTIONS(2656), - [anon_sym_u16] = ACTIONS(2656), - [anon_sym_i16] = ACTIONS(2656), - [anon_sym_u32] = ACTIONS(2656), - [anon_sym_i32] = ACTIONS(2656), - [anon_sym_u64] = ACTIONS(2656), - [anon_sym_i64] = ACTIONS(2656), - [anon_sym_u128] = ACTIONS(2656), - [anon_sym_i128] = ACTIONS(2656), - [anon_sym_isize] = ACTIONS(2656), - [anon_sym_usize] = ACTIONS(2656), - [anon_sym_f32] = ACTIONS(2656), - [anon_sym_f64] = ACTIONS(2656), - [anon_sym_bool] = ACTIONS(2656), - [anon_sym_str] = ACTIONS(2656), - [anon_sym_char] = ACTIONS(2656), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2654), - [anon_sym_BANG] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_POUND] = ACTIONS(2654), - [anon_sym_LT] = ACTIONS(2654), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_SQUOTE] = ACTIONS(2656), - [anon_sym_async] = ACTIONS(2656), - [anon_sym_break] = ACTIONS(2656), - [anon_sym_const] = ACTIONS(2656), - [anon_sym_continue] = ACTIONS(2656), - [anon_sym_default] = ACTIONS(2656), - [anon_sym_enum] = ACTIONS(2656), - [anon_sym_fn] = ACTIONS(2656), - [anon_sym_for] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_impl] = ACTIONS(2656), - [anon_sym_let] = ACTIONS(2656), - [anon_sym_loop] = ACTIONS(2656), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_mod] = ACTIONS(2656), - [anon_sym_pub] = ACTIONS(2656), - [anon_sym_return] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2656), - [anon_sym_struct] = ACTIONS(2656), - [anon_sym_trait] = ACTIONS(2656), - [anon_sym_type] = ACTIONS(2656), - [anon_sym_union] = ACTIONS(2656), - [anon_sym_unsafe] = ACTIONS(2656), - [anon_sym_use] = ACTIONS(2656), - [anon_sym_while] = ACTIONS(2656), - [anon_sym_extern] = ACTIONS(2656), - [anon_sym_DOT_DOT] = ACTIONS(2654), - [anon_sym_yield] = ACTIONS(2656), - [anon_sym_move] = ACTIONS(2656), - [anon_sym_try] = ACTIONS(2656), - [sym_integer_literal] = ACTIONS(2654), - [aux_sym_string_literal_token1] = ACTIONS(2654), - [sym_char_literal] = ACTIONS(2654), - [anon_sym_true] = ACTIONS(2656), - [anon_sym_false] = ACTIONS(2656), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2656), - [sym_super] = ACTIONS(2656), - [sym_crate] = ACTIONS(2656), - [sym_metavariable] = ACTIONS(2654), - [sym_raw_string_literal] = ACTIONS(2654), - [sym_float_literal] = ACTIONS(2654), + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2697), + [anon_sym_SEMI] = ACTIONS(2695), + [anon_sym_macro_rules_BANG] = ACTIONS(2695), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_RBRACE] = ACTIONS(2695), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_u8] = ACTIONS(2697), + [anon_sym_i8] = ACTIONS(2697), + [anon_sym_u16] = ACTIONS(2697), + [anon_sym_i16] = ACTIONS(2697), + [anon_sym_u32] = ACTIONS(2697), + [anon_sym_i32] = ACTIONS(2697), + [anon_sym_u64] = ACTIONS(2697), + [anon_sym_i64] = ACTIONS(2697), + [anon_sym_u128] = ACTIONS(2697), + [anon_sym_i128] = ACTIONS(2697), + [anon_sym_isize] = ACTIONS(2697), + [anon_sym_usize] = ACTIONS(2697), + [anon_sym_f32] = ACTIONS(2697), + [anon_sym_f64] = ACTIONS(2697), + [anon_sym_bool] = ACTIONS(2697), + [anon_sym_str] = ACTIONS(2697), + [anon_sym_char] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2695), + [anon_sym_COLON_COLON] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2695), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2695), + [anon_sym_PIPE] = ACTIONS(2695), + [anon_sym_SQUOTE] = ACTIONS(2697), + [anon_sym_async] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_const] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_impl] = ACTIONS(2697), + [anon_sym_let] = ACTIONS(2697), + [anon_sym_loop] = ACTIONS(2697), + [anon_sym_match] = ACTIONS(2697), + [anon_sym_mod] = ACTIONS(2697), + [anon_sym_pub] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_struct] = ACTIONS(2697), + [anon_sym_trait] = ACTIONS(2697), + [anon_sym_type] = ACTIONS(2697), + [anon_sym_union] = ACTIONS(2697), + [anon_sym_unsafe] = ACTIONS(2697), + [anon_sym_use] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym_DOT_DOT] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2697), + [anon_sym_move] = ACTIONS(2697), + [anon_sym_try] = ACTIONS(2697), + [sym_integer_literal] = ACTIONS(2695), + [aux_sym_string_literal_token1] = ACTIONS(2695), + [sym_char_literal] = ACTIONS(2695), + [anon_sym_true] = ACTIONS(2697), + [anon_sym_false] = ACTIONS(2697), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2697), + [sym_super] = ACTIONS(2697), + [sym_crate] = ACTIONS(2697), + [sym_metavariable] = ACTIONS(2695), + [sym_raw_string_literal] = ACTIONS(2695), + [sym_float_literal] = ACTIONS(2695), }, [718] = { [sym_line_comment] = STATE(718), [sym_block_comment] = STATE(718), - [ts_builtin_sym_end] = ACTIONS(2658), - [sym_identifier] = ACTIONS(2660), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_macro_rules_BANG] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_RBRACE] = ACTIONS(2658), - [anon_sym_STAR] = ACTIONS(2658), - [anon_sym_u8] = ACTIONS(2660), - [anon_sym_i8] = ACTIONS(2660), - [anon_sym_u16] = ACTIONS(2660), - [anon_sym_i16] = ACTIONS(2660), - [anon_sym_u32] = ACTIONS(2660), - [anon_sym_i32] = ACTIONS(2660), - [anon_sym_u64] = ACTIONS(2660), - [anon_sym_i64] = ACTIONS(2660), - [anon_sym_u128] = ACTIONS(2660), - [anon_sym_i128] = ACTIONS(2660), - [anon_sym_isize] = ACTIONS(2660), - [anon_sym_usize] = ACTIONS(2660), - [anon_sym_f32] = ACTIONS(2660), - [anon_sym_f64] = ACTIONS(2660), - [anon_sym_bool] = ACTIONS(2660), - [anon_sym_str] = ACTIONS(2660), - [anon_sym_char] = ACTIONS(2660), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2658), - [anon_sym_BANG] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(2658), - [anon_sym_LT] = ACTIONS(2658), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_SQUOTE] = ACTIONS(2660), - [anon_sym_async] = ACTIONS(2660), - [anon_sym_break] = ACTIONS(2660), - [anon_sym_const] = ACTIONS(2660), - [anon_sym_continue] = ACTIONS(2660), - [anon_sym_default] = ACTIONS(2660), - [anon_sym_enum] = ACTIONS(2660), - [anon_sym_fn] = ACTIONS(2660), - [anon_sym_for] = ACTIONS(2660), - [anon_sym_if] = ACTIONS(2660), - [anon_sym_impl] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2660), - [anon_sym_loop] = ACTIONS(2660), - [anon_sym_match] = ACTIONS(2660), - [anon_sym_mod] = ACTIONS(2660), - [anon_sym_pub] = ACTIONS(2660), - [anon_sym_return] = ACTIONS(2660), - [anon_sym_static] = ACTIONS(2660), - [anon_sym_struct] = ACTIONS(2660), - [anon_sym_trait] = ACTIONS(2660), - [anon_sym_type] = ACTIONS(2660), - [anon_sym_union] = ACTIONS(2660), - [anon_sym_unsafe] = ACTIONS(2660), - [anon_sym_use] = ACTIONS(2660), - [anon_sym_while] = ACTIONS(2660), - [anon_sym_extern] = ACTIONS(2660), - [anon_sym_DOT_DOT] = ACTIONS(2658), - [anon_sym_yield] = ACTIONS(2660), - [anon_sym_move] = ACTIONS(2660), - [anon_sym_try] = ACTIONS(2660), - [sym_integer_literal] = ACTIONS(2658), - [aux_sym_string_literal_token1] = ACTIONS(2658), - [sym_char_literal] = ACTIONS(2658), - [anon_sym_true] = ACTIONS(2660), - [anon_sym_false] = ACTIONS(2660), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2660), - [sym_super] = ACTIONS(2660), - [sym_crate] = ACTIONS(2660), - [sym_metavariable] = ACTIONS(2658), - [sym_raw_string_literal] = ACTIONS(2658), - [sym_float_literal] = ACTIONS(2658), + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2701), + [anon_sym_SEMI] = ACTIONS(2699), + [anon_sym_macro_rules_BANG] = ACTIONS(2699), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_RBRACE] = ACTIONS(2699), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_u8] = ACTIONS(2701), + [anon_sym_i8] = ACTIONS(2701), + [anon_sym_u16] = ACTIONS(2701), + [anon_sym_i16] = ACTIONS(2701), + [anon_sym_u32] = ACTIONS(2701), + [anon_sym_i32] = ACTIONS(2701), + [anon_sym_u64] = ACTIONS(2701), + [anon_sym_i64] = ACTIONS(2701), + [anon_sym_u128] = ACTIONS(2701), + [anon_sym_i128] = ACTIONS(2701), + [anon_sym_isize] = ACTIONS(2701), + [anon_sym_usize] = ACTIONS(2701), + [anon_sym_f32] = ACTIONS(2701), + [anon_sym_f64] = ACTIONS(2701), + [anon_sym_bool] = ACTIONS(2701), + [anon_sym_str] = ACTIONS(2701), + [anon_sym_char] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2699), + [anon_sym_COLON_COLON] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2699), + [anon_sym_POUND] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2699), + [anon_sym_PIPE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_async] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_const] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_fn] = ACTIONS(2701), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_impl] = ACTIONS(2701), + [anon_sym_let] = ACTIONS(2701), + [anon_sym_loop] = ACTIONS(2701), + [anon_sym_match] = ACTIONS(2701), + [anon_sym_mod] = ACTIONS(2701), + [anon_sym_pub] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_struct] = ACTIONS(2701), + [anon_sym_trait] = ACTIONS(2701), + [anon_sym_type] = ACTIONS(2701), + [anon_sym_union] = ACTIONS(2701), + [anon_sym_unsafe] = ACTIONS(2701), + [anon_sym_use] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym_DOT_DOT] = ACTIONS(2699), + [anon_sym_yield] = ACTIONS(2701), + [anon_sym_move] = ACTIONS(2701), + [anon_sym_try] = ACTIONS(2701), + [sym_integer_literal] = ACTIONS(2699), + [aux_sym_string_literal_token1] = ACTIONS(2699), + [sym_char_literal] = ACTIONS(2699), + [anon_sym_true] = ACTIONS(2701), + [anon_sym_false] = ACTIONS(2701), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2701), + [sym_super] = ACTIONS(2701), + [sym_crate] = ACTIONS(2701), + [sym_metavariable] = ACTIONS(2699), + [sym_raw_string_literal] = ACTIONS(2699), + [sym_float_literal] = ACTIONS(2699), }, [719] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [ts_builtin_sym_end] = ACTIONS(2662), - [sym_identifier] = ACTIONS(2664), - [anon_sym_SEMI] = ACTIONS(2662), - [anon_sym_macro_rules_BANG] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2662), - [anon_sym_RBRACE] = ACTIONS(2662), - [anon_sym_STAR] = ACTIONS(2662), - [anon_sym_u8] = ACTIONS(2664), - [anon_sym_i8] = ACTIONS(2664), - [anon_sym_u16] = ACTIONS(2664), - [anon_sym_i16] = ACTIONS(2664), - [anon_sym_u32] = ACTIONS(2664), - [anon_sym_i32] = ACTIONS(2664), - [anon_sym_u64] = ACTIONS(2664), - [anon_sym_i64] = ACTIONS(2664), - [anon_sym_u128] = ACTIONS(2664), - [anon_sym_i128] = ACTIONS(2664), - [anon_sym_isize] = ACTIONS(2664), - [anon_sym_usize] = ACTIONS(2664), - [anon_sym_f32] = ACTIONS(2664), - [anon_sym_f64] = ACTIONS(2664), - [anon_sym_bool] = ACTIONS(2664), - [anon_sym_str] = ACTIONS(2664), - [anon_sym_char] = ACTIONS(2664), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2662), - [anon_sym_BANG] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_POUND] = ACTIONS(2662), - [anon_sym_LT] = ACTIONS(2662), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_async] = ACTIONS(2664), - [anon_sym_break] = ACTIONS(2664), - [anon_sym_const] = ACTIONS(2664), - [anon_sym_continue] = ACTIONS(2664), - [anon_sym_default] = ACTIONS(2664), - [anon_sym_enum] = ACTIONS(2664), - [anon_sym_fn] = ACTIONS(2664), - [anon_sym_for] = ACTIONS(2664), - [anon_sym_if] = ACTIONS(2664), - [anon_sym_impl] = ACTIONS(2664), - [anon_sym_let] = ACTIONS(2664), - [anon_sym_loop] = ACTIONS(2664), - [anon_sym_match] = ACTIONS(2664), - [anon_sym_mod] = ACTIONS(2664), - [anon_sym_pub] = ACTIONS(2664), - [anon_sym_return] = ACTIONS(2664), - [anon_sym_static] = ACTIONS(2664), - [anon_sym_struct] = ACTIONS(2664), - [anon_sym_trait] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2664), - [anon_sym_union] = ACTIONS(2664), - [anon_sym_unsafe] = ACTIONS(2664), - [anon_sym_use] = ACTIONS(2664), - [anon_sym_while] = ACTIONS(2664), - [anon_sym_extern] = ACTIONS(2664), - [anon_sym_DOT_DOT] = ACTIONS(2662), - [anon_sym_yield] = ACTIONS(2664), - [anon_sym_move] = ACTIONS(2664), - [anon_sym_try] = ACTIONS(2664), - [sym_integer_literal] = ACTIONS(2662), - [aux_sym_string_literal_token1] = ACTIONS(2662), - [sym_char_literal] = ACTIONS(2662), - [anon_sym_true] = ACTIONS(2664), - [anon_sym_false] = ACTIONS(2664), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2664), - [sym_super] = ACTIONS(2664), - [sym_crate] = ACTIONS(2664), - [sym_metavariable] = ACTIONS(2662), - [sym_raw_string_literal] = ACTIONS(2662), - [sym_float_literal] = ACTIONS(2662), + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2705), + [anon_sym_SEMI] = ACTIONS(2703), + [anon_sym_macro_rules_BANG] = ACTIONS(2703), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_RBRACE] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_u8] = ACTIONS(2705), + [anon_sym_i8] = ACTIONS(2705), + [anon_sym_u16] = ACTIONS(2705), + [anon_sym_i16] = ACTIONS(2705), + [anon_sym_u32] = ACTIONS(2705), + [anon_sym_i32] = ACTIONS(2705), + [anon_sym_u64] = ACTIONS(2705), + [anon_sym_i64] = ACTIONS(2705), + [anon_sym_u128] = ACTIONS(2705), + [anon_sym_i128] = ACTIONS(2705), + [anon_sym_isize] = ACTIONS(2705), + [anon_sym_usize] = ACTIONS(2705), + [anon_sym_f32] = ACTIONS(2705), + [anon_sym_f64] = ACTIONS(2705), + [anon_sym_bool] = ACTIONS(2705), + [anon_sym_str] = ACTIONS(2705), + [anon_sym_char] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2703), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2703), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_SQUOTE] = ACTIONS(2705), + [anon_sym_async] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_const] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_fn] = ACTIONS(2705), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_impl] = ACTIONS(2705), + [anon_sym_let] = ACTIONS(2705), + [anon_sym_loop] = ACTIONS(2705), + [anon_sym_match] = ACTIONS(2705), + [anon_sym_mod] = ACTIONS(2705), + [anon_sym_pub] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(2705), + [anon_sym_trait] = ACTIONS(2705), + [anon_sym_type] = ACTIONS(2705), + [anon_sym_union] = ACTIONS(2705), + [anon_sym_unsafe] = ACTIONS(2705), + [anon_sym_use] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym_DOT_DOT] = ACTIONS(2703), + [anon_sym_yield] = ACTIONS(2705), + [anon_sym_move] = ACTIONS(2705), + [anon_sym_try] = ACTIONS(2705), + [sym_integer_literal] = ACTIONS(2703), + [aux_sym_string_literal_token1] = ACTIONS(2703), + [sym_char_literal] = ACTIONS(2703), + [anon_sym_true] = ACTIONS(2705), + [anon_sym_false] = ACTIONS(2705), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2705), + [sym_super] = ACTIONS(2705), + [sym_crate] = ACTIONS(2705), + [sym_metavariable] = ACTIONS(2703), + [sym_raw_string_literal] = ACTIONS(2703), + [sym_float_literal] = ACTIONS(2703), }, [720] = { [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [ts_builtin_sym_end] = ACTIONS(2666), - [sym_identifier] = ACTIONS(2668), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_macro_rules_BANG] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_RBRACE] = ACTIONS(2666), - [anon_sym_STAR] = ACTIONS(2666), - [anon_sym_u8] = ACTIONS(2668), - [anon_sym_i8] = ACTIONS(2668), - [anon_sym_u16] = ACTIONS(2668), - [anon_sym_i16] = ACTIONS(2668), - [anon_sym_u32] = ACTIONS(2668), - [anon_sym_i32] = ACTIONS(2668), - [anon_sym_u64] = ACTIONS(2668), - [anon_sym_i64] = ACTIONS(2668), - [anon_sym_u128] = ACTIONS(2668), - [anon_sym_i128] = ACTIONS(2668), - [anon_sym_isize] = ACTIONS(2668), - [anon_sym_usize] = ACTIONS(2668), - [anon_sym_f32] = ACTIONS(2668), - [anon_sym_f64] = ACTIONS(2668), - [anon_sym_bool] = ACTIONS(2668), - [anon_sym_str] = ACTIONS(2668), - [anon_sym_char] = ACTIONS(2668), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_COLON_COLON] = ACTIONS(2666), - [anon_sym_BANG] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2666), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_SQUOTE] = ACTIONS(2668), - [anon_sym_async] = ACTIONS(2668), - [anon_sym_break] = ACTIONS(2668), - [anon_sym_const] = ACTIONS(2668), - [anon_sym_continue] = ACTIONS(2668), - [anon_sym_default] = ACTIONS(2668), - [anon_sym_enum] = ACTIONS(2668), - [anon_sym_fn] = ACTIONS(2668), - [anon_sym_for] = ACTIONS(2668), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_impl] = ACTIONS(2668), - [anon_sym_let] = ACTIONS(2668), - [anon_sym_loop] = ACTIONS(2668), - [anon_sym_match] = ACTIONS(2668), - [anon_sym_mod] = ACTIONS(2668), - [anon_sym_pub] = ACTIONS(2668), - [anon_sym_return] = ACTIONS(2668), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_struct] = ACTIONS(2668), - [anon_sym_trait] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_union] = ACTIONS(2668), - [anon_sym_unsafe] = ACTIONS(2668), - [anon_sym_use] = ACTIONS(2668), - [anon_sym_while] = ACTIONS(2668), - [anon_sym_extern] = ACTIONS(2668), - [anon_sym_DOT_DOT] = ACTIONS(2666), - [anon_sym_yield] = ACTIONS(2668), - [anon_sym_move] = ACTIONS(2668), - [anon_sym_try] = ACTIONS(2668), - [sym_integer_literal] = ACTIONS(2666), - [aux_sym_string_literal_token1] = ACTIONS(2666), - [sym_char_literal] = ACTIONS(2666), - [anon_sym_true] = ACTIONS(2668), - [anon_sym_false] = ACTIONS(2668), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2668), - [sym_super] = ACTIONS(2668), - [sym_crate] = ACTIONS(2668), - [sym_metavariable] = ACTIONS(2666), - [sym_raw_string_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2666), + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2709), + [anon_sym_SEMI] = ACTIONS(2707), + [anon_sym_macro_rules_BANG] = ACTIONS(2707), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_RBRACE] = ACTIONS(2707), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_u8] = ACTIONS(2709), + [anon_sym_i8] = ACTIONS(2709), + [anon_sym_u16] = ACTIONS(2709), + [anon_sym_i16] = ACTIONS(2709), + [anon_sym_u32] = ACTIONS(2709), + [anon_sym_i32] = ACTIONS(2709), + [anon_sym_u64] = ACTIONS(2709), + [anon_sym_i64] = ACTIONS(2709), + [anon_sym_u128] = ACTIONS(2709), + [anon_sym_i128] = ACTIONS(2709), + [anon_sym_isize] = ACTIONS(2709), + [anon_sym_usize] = ACTIONS(2709), + [anon_sym_f32] = ACTIONS(2709), + [anon_sym_f64] = ACTIONS(2709), + [anon_sym_bool] = ACTIONS(2709), + [anon_sym_str] = ACTIONS(2709), + [anon_sym_char] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_COLON_COLON] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2707), + [anon_sym_POUND] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2707), + [anon_sym_PIPE] = ACTIONS(2707), + [anon_sym_SQUOTE] = ACTIONS(2709), + [anon_sym_async] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_const] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_fn] = ACTIONS(2709), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_impl] = ACTIONS(2709), + [anon_sym_let] = ACTIONS(2709), + [anon_sym_loop] = ACTIONS(2709), + [anon_sym_match] = ACTIONS(2709), + [anon_sym_mod] = ACTIONS(2709), + [anon_sym_pub] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(2709), + [anon_sym_trait] = ACTIONS(2709), + [anon_sym_type] = ACTIONS(2709), + [anon_sym_union] = ACTIONS(2709), + [anon_sym_unsafe] = ACTIONS(2709), + [anon_sym_use] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_DOT_DOT] = ACTIONS(2707), + [anon_sym_yield] = ACTIONS(2709), + [anon_sym_move] = ACTIONS(2709), + [anon_sym_try] = ACTIONS(2709), + [sym_integer_literal] = ACTIONS(2707), + [aux_sym_string_literal_token1] = ACTIONS(2707), + [sym_char_literal] = ACTIONS(2707), + [anon_sym_true] = ACTIONS(2709), + [anon_sym_false] = ACTIONS(2709), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2709), + [sym_super] = ACTIONS(2709), + [sym_crate] = ACTIONS(2709), + [sym_metavariable] = ACTIONS(2707), + [sym_raw_string_literal] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(2707), }, [721] = { [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), - [ts_builtin_sym_end] = ACTIONS(2670), - [sym_identifier] = ACTIONS(2672), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_macro_rules_BANG] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2670), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_RBRACE] = ACTIONS(2670), - [anon_sym_STAR] = ACTIONS(2670), - [anon_sym_u8] = ACTIONS(2672), - [anon_sym_i8] = ACTIONS(2672), - [anon_sym_u16] = ACTIONS(2672), - [anon_sym_i16] = ACTIONS(2672), - [anon_sym_u32] = ACTIONS(2672), - [anon_sym_i32] = ACTIONS(2672), - [anon_sym_u64] = ACTIONS(2672), - [anon_sym_i64] = ACTIONS(2672), - [anon_sym_u128] = ACTIONS(2672), - [anon_sym_i128] = ACTIONS(2672), - [anon_sym_isize] = ACTIONS(2672), - [anon_sym_usize] = ACTIONS(2672), - [anon_sym_f32] = ACTIONS(2672), - [anon_sym_f64] = ACTIONS(2672), - [anon_sym_bool] = ACTIONS(2672), - [anon_sym_str] = ACTIONS(2672), - [anon_sym_char] = ACTIONS(2672), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2670), - [anon_sym_BANG] = ACTIONS(2670), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(2670), - [anon_sym_LT] = ACTIONS(2670), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_SQUOTE] = ACTIONS(2672), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_break] = ACTIONS(2672), - [anon_sym_const] = ACTIONS(2672), - [anon_sym_continue] = ACTIONS(2672), - [anon_sym_default] = ACTIONS(2672), - [anon_sym_enum] = ACTIONS(2672), - [anon_sym_fn] = ACTIONS(2672), - [anon_sym_for] = ACTIONS(2672), - [anon_sym_if] = ACTIONS(2672), - [anon_sym_impl] = ACTIONS(2672), - [anon_sym_let] = ACTIONS(2672), - [anon_sym_loop] = ACTIONS(2672), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_mod] = ACTIONS(2672), - [anon_sym_pub] = ACTIONS(2672), - [anon_sym_return] = ACTIONS(2672), - [anon_sym_static] = ACTIONS(2672), - [anon_sym_struct] = ACTIONS(2672), - [anon_sym_trait] = ACTIONS(2672), - [anon_sym_type] = ACTIONS(2672), - [anon_sym_union] = ACTIONS(2672), - [anon_sym_unsafe] = ACTIONS(2672), - [anon_sym_use] = ACTIONS(2672), - [anon_sym_while] = ACTIONS(2672), - [anon_sym_extern] = ACTIONS(2672), - [anon_sym_DOT_DOT] = ACTIONS(2670), - [anon_sym_yield] = ACTIONS(2672), - [anon_sym_move] = ACTIONS(2672), - [anon_sym_try] = ACTIONS(2672), - [sym_integer_literal] = ACTIONS(2670), - [aux_sym_string_literal_token1] = ACTIONS(2670), - [sym_char_literal] = ACTIONS(2670), - [anon_sym_true] = ACTIONS(2672), - [anon_sym_false] = ACTIONS(2672), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2672), - [sym_super] = ACTIONS(2672), - [sym_crate] = ACTIONS(2672), - [sym_metavariable] = ACTIONS(2670), - [sym_raw_string_literal] = ACTIONS(2670), - [sym_float_literal] = ACTIONS(2670), + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2713), + [anon_sym_SEMI] = ACTIONS(2711), + [anon_sym_macro_rules_BANG] = ACTIONS(2711), + [anon_sym_LPAREN] = ACTIONS(2711), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_RBRACE] = ACTIONS(2711), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_u8] = ACTIONS(2713), + [anon_sym_i8] = ACTIONS(2713), + [anon_sym_u16] = ACTIONS(2713), + [anon_sym_i16] = ACTIONS(2713), + [anon_sym_u32] = ACTIONS(2713), + [anon_sym_i32] = ACTIONS(2713), + [anon_sym_u64] = ACTIONS(2713), + [anon_sym_i64] = ACTIONS(2713), + [anon_sym_u128] = ACTIONS(2713), + [anon_sym_i128] = ACTIONS(2713), + [anon_sym_isize] = ACTIONS(2713), + [anon_sym_usize] = ACTIONS(2713), + [anon_sym_f32] = ACTIONS(2713), + [anon_sym_f64] = ACTIONS(2713), + [anon_sym_bool] = ACTIONS(2713), + [anon_sym_str] = ACTIONS(2713), + [anon_sym_char] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2711), + [anon_sym_COLON_COLON] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2711), + [anon_sym_POUND] = ACTIONS(2711), + [anon_sym_LT] = ACTIONS(2711), + [anon_sym_PIPE] = ACTIONS(2711), + [anon_sym_SQUOTE] = ACTIONS(2713), + [anon_sym_async] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_const] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_fn] = ACTIONS(2713), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_impl] = ACTIONS(2713), + [anon_sym_let] = ACTIONS(2713), + [anon_sym_loop] = ACTIONS(2713), + [anon_sym_match] = ACTIONS(2713), + [anon_sym_mod] = ACTIONS(2713), + [anon_sym_pub] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2713), + [anon_sym_trait] = ACTIONS(2713), + [anon_sym_type] = ACTIONS(2713), + [anon_sym_union] = ACTIONS(2713), + [anon_sym_unsafe] = ACTIONS(2713), + [anon_sym_use] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym_DOT_DOT] = ACTIONS(2711), + [anon_sym_yield] = ACTIONS(2713), + [anon_sym_move] = ACTIONS(2713), + [anon_sym_try] = ACTIONS(2713), + [sym_integer_literal] = ACTIONS(2711), + [aux_sym_string_literal_token1] = ACTIONS(2711), + [sym_char_literal] = ACTIONS(2711), + [anon_sym_true] = ACTIONS(2713), + [anon_sym_false] = ACTIONS(2713), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2713), + [sym_super] = ACTIONS(2713), + [sym_crate] = ACTIONS(2713), + [sym_metavariable] = ACTIONS(2711), + [sym_raw_string_literal] = ACTIONS(2711), + [sym_float_literal] = ACTIONS(2711), }, [722] = { [sym_line_comment] = STATE(722), [sym_block_comment] = STATE(722), - [ts_builtin_sym_end] = ACTIONS(2674), - [sym_identifier] = ACTIONS(2676), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_macro_rules_BANG] = ACTIONS(2674), - [anon_sym_LPAREN] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_RBRACE] = ACTIONS(2674), - [anon_sym_STAR] = ACTIONS(2674), - [anon_sym_u8] = ACTIONS(2676), - [anon_sym_i8] = ACTIONS(2676), - [anon_sym_u16] = ACTIONS(2676), - [anon_sym_i16] = ACTIONS(2676), - [anon_sym_u32] = ACTIONS(2676), - [anon_sym_i32] = ACTIONS(2676), - [anon_sym_u64] = ACTIONS(2676), - [anon_sym_i64] = ACTIONS(2676), - [anon_sym_u128] = ACTIONS(2676), - [anon_sym_i128] = ACTIONS(2676), - [anon_sym_isize] = ACTIONS(2676), - [anon_sym_usize] = ACTIONS(2676), - [anon_sym_f32] = ACTIONS(2676), - [anon_sym_f64] = ACTIONS(2676), - [anon_sym_bool] = ACTIONS(2676), - [anon_sym_str] = ACTIONS(2676), - [anon_sym_char] = ACTIONS(2676), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_COLON_COLON] = ACTIONS(2674), - [anon_sym_BANG] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(2674), - [anon_sym_LT] = ACTIONS(2674), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_SQUOTE] = ACTIONS(2676), - [anon_sym_async] = ACTIONS(2676), - [anon_sym_break] = ACTIONS(2676), - [anon_sym_const] = ACTIONS(2676), - [anon_sym_continue] = ACTIONS(2676), - [anon_sym_default] = ACTIONS(2676), - [anon_sym_enum] = ACTIONS(2676), - [anon_sym_fn] = ACTIONS(2676), - [anon_sym_for] = ACTIONS(2676), - [anon_sym_if] = ACTIONS(2676), - [anon_sym_impl] = ACTIONS(2676), - [anon_sym_let] = ACTIONS(2676), - [anon_sym_loop] = ACTIONS(2676), - [anon_sym_match] = ACTIONS(2676), - [anon_sym_mod] = ACTIONS(2676), - [anon_sym_pub] = ACTIONS(2676), - [anon_sym_return] = ACTIONS(2676), - [anon_sym_static] = ACTIONS(2676), - [anon_sym_struct] = ACTIONS(2676), - [anon_sym_trait] = ACTIONS(2676), - [anon_sym_type] = ACTIONS(2676), - [anon_sym_union] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2676), - [anon_sym_use] = ACTIONS(2676), - [anon_sym_while] = ACTIONS(2676), - [anon_sym_extern] = ACTIONS(2676), - [anon_sym_DOT_DOT] = ACTIONS(2674), - [anon_sym_yield] = ACTIONS(2676), - [anon_sym_move] = ACTIONS(2676), - [anon_sym_try] = ACTIONS(2676), - [sym_integer_literal] = ACTIONS(2674), - [aux_sym_string_literal_token1] = ACTIONS(2674), - [sym_char_literal] = ACTIONS(2674), - [anon_sym_true] = ACTIONS(2676), - [anon_sym_false] = ACTIONS(2676), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2676), - [sym_super] = ACTIONS(2676), - [sym_crate] = ACTIONS(2676), - [sym_metavariable] = ACTIONS(2674), - [sym_raw_string_literal] = ACTIONS(2674), - [sym_float_literal] = ACTIONS(2674), + [ts_builtin_sym_end] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2717), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_macro_rules_BANG] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_u8] = ACTIONS(2717), + [anon_sym_i8] = ACTIONS(2717), + [anon_sym_u16] = ACTIONS(2717), + [anon_sym_i16] = ACTIONS(2717), + [anon_sym_u32] = ACTIONS(2717), + [anon_sym_i32] = ACTIONS(2717), + [anon_sym_u64] = ACTIONS(2717), + [anon_sym_i64] = ACTIONS(2717), + [anon_sym_u128] = ACTIONS(2717), + [anon_sym_i128] = ACTIONS(2717), + [anon_sym_isize] = ACTIONS(2717), + [anon_sym_usize] = ACTIONS(2717), + [anon_sym_f32] = ACTIONS(2717), + [anon_sym_f64] = ACTIONS(2717), + [anon_sym_bool] = ACTIONS(2717), + [anon_sym_str] = ACTIONS(2717), + [anon_sym_char] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_COLON_COLON] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_SQUOTE] = ACTIONS(2717), + [anon_sym_async] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_const] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_fn] = ACTIONS(2717), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_impl] = ACTIONS(2717), + [anon_sym_let] = ACTIONS(2717), + [anon_sym_loop] = ACTIONS(2717), + [anon_sym_match] = ACTIONS(2717), + [anon_sym_mod] = ACTIONS(2717), + [anon_sym_pub] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(2717), + [anon_sym_trait] = ACTIONS(2717), + [anon_sym_type] = ACTIONS(2717), + [anon_sym_union] = ACTIONS(2717), + [anon_sym_unsafe] = ACTIONS(2717), + [anon_sym_use] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym_DOT_DOT] = ACTIONS(2715), + [anon_sym_yield] = ACTIONS(2717), + [anon_sym_move] = ACTIONS(2717), + [anon_sym_try] = ACTIONS(2717), + [sym_integer_literal] = ACTIONS(2715), + [aux_sym_string_literal_token1] = ACTIONS(2715), + [sym_char_literal] = ACTIONS(2715), + [anon_sym_true] = ACTIONS(2717), + [anon_sym_false] = ACTIONS(2717), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2717), + [sym_super] = ACTIONS(2717), + [sym_crate] = ACTIONS(2717), + [sym_metavariable] = ACTIONS(2715), + [sym_raw_string_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), }, [723] = { [sym_line_comment] = STATE(723), [sym_block_comment] = STATE(723), - [ts_builtin_sym_end] = ACTIONS(2678), - [sym_identifier] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2678), - [anon_sym_macro_rules_BANG] = ACTIONS(2678), - [anon_sym_LPAREN] = ACTIONS(2678), - [anon_sym_LBRACK] = ACTIONS(2678), - [anon_sym_LBRACE] = ACTIONS(2678), - [anon_sym_RBRACE] = ACTIONS(2678), - [anon_sym_STAR] = ACTIONS(2678), - [anon_sym_u8] = ACTIONS(2680), - [anon_sym_i8] = ACTIONS(2680), - [anon_sym_u16] = ACTIONS(2680), - [anon_sym_i16] = ACTIONS(2680), - [anon_sym_u32] = ACTIONS(2680), - [anon_sym_i32] = ACTIONS(2680), - [anon_sym_u64] = ACTIONS(2680), - [anon_sym_i64] = ACTIONS(2680), - [anon_sym_u128] = ACTIONS(2680), - [anon_sym_i128] = ACTIONS(2680), - [anon_sym_isize] = ACTIONS(2680), - [anon_sym_usize] = ACTIONS(2680), - [anon_sym_f32] = ACTIONS(2680), - [anon_sym_f64] = ACTIONS(2680), - [anon_sym_bool] = ACTIONS(2680), - [anon_sym_str] = ACTIONS(2680), - [anon_sym_char] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2678), - [anon_sym_COLON_COLON] = ACTIONS(2678), - [anon_sym_BANG] = ACTIONS(2678), - [anon_sym_AMP] = ACTIONS(2678), - [anon_sym_POUND] = ACTIONS(2678), - [anon_sym_LT] = ACTIONS(2678), - [anon_sym_PIPE] = ACTIONS(2678), - [anon_sym_SQUOTE] = ACTIONS(2680), - [anon_sym_async] = ACTIONS(2680), - [anon_sym_break] = ACTIONS(2680), - [anon_sym_const] = ACTIONS(2680), - [anon_sym_continue] = ACTIONS(2680), - [anon_sym_default] = ACTIONS(2680), - [anon_sym_enum] = ACTIONS(2680), - [anon_sym_fn] = ACTIONS(2680), - [anon_sym_for] = ACTIONS(2680), - [anon_sym_if] = ACTIONS(2680), - [anon_sym_impl] = ACTIONS(2680), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_loop] = ACTIONS(2680), - [anon_sym_match] = ACTIONS(2680), - [anon_sym_mod] = ACTIONS(2680), - [anon_sym_pub] = ACTIONS(2680), - [anon_sym_return] = ACTIONS(2680), - [anon_sym_static] = ACTIONS(2680), - [anon_sym_struct] = ACTIONS(2680), - [anon_sym_trait] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_union] = ACTIONS(2680), - [anon_sym_unsafe] = ACTIONS(2680), - [anon_sym_use] = ACTIONS(2680), - [anon_sym_while] = ACTIONS(2680), - [anon_sym_extern] = ACTIONS(2680), - [anon_sym_DOT_DOT] = ACTIONS(2678), - [anon_sym_yield] = ACTIONS(2680), - [anon_sym_move] = ACTIONS(2680), - [anon_sym_try] = ACTIONS(2680), - [sym_integer_literal] = ACTIONS(2678), - [aux_sym_string_literal_token1] = ACTIONS(2678), - [sym_char_literal] = ACTIONS(2678), - [anon_sym_true] = ACTIONS(2680), - [anon_sym_false] = ACTIONS(2680), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2680), - [sym_super] = ACTIONS(2680), - [sym_crate] = ACTIONS(2680), - [sym_metavariable] = ACTIONS(2678), - [sym_raw_string_literal] = ACTIONS(2678), - [sym_float_literal] = ACTIONS(2678), + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2721), + [anon_sym_SEMI] = ACTIONS(2719), + [anon_sym_macro_rules_BANG] = ACTIONS(2719), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_RBRACE] = ACTIONS(2719), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_u8] = ACTIONS(2721), + [anon_sym_i8] = ACTIONS(2721), + [anon_sym_u16] = ACTIONS(2721), + [anon_sym_i16] = ACTIONS(2721), + [anon_sym_u32] = ACTIONS(2721), + [anon_sym_i32] = ACTIONS(2721), + [anon_sym_u64] = ACTIONS(2721), + [anon_sym_i64] = ACTIONS(2721), + [anon_sym_u128] = ACTIONS(2721), + [anon_sym_i128] = ACTIONS(2721), + [anon_sym_isize] = ACTIONS(2721), + [anon_sym_usize] = ACTIONS(2721), + [anon_sym_f32] = ACTIONS(2721), + [anon_sym_f64] = ACTIONS(2721), + [anon_sym_bool] = ACTIONS(2721), + [anon_sym_str] = ACTIONS(2721), + [anon_sym_char] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2719), + [anon_sym_COLON_COLON] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2719), + [anon_sym_POUND] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2719), + [anon_sym_PIPE] = ACTIONS(2719), + [anon_sym_SQUOTE] = ACTIONS(2721), + [anon_sym_async] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_const] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_fn] = ACTIONS(2721), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_impl] = ACTIONS(2721), + [anon_sym_let] = ACTIONS(2721), + [anon_sym_loop] = ACTIONS(2721), + [anon_sym_match] = ACTIONS(2721), + [anon_sym_mod] = ACTIONS(2721), + [anon_sym_pub] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(2721), + [anon_sym_trait] = ACTIONS(2721), + [anon_sym_type] = ACTIONS(2721), + [anon_sym_union] = ACTIONS(2721), + [anon_sym_unsafe] = ACTIONS(2721), + [anon_sym_use] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym_DOT_DOT] = ACTIONS(2719), + [anon_sym_yield] = ACTIONS(2721), + [anon_sym_move] = ACTIONS(2721), + [anon_sym_try] = ACTIONS(2721), + [sym_integer_literal] = ACTIONS(2719), + [aux_sym_string_literal_token1] = ACTIONS(2719), + [sym_char_literal] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2721), + [anon_sym_false] = ACTIONS(2721), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2721), + [sym_super] = ACTIONS(2721), + [sym_crate] = ACTIONS(2721), + [sym_metavariable] = ACTIONS(2719), + [sym_raw_string_literal] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(2719), }, [724] = { [sym_line_comment] = STATE(724), [sym_block_comment] = STATE(724), - [ts_builtin_sym_end] = ACTIONS(2682), - [sym_identifier] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2682), - [anon_sym_macro_rules_BANG] = ACTIONS(2682), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_LBRACK] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2682), - [anon_sym_RBRACE] = ACTIONS(2682), - [anon_sym_STAR] = ACTIONS(2682), - [anon_sym_u8] = ACTIONS(2684), - [anon_sym_i8] = ACTIONS(2684), - [anon_sym_u16] = ACTIONS(2684), - [anon_sym_i16] = ACTIONS(2684), - [anon_sym_u32] = ACTIONS(2684), - [anon_sym_i32] = ACTIONS(2684), - [anon_sym_u64] = ACTIONS(2684), - [anon_sym_i64] = ACTIONS(2684), - [anon_sym_u128] = ACTIONS(2684), - [anon_sym_i128] = ACTIONS(2684), - [anon_sym_isize] = ACTIONS(2684), - [anon_sym_usize] = ACTIONS(2684), - [anon_sym_f32] = ACTIONS(2684), - [anon_sym_f64] = ACTIONS(2684), - [anon_sym_bool] = ACTIONS(2684), - [anon_sym_str] = ACTIONS(2684), - [anon_sym_char] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2682), - [anon_sym_COLON_COLON] = ACTIONS(2682), - [anon_sym_BANG] = ACTIONS(2682), - [anon_sym_AMP] = ACTIONS(2682), - [anon_sym_POUND] = ACTIONS(2682), - [anon_sym_LT] = ACTIONS(2682), - [anon_sym_PIPE] = ACTIONS(2682), - [anon_sym_SQUOTE] = ACTIONS(2684), - [anon_sym_async] = ACTIONS(2684), - [anon_sym_break] = ACTIONS(2684), - [anon_sym_const] = ACTIONS(2684), - [anon_sym_continue] = ACTIONS(2684), - [anon_sym_default] = ACTIONS(2684), - [anon_sym_enum] = ACTIONS(2684), - [anon_sym_fn] = ACTIONS(2684), - [anon_sym_for] = ACTIONS(2684), - [anon_sym_if] = ACTIONS(2684), - [anon_sym_impl] = ACTIONS(2684), - [anon_sym_let] = ACTIONS(2684), - [anon_sym_loop] = ACTIONS(2684), - [anon_sym_match] = ACTIONS(2684), - [anon_sym_mod] = ACTIONS(2684), - [anon_sym_pub] = ACTIONS(2684), - [anon_sym_return] = ACTIONS(2684), - [anon_sym_static] = ACTIONS(2684), - [anon_sym_struct] = ACTIONS(2684), - [anon_sym_trait] = ACTIONS(2684), - [anon_sym_type] = ACTIONS(2684), - [anon_sym_union] = ACTIONS(2684), - [anon_sym_unsafe] = ACTIONS(2684), - [anon_sym_use] = ACTIONS(2684), - [anon_sym_while] = ACTIONS(2684), - [anon_sym_extern] = ACTIONS(2684), - [anon_sym_DOT_DOT] = ACTIONS(2682), - [anon_sym_yield] = ACTIONS(2684), - [anon_sym_move] = ACTIONS(2684), - [anon_sym_try] = ACTIONS(2684), - [sym_integer_literal] = ACTIONS(2682), - [aux_sym_string_literal_token1] = ACTIONS(2682), - [sym_char_literal] = ACTIONS(2682), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2684), - [sym_super] = ACTIONS(2684), - [sym_crate] = ACTIONS(2684), - [sym_metavariable] = ACTIONS(2682), - [sym_raw_string_literal] = ACTIONS(2682), - [sym_float_literal] = ACTIONS(2682), + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2725), + [anon_sym_SEMI] = ACTIONS(2723), + [anon_sym_macro_rules_BANG] = ACTIONS(2723), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_RBRACE] = ACTIONS(2723), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_u8] = ACTIONS(2725), + [anon_sym_i8] = ACTIONS(2725), + [anon_sym_u16] = ACTIONS(2725), + [anon_sym_i16] = ACTIONS(2725), + [anon_sym_u32] = ACTIONS(2725), + [anon_sym_i32] = ACTIONS(2725), + [anon_sym_u64] = ACTIONS(2725), + [anon_sym_i64] = ACTIONS(2725), + [anon_sym_u128] = ACTIONS(2725), + [anon_sym_i128] = ACTIONS(2725), + [anon_sym_isize] = ACTIONS(2725), + [anon_sym_usize] = ACTIONS(2725), + [anon_sym_f32] = ACTIONS(2725), + [anon_sym_f64] = ACTIONS(2725), + [anon_sym_bool] = ACTIONS(2725), + [anon_sym_str] = ACTIONS(2725), + [anon_sym_char] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2723), + [anon_sym_COLON_COLON] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2723), + [anon_sym_POUND] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2723), + [anon_sym_PIPE] = ACTIONS(2723), + [anon_sym_SQUOTE] = ACTIONS(2725), + [anon_sym_async] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_const] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_fn] = ACTIONS(2725), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_impl] = ACTIONS(2725), + [anon_sym_let] = ACTIONS(2725), + [anon_sym_loop] = ACTIONS(2725), + [anon_sym_match] = ACTIONS(2725), + [anon_sym_mod] = ACTIONS(2725), + [anon_sym_pub] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2725), + [anon_sym_trait] = ACTIONS(2725), + [anon_sym_type] = ACTIONS(2725), + [anon_sym_union] = ACTIONS(2725), + [anon_sym_unsafe] = ACTIONS(2725), + [anon_sym_use] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym_DOT_DOT] = ACTIONS(2723), + [anon_sym_yield] = ACTIONS(2725), + [anon_sym_move] = ACTIONS(2725), + [anon_sym_try] = ACTIONS(2725), + [sym_integer_literal] = ACTIONS(2723), + [aux_sym_string_literal_token1] = ACTIONS(2723), + [sym_char_literal] = ACTIONS(2723), + [anon_sym_true] = ACTIONS(2725), + [anon_sym_false] = ACTIONS(2725), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2725), + [sym_super] = ACTIONS(2725), + [sym_crate] = ACTIONS(2725), + [sym_metavariable] = ACTIONS(2723), + [sym_raw_string_literal] = ACTIONS(2723), + [sym_float_literal] = ACTIONS(2723), }, [725] = { [sym_line_comment] = STATE(725), [sym_block_comment] = STATE(725), - [ts_builtin_sym_end] = ACTIONS(2686), - [sym_identifier] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2686), - [anon_sym_macro_rules_BANG] = ACTIONS(2686), - [anon_sym_LPAREN] = ACTIONS(2686), - [anon_sym_LBRACK] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(2686), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_STAR] = ACTIONS(2686), - [anon_sym_u8] = ACTIONS(2688), - [anon_sym_i8] = ACTIONS(2688), - [anon_sym_u16] = ACTIONS(2688), - [anon_sym_i16] = ACTIONS(2688), - [anon_sym_u32] = ACTIONS(2688), - [anon_sym_i32] = ACTIONS(2688), - [anon_sym_u64] = ACTIONS(2688), - [anon_sym_i64] = ACTIONS(2688), - [anon_sym_u128] = ACTIONS(2688), - [anon_sym_i128] = ACTIONS(2688), - [anon_sym_isize] = ACTIONS(2688), - [anon_sym_usize] = ACTIONS(2688), - [anon_sym_f32] = ACTIONS(2688), - [anon_sym_f64] = ACTIONS(2688), - [anon_sym_bool] = ACTIONS(2688), - [anon_sym_str] = ACTIONS(2688), - [anon_sym_char] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2686), - [anon_sym_COLON_COLON] = ACTIONS(2686), - [anon_sym_BANG] = ACTIONS(2686), - [anon_sym_AMP] = ACTIONS(2686), - [anon_sym_POUND] = ACTIONS(2686), - [anon_sym_LT] = ACTIONS(2686), - [anon_sym_PIPE] = ACTIONS(2686), - [anon_sym_SQUOTE] = ACTIONS(2688), - [anon_sym_async] = ACTIONS(2688), - [anon_sym_break] = ACTIONS(2688), - [anon_sym_const] = ACTIONS(2688), - [anon_sym_continue] = ACTIONS(2688), - [anon_sym_default] = ACTIONS(2688), - [anon_sym_enum] = ACTIONS(2688), - [anon_sym_fn] = ACTIONS(2688), - [anon_sym_for] = ACTIONS(2688), - [anon_sym_if] = ACTIONS(2688), - [anon_sym_impl] = ACTIONS(2688), - [anon_sym_let] = ACTIONS(2688), - [anon_sym_loop] = ACTIONS(2688), - [anon_sym_match] = ACTIONS(2688), - [anon_sym_mod] = ACTIONS(2688), - [anon_sym_pub] = ACTIONS(2688), - [anon_sym_return] = ACTIONS(2688), - [anon_sym_static] = ACTIONS(2688), - [anon_sym_struct] = ACTIONS(2688), - [anon_sym_trait] = ACTIONS(2688), - [anon_sym_type] = ACTIONS(2688), - [anon_sym_union] = ACTIONS(2688), - [anon_sym_unsafe] = ACTIONS(2688), - [anon_sym_use] = ACTIONS(2688), - [anon_sym_while] = ACTIONS(2688), - [anon_sym_extern] = ACTIONS(2688), - [anon_sym_DOT_DOT] = ACTIONS(2686), - [anon_sym_yield] = ACTIONS(2688), - [anon_sym_move] = ACTIONS(2688), - [anon_sym_try] = ACTIONS(2688), - [sym_integer_literal] = ACTIONS(2686), - [aux_sym_string_literal_token1] = ACTIONS(2686), - [sym_char_literal] = ACTIONS(2686), - [anon_sym_true] = ACTIONS(2688), - [anon_sym_false] = ACTIONS(2688), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2688), - [sym_super] = ACTIONS(2688), - [sym_crate] = ACTIONS(2688), - [sym_metavariable] = ACTIONS(2686), - [sym_raw_string_literal] = ACTIONS(2686), - [sym_float_literal] = ACTIONS(2686), + [ts_builtin_sym_end] = ACTIONS(868), + [sym_identifier] = ACTIONS(870), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_macro_rules_BANG] = ACTIONS(868), + [anon_sym_LPAREN] = ACTIONS(868), + [anon_sym_LBRACK] = ACTIONS(868), + [anon_sym_LBRACE] = ACTIONS(868), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_STAR] = ACTIONS(868), + [anon_sym_u8] = ACTIONS(870), + [anon_sym_i8] = ACTIONS(870), + [anon_sym_u16] = ACTIONS(870), + [anon_sym_i16] = ACTIONS(870), + [anon_sym_u32] = ACTIONS(870), + [anon_sym_i32] = ACTIONS(870), + [anon_sym_u64] = ACTIONS(870), + [anon_sym_i64] = ACTIONS(870), + [anon_sym_u128] = ACTIONS(870), + [anon_sym_i128] = ACTIONS(870), + [anon_sym_isize] = ACTIONS(870), + [anon_sym_usize] = ACTIONS(870), + [anon_sym_f32] = ACTIONS(870), + [anon_sym_f64] = ACTIONS(870), + [anon_sym_bool] = ACTIONS(870), + [anon_sym_str] = ACTIONS(870), + [anon_sym_char] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(868), + [anon_sym_COLON_COLON] = ACTIONS(868), + [anon_sym_BANG] = ACTIONS(868), + [anon_sym_AMP] = ACTIONS(868), + [anon_sym_POUND] = ACTIONS(868), + [anon_sym_LT] = ACTIONS(868), + [anon_sym_PIPE] = ACTIONS(868), + [anon_sym_SQUOTE] = ACTIONS(870), + [anon_sym_async] = ACTIONS(870), + [anon_sym_break] = ACTIONS(870), + [anon_sym_const] = ACTIONS(870), + [anon_sym_continue] = ACTIONS(870), + [anon_sym_default] = ACTIONS(870), + [anon_sym_enum] = ACTIONS(870), + [anon_sym_fn] = ACTIONS(870), + [anon_sym_for] = ACTIONS(870), + [anon_sym_if] = ACTIONS(870), + [anon_sym_impl] = ACTIONS(870), + [anon_sym_let] = ACTIONS(870), + [anon_sym_loop] = ACTIONS(870), + [anon_sym_match] = ACTIONS(870), + [anon_sym_mod] = ACTIONS(870), + [anon_sym_pub] = ACTIONS(870), + [anon_sym_return] = ACTIONS(870), + [anon_sym_static] = ACTIONS(870), + [anon_sym_struct] = ACTIONS(870), + [anon_sym_trait] = ACTIONS(870), + [anon_sym_type] = ACTIONS(870), + [anon_sym_union] = ACTIONS(870), + [anon_sym_unsafe] = ACTIONS(870), + [anon_sym_use] = ACTIONS(870), + [anon_sym_while] = ACTIONS(870), + [anon_sym_extern] = ACTIONS(870), + [anon_sym_DOT_DOT] = ACTIONS(868), + [anon_sym_yield] = ACTIONS(870), + [anon_sym_move] = ACTIONS(870), + [anon_sym_try] = ACTIONS(870), + [sym_integer_literal] = ACTIONS(868), + [aux_sym_string_literal_token1] = ACTIONS(868), + [sym_char_literal] = ACTIONS(868), + [anon_sym_true] = ACTIONS(870), + [anon_sym_false] = ACTIONS(870), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(870), + [sym_super] = ACTIONS(870), + [sym_crate] = ACTIONS(870), + [sym_metavariable] = ACTIONS(868), + [sym_raw_string_literal] = ACTIONS(868), + [sym_float_literal] = ACTIONS(868), }, [726] = { [sym_line_comment] = STATE(726), [sym_block_comment] = STATE(726), - [ts_builtin_sym_end] = ACTIONS(2690), - [sym_identifier] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_macro_rules_BANG] = ACTIONS(2690), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2690), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_STAR] = ACTIONS(2690), - [anon_sym_u8] = ACTIONS(2692), - [anon_sym_i8] = ACTIONS(2692), - [anon_sym_u16] = ACTIONS(2692), - [anon_sym_i16] = ACTIONS(2692), - [anon_sym_u32] = ACTIONS(2692), - [anon_sym_i32] = ACTIONS(2692), - [anon_sym_u64] = ACTIONS(2692), - [anon_sym_i64] = ACTIONS(2692), - [anon_sym_u128] = ACTIONS(2692), - [anon_sym_i128] = ACTIONS(2692), - [anon_sym_isize] = ACTIONS(2692), - [anon_sym_usize] = ACTIONS(2692), - [anon_sym_f32] = ACTIONS(2692), - [anon_sym_f64] = ACTIONS(2692), - [anon_sym_bool] = ACTIONS(2692), - [anon_sym_str] = ACTIONS(2692), - [anon_sym_char] = ACTIONS(2692), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_BANG] = ACTIONS(2690), - [anon_sym_AMP] = ACTIONS(2690), - [anon_sym_POUND] = ACTIONS(2690), - [anon_sym_LT] = ACTIONS(2690), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_SQUOTE] = ACTIONS(2692), - [anon_sym_async] = ACTIONS(2692), - [anon_sym_break] = ACTIONS(2692), - [anon_sym_const] = ACTIONS(2692), - [anon_sym_continue] = ACTIONS(2692), - [anon_sym_default] = ACTIONS(2692), - [anon_sym_enum] = ACTIONS(2692), - [anon_sym_fn] = ACTIONS(2692), - [anon_sym_for] = ACTIONS(2692), - [anon_sym_if] = ACTIONS(2692), - [anon_sym_impl] = ACTIONS(2692), - [anon_sym_let] = ACTIONS(2692), - [anon_sym_loop] = ACTIONS(2692), - [anon_sym_match] = ACTIONS(2692), - [anon_sym_mod] = ACTIONS(2692), - [anon_sym_pub] = ACTIONS(2692), - [anon_sym_return] = ACTIONS(2692), - [anon_sym_static] = ACTIONS(2692), - [anon_sym_struct] = ACTIONS(2692), - [anon_sym_trait] = ACTIONS(2692), - [anon_sym_type] = ACTIONS(2692), - [anon_sym_union] = ACTIONS(2692), - [anon_sym_unsafe] = ACTIONS(2692), - [anon_sym_use] = ACTIONS(2692), - [anon_sym_while] = ACTIONS(2692), - [anon_sym_extern] = ACTIONS(2692), - [anon_sym_DOT_DOT] = ACTIONS(2690), - [anon_sym_yield] = ACTIONS(2692), - [anon_sym_move] = ACTIONS(2692), - [anon_sym_try] = ACTIONS(2692), - [sym_integer_literal] = ACTIONS(2690), - [aux_sym_string_literal_token1] = ACTIONS(2690), - [sym_char_literal] = ACTIONS(2690), - [anon_sym_true] = ACTIONS(2692), - [anon_sym_false] = ACTIONS(2692), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2692), - [sym_super] = ACTIONS(2692), - [sym_crate] = ACTIONS(2692), - [sym_metavariable] = ACTIONS(2690), - [sym_raw_string_literal] = ACTIONS(2690), - [sym_float_literal] = ACTIONS(2690), + [ts_builtin_sym_end] = ACTIONS(900), + [sym_identifier] = ACTIONS(902), + [anon_sym_SEMI] = ACTIONS(900), + [anon_sym_macro_rules_BANG] = ACTIONS(900), + [anon_sym_LPAREN] = ACTIONS(900), + [anon_sym_LBRACK] = ACTIONS(900), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_RBRACE] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(900), + [anon_sym_u8] = ACTIONS(902), + [anon_sym_i8] = ACTIONS(902), + [anon_sym_u16] = ACTIONS(902), + [anon_sym_i16] = ACTIONS(902), + [anon_sym_u32] = ACTIONS(902), + [anon_sym_i32] = ACTIONS(902), + [anon_sym_u64] = ACTIONS(902), + [anon_sym_i64] = ACTIONS(902), + [anon_sym_u128] = ACTIONS(902), + [anon_sym_i128] = ACTIONS(902), + [anon_sym_isize] = ACTIONS(902), + [anon_sym_usize] = ACTIONS(902), + [anon_sym_f32] = ACTIONS(902), + [anon_sym_f64] = ACTIONS(902), + [anon_sym_bool] = ACTIONS(902), + [anon_sym_str] = ACTIONS(902), + [anon_sym_char] = ACTIONS(902), + [anon_sym_DASH] = ACTIONS(900), + [anon_sym_COLON_COLON] = ACTIONS(900), + [anon_sym_BANG] = ACTIONS(900), + [anon_sym_AMP] = ACTIONS(900), + [anon_sym_POUND] = ACTIONS(900), + [anon_sym_LT] = ACTIONS(900), + [anon_sym_PIPE] = ACTIONS(900), + [anon_sym_SQUOTE] = ACTIONS(902), + [anon_sym_async] = ACTIONS(902), + [anon_sym_break] = ACTIONS(902), + [anon_sym_const] = ACTIONS(902), + [anon_sym_continue] = ACTIONS(902), + [anon_sym_default] = ACTIONS(902), + [anon_sym_enum] = ACTIONS(902), + [anon_sym_fn] = ACTIONS(902), + [anon_sym_for] = ACTIONS(902), + [anon_sym_if] = ACTIONS(902), + [anon_sym_impl] = ACTIONS(902), + [anon_sym_let] = ACTIONS(902), + [anon_sym_loop] = ACTIONS(902), + [anon_sym_match] = ACTIONS(902), + [anon_sym_mod] = ACTIONS(902), + [anon_sym_pub] = ACTIONS(902), + [anon_sym_return] = ACTIONS(902), + [anon_sym_static] = ACTIONS(902), + [anon_sym_struct] = ACTIONS(902), + [anon_sym_trait] = ACTIONS(902), + [anon_sym_type] = ACTIONS(902), + [anon_sym_union] = ACTIONS(902), + [anon_sym_unsafe] = ACTIONS(902), + [anon_sym_use] = ACTIONS(902), + [anon_sym_while] = ACTIONS(902), + [anon_sym_extern] = ACTIONS(902), + [anon_sym_DOT_DOT] = ACTIONS(900), + [anon_sym_yield] = ACTIONS(902), + [anon_sym_move] = ACTIONS(902), + [anon_sym_try] = ACTIONS(902), + [sym_integer_literal] = ACTIONS(900), + [aux_sym_string_literal_token1] = ACTIONS(900), + [sym_char_literal] = ACTIONS(900), + [anon_sym_true] = ACTIONS(902), + [anon_sym_false] = ACTIONS(902), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(902), + [sym_super] = ACTIONS(902), + [sym_crate] = ACTIONS(902), + [sym_metavariable] = ACTIONS(900), + [sym_raw_string_literal] = ACTIONS(900), + [sym_float_literal] = ACTIONS(900), }, [727] = { [sym_line_comment] = STATE(727), [sym_block_comment] = STATE(727), - [ts_builtin_sym_end] = ACTIONS(2694), - [sym_identifier] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2694), - [anon_sym_macro_rules_BANG] = ACTIONS(2694), - [anon_sym_LPAREN] = ACTIONS(2694), - [anon_sym_LBRACK] = ACTIONS(2694), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_RBRACE] = ACTIONS(2694), - [anon_sym_STAR] = ACTIONS(2694), - [anon_sym_u8] = ACTIONS(2696), - [anon_sym_i8] = ACTIONS(2696), - [anon_sym_u16] = ACTIONS(2696), - [anon_sym_i16] = ACTIONS(2696), - [anon_sym_u32] = ACTIONS(2696), - [anon_sym_i32] = ACTIONS(2696), - [anon_sym_u64] = ACTIONS(2696), - [anon_sym_i64] = ACTIONS(2696), - [anon_sym_u128] = ACTIONS(2696), - [anon_sym_i128] = ACTIONS(2696), - [anon_sym_isize] = ACTIONS(2696), - [anon_sym_usize] = ACTIONS(2696), - [anon_sym_f32] = ACTIONS(2696), - [anon_sym_f64] = ACTIONS(2696), - [anon_sym_bool] = ACTIONS(2696), - [anon_sym_str] = ACTIONS(2696), - [anon_sym_char] = ACTIONS(2696), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_COLON_COLON] = ACTIONS(2694), - [anon_sym_BANG] = ACTIONS(2694), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_POUND] = ACTIONS(2694), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_SQUOTE] = ACTIONS(2696), - [anon_sym_async] = ACTIONS(2696), - [anon_sym_break] = ACTIONS(2696), - [anon_sym_const] = ACTIONS(2696), - [anon_sym_continue] = ACTIONS(2696), - [anon_sym_default] = ACTIONS(2696), - [anon_sym_enum] = ACTIONS(2696), - [anon_sym_fn] = ACTIONS(2696), - [anon_sym_for] = ACTIONS(2696), - [anon_sym_if] = ACTIONS(2696), - [anon_sym_impl] = ACTIONS(2696), - [anon_sym_let] = ACTIONS(2696), - [anon_sym_loop] = ACTIONS(2696), - [anon_sym_match] = ACTIONS(2696), - [anon_sym_mod] = ACTIONS(2696), - [anon_sym_pub] = ACTIONS(2696), - [anon_sym_return] = ACTIONS(2696), - [anon_sym_static] = ACTIONS(2696), - [anon_sym_struct] = ACTIONS(2696), - [anon_sym_trait] = ACTIONS(2696), - [anon_sym_type] = ACTIONS(2696), - [anon_sym_union] = ACTIONS(2696), - [anon_sym_unsafe] = ACTIONS(2696), - [anon_sym_use] = ACTIONS(2696), - [anon_sym_while] = ACTIONS(2696), - [anon_sym_extern] = ACTIONS(2696), - [anon_sym_DOT_DOT] = ACTIONS(2694), - [anon_sym_yield] = ACTIONS(2696), - [anon_sym_move] = ACTIONS(2696), - [anon_sym_try] = ACTIONS(2696), - [sym_integer_literal] = ACTIONS(2694), - [aux_sym_string_literal_token1] = ACTIONS(2694), - [sym_char_literal] = ACTIONS(2694), - [anon_sym_true] = ACTIONS(2696), - [anon_sym_false] = ACTIONS(2696), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2696), - [sym_super] = ACTIONS(2696), - [sym_crate] = ACTIONS(2696), - [sym_metavariable] = ACTIONS(2694), - [sym_raw_string_literal] = ACTIONS(2694), - [sym_float_literal] = ACTIONS(2694), + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2729), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_macro_rules_BANG] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_u8] = ACTIONS(2729), + [anon_sym_i8] = ACTIONS(2729), + [anon_sym_u16] = ACTIONS(2729), + [anon_sym_i16] = ACTIONS(2729), + [anon_sym_u32] = ACTIONS(2729), + [anon_sym_i32] = ACTIONS(2729), + [anon_sym_u64] = ACTIONS(2729), + [anon_sym_i64] = ACTIONS(2729), + [anon_sym_u128] = ACTIONS(2729), + [anon_sym_i128] = ACTIONS(2729), + [anon_sym_isize] = ACTIONS(2729), + [anon_sym_usize] = ACTIONS(2729), + [anon_sym_f32] = ACTIONS(2729), + [anon_sym_f64] = ACTIONS(2729), + [anon_sym_bool] = ACTIONS(2729), + [anon_sym_str] = ACTIONS(2729), + [anon_sym_char] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_COLON_COLON] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_SQUOTE] = ACTIONS(2729), + [anon_sym_async] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_const] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_fn] = ACTIONS(2729), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_impl] = ACTIONS(2729), + [anon_sym_let] = ACTIONS(2729), + [anon_sym_loop] = ACTIONS(2729), + [anon_sym_match] = ACTIONS(2729), + [anon_sym_mod] = ACTIONS(2729), + [anon_sym_pub] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_struct] = ACTIONS(2729), + [anon_sym_trait] = ACTIONS(2729), + [anon_sym_type] = ACTIONS(2729), + [anon_sym_union] = ACTIONS(2729), + [anon_sym_unsafe] = ACTIONS(2729), + [anon_sym_use] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym_DOT_DOT] = ACTIONS(2727), + [anon_sym_yield] = ACTIONS(2729), + [anon_sym_move] = ACTIONS(2729), + [anon_sym_try] = ACTIONS(2729), + [sym_integer_literal] = ACTIONS(2727), + [aux_sym_string_literal_token1] = ACTIONS(2727), + [sym_char_literal] = ACTIONS(2727), + [anon_sym_true] = ACTIONS(2729), + [anon_sym_false] = ACTIONS(2729), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2729), + [sym_super] = ACTIONS(2729), + [sym_crate] = ACTIONS(2729), + [sym_metavariable] = ACTIONS(2727), + [sym_raw_string_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), }, [728] = { [sym_line_comment] = STATE(728), [sym_block_comment] = STATE(728), - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2698), - [anon_sym_macro_rules_BANG] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_RBRACE] = ACTIONS(2698), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_u8] = ACTIONS(2700), - [anon_sym_i8] = ACTIONS(2700), - [anon_sym_u16] = ACTIONS(2700), - [anon_sym_i16] = ACTIONS(2700), - [anon_sym_u32] = ACTIONS(2700), - [anon_sym_i32] = ACTIONS(2700), - [anon_sym_u64] = ACTIONS(2700), - [anon_sym_i64] = ACTIONS(2700), - [anon_sym_u128] = ACTIONS(2700), - [anon_sym_i128] = ACTIONS(2700), - [anon_sym_isize] = ACTIONS(2700), - [anon_sym_usize] = ACTIONS(2700), - [anon_sym_f32] = ACTIONS(2700), - [anon_sym_f64] = ACTIONS(2700), - [anon_sym_bool] = ACTIONS(2700), - [anon_sym_str] = ACTIONS(2700), - [anon_sym_char] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_COLON_COLON] = ACTIONS(2698), - [anon_sym_BANG] = ACTIONS(2698), - [anon_sym_AMP] = ACTIONS(2698), - [anon_sym_POUND] = ACTIONS(2698), - [anon_sym_LT] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2698), - [anon_sym_SQUOTE] = ACTIONS(2700), - [anon_sym_async] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_default] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_impl] = ACTIONS(2700), - [anon_sym_let] = ACTIONS(2700), - [anon_sym_loop] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_mod] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_static] = ACTIONS(2700), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_trait] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_use] = ACTIONS(2700), - [anon_sym_while] = ACTIONS(2700), - [anon_sym_extern] = ACTIONS(2700), - [anon_sym_DOT_DOT] = ACTIONS(2698), - [anon_sym_yield] = ACTIONS(2700), - [anon_sym_move] = ACTIONS(2700), - [anon_sym_try] = ACTIONS(2700), - [sym_integer_literal] = ACTIONS(2698), - [aux_sym_string_literal_token1] = ACTIONS(2698), - [sym_char_literal] = ACTIONS(2698), - [anon_sym_true] = ACTIONS(2700), - [anon_sym_false] = ACTIONS(2700), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2700), - [sym_super] = ACTIONS(2700), - [sym_crate] = ACTIONS(2700), - [sym_metavariable] = ACTIONS(2698), - [sym_raw_string_literal] = ACTIONS(2698), - [sym_float_literal] = ACTIONS(2698), + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2733), + [anon_sym_SEMI] = ACTIONS(2731), + [anon_sym_macro_rules_BANG] = ACTIONS(2731), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_RBRACE] = ACTIONS(2731), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_u8] = ACTIONS(2733), + [anon_sym_i8] = ACTIONS(2733), + [anon_sym_u16] = ACTIONS(2733), + [anon_sym_i16] = ACTIONS(2733), + [anon_sym_u32] = ACTIONS(2733), + [anon_sym_i32] = ACTIONS(2733), + [anon_sym_u64] = ACTIONS(2733), + [anon_sym_i64] = ACTIONS(2733), + [anon_sym_u128] = ACTIONS(2733), + [anon_sym_i128] = ACTIONS(2733), + [anon_sym_isize] = ACTIONS(2733), + [anon_sym_usize] = ACTIONS(2733), + [anon_sym_f32] = ACTIONS(2733), + [anon_sym_f64] = ACTIONS(2733), + [anon_sym_bool] = ACTIONS(2733), + [anon_sym_str] = ACTIONS(2733), + [anon_sym_char] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2731), + [anon_sym_COLON_COLON] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_POUND] = ACTIONS(2731), + [anon_sym_LT] = ACTIONS(2731), + [anon_sym_PIPE] = ACTIONS(2731), + [anon_sym_SQUOTE] = ACTIONS(2733), + [anon_sym_async] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_const] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_fn] = ACTIONS(2733), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_impl] = ACTIONS(2733), + [anon_sym_let] = ACTIONS(2733), + [anon_sym_loop] = ACTIONS(2733), + [anon_sym_match] = ACTIONS(2733), + [anon_sym_mod] = ACTIONS(2733), + [anon_sym_pub] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_struct] = ACTIONS(2733), + [anon_sym_trait] = ACTIONS(2733), + [anon_sym_type] = ACTIONS(2733), + [anon_sym_union] = ACTIONS(2733), + [anon_sym_unsafe] = ACTIONS(2733), + [anon_sym_use] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym_DOT_DOT] = ACTIONS(2731), + [anon_sym_yield] = ACTIONS(2733), + [anon_sym_move] = ACTIONS(2733), + [anon_sym_try] = ACTIONS(2733), + [sym_integer_literal] = ACTIONS(2731), + [aux_sym_string_literal_token1] = ACTIONS(2731), + [sym_char_literal] = ACTIONS(2731), + [anon_sym_true] = ACTIONS(2733), + [anon_sym_false] = ACTIONS(2733), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2733), + [sym_super] = ACTIONS(2733), + [sym_crate] = ACTIONS(2733), + [sym_metavariable] = ACTIONS(2731), + [sym_raw_string_literal] = ACTIONS(2731), + [sym_float_literal] = ACTIONS(2731), }, [729] = { [sym_line_comment] = STATE(729), [sym_block_comment] = STATE(729), - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_SEMI] = ACTIONS(2702), - [anon_sym_macro_rules_BANG] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_RBRACE] = ACTIONS(2702), - [anon_sym_STAR] = ACTIONS(2702), - [anon_sym_u8] = ACTIONS(2704), - [anon_sym_i8] = ACTIONS(2704), - [anon_sym_u16] = ACTIONS(2704), - [anon_sym_i16] = ACTIONS(2704), - [anon_sym_u32] = ACTIONS(2704), - [anon_sym_i32] = ACTIONS(2704), - [anon_sym_u64] = ACTIONS(2704), - [anon_sym_i64] = ACTIONS(2704), - [anon_sym_u128] = ACTIONS(2704), - [anon_sym_i128] = ACTIONS(2704), - [anon_sym_isize] = ACTIONS(2704), - [anon_sym_usize] = ACTIONS(2704), - [anon_sym_f32] = ACTIONS(2704), - [anon_sym_f64] = ACTIONS(2704), - [anon_sym_bool] = ACTIONS(2704), - [anon_sym_str] = ACTIONS(2704), - [anon_sym_char] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2702), - [anon_sym_COLON_COLON] = ACTIONS(2702), - [anon_sym_BANG] = ACTIONS(2702), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_POUND] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_SQUOTE] = ACTIONS(2704), - [anon_sym_async] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_default] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_impl] = ACTIONS(2704), - [anon_sym_let] = ACTIONS(2704), - [anon_sym_loop] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_mod] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_static] = ACTIONS(2704), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_trait] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_use] = ACTIONS(2704), - [anon_sym_while] = ACTIONS(2704), - [anon_sym_extern] = ACTIONS(2704), - [anon_sym_DOT_DOT] = ACTIONS(2702), - [anon_sym_yield] = ACTIONS(2704), - [anon_sym_move] = ACTIONS(2704), - [anon_sym_try] = ACTIONS(2704), - [sym_integer_literal] = ACTIONS(2702), - [aux_sym_string_literal_token1] = ACTIONS(2702), - [sym_char_literal] = ACTIONS(2702), - [anon_sym_true] = ACTIONS(2704), - [anon_sym_false] = ACTIONS(2704), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2704), - [sym_super] = ACTIONS(2704), - [sym_crate] = ACTIONS(2704), - [sym_metavariable] = ACTIONS(2702), - [sym_raw_string_literal] = ACTIONS(2702), - [sym_float_literal] = ACTIONS(2702), + [ts_builtin_sym_end] = ACTIONS(2735), + [sym_identifier] = ACTIONS(2737), + [anon_sym_SEMI] = ACTIONS(2735), + [anon_sym_macro_rules_BANG] = ACTIONS(2735), + [anon_sym_LPAREN] = ACTIONS(2735), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_RBRACE] = ACTIONS(2735), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_u8] = ACTIONS(2737), + [anon_sym_i8] = ACTIONS(2737), + [anon_sym_u16] = ACTIONS(2737), + [anon_sym_i16] = ACTIONS(2737), + [anon_sym_u32] = ACTIONS(2737), + [anon_sym_i32] = ACTIONS(2737), + [anon_sym_u64] = ACTIONS(2737), + [anon_sym_i64] = ACTIONS(2737), + [anon_sym_u128] = ACTIONS(2737), + [anon_sym_i128] = ACTIONS(2737), + [anon_sym_isize] = ACTIONS(2737), + [anon_sym_usize] = ACTIONS(2737), + [anon_sym_f32] = ACTIONS(2737), + [anon_sym_f64] = ACTIONS(2737), + [anon_sym_bool] = ACTIONS(2737), + [anon_sym_str] = ACTIONS(2737), + [anon_sym_char] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2735), + [anon_sym_COLON_COLON] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2735), + [anon_sym_POUND] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2735), + [anon_sym_PIPE] = ACTIONS(2735), + [anon_sym_SQUOTE] = ACTIONS(2737), + [anon_sym_async] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_const] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_fn] = ACTIONS(2737), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_impl] = ACTIONS(2737), + [anon_sym_let] = ACTIONS(2737), + [anon_sym_loop] = ACTIONS(2737), + [anon_sym_match] = ACTIONS(2737), + [anon_sym_mod] = ACTIONS(2737), + [anon_sym_pub] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_struct] = ACTIONS(2737), + [anon_sym_trait] = ACTIONS(2737), + [anon_sym_type] = ACTIONS(2737), + [anon_sym_union] = ACTIONS(2737), + [anon_sym_unsafe] = ACTIONS(2737), + [anon_sym_use] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym_DOT_DOT] = ACTIONS(2735), + [anon_sym_yield] = ACTIONS(2737), + [anon_sym_move] = ACTIONS(2737), + [anon_sym_try] = ACTIONS(2737), + [sym_integer_literal] = ACTIONS(2735), + [aux_sym_string_literal_token1] = ACTIONS(2735), + [sym_char_literal] = ACTIONS(2735), + [anon_sym_true] = ACTIONS(2737), + [anon_sym_false] = ACTIONS(2737), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2737), + [sym_super] = ACTIONS(2737), + [sym_crate] = ACTIONS(2737), + [sym_metavariable] = ACTIONS(2735), + [sym_raw_string_literal] = ACTIONS(2735), + [sym_float_literal] = ACTIONS(2735), }, [730] = { [sym_line_comment] = STATE(730), [sym_block_comment] = STATE(730), - [ts_builtin_sym_end] = ACTIONS(2706), - [sym_identifier] = ACTIONS(2708), - [anon_sym_SEMI] = ACTIONS(2706), - [anon_sym_macro_rules_BANG] = ACTIONS(2706), - [anon_sym_LPAREN] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2706), - [anon_sym_LBRACE] = ACTIONS(2706), - [anon_sym_RBRACE] = ACTIONS(2706), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_u8] = ACTIONS(2708), - [anon_sym_i8] = ACTIONS(2708), - [anon_sym_u16] = ACTIONS(2708), - [anon_sym_i16] = ACTIONS(2708), - [anon_sym_u32] = ACTIONS(2708), - [anon_sym_i32] = ACTIONS(2708), - [anon_sym_u64] = ACTIONS(2708), - [anon_sym_i64] = ACTIONS(2708), - [anon_sym_u128] = ACTIONS(2708), - [anon_sym_i128] = ACTIONS(2708), - [anon_sym_isize] = ACTIONS(2708), - [anon_sym_usize] = ACTIONS(2708), - [anon_sym_f32] = ACTIONS(2708), - [anon_sym_f64] = ACTIONS(2708), - [anon_sym_bool] = ACTIONS(2708), - [anon_sym_str] = ACTIONS(2708), - [anon_sym_char] = ACTIONS(2708), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_COLON_COLON] = ACTIONS(2706), - [anon_sym_BANG] = ACTIONS(2706), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_POUND] = ACTIONS(2706), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_SQUOTE] = ACTIONS(2708), - [anon_sym_async] = ACTIONS(2708), - [anon_sym_break] = ACTIONS(2708), - [anon_sym_const] = ACTIONS(2708), - [anon_sym_continue] = ACTIONS(2708), - [anon_sym_default] = ACTIONS(2708), - [anon_sym_enum] = ACTIONS(2708), - [anon_sym_fn] = ACTIONS(2708), - [anon_sym_for] = ACTIONS(2708), - [anon_sym_if] = ACTIONS(2708), - [anon_sym_impl] = ACTIONS(2708), - [anon_sym_let] = ACTIONS(2708), - [anon_sym_loop] = ACTIONS(2708), - [anon_sym_match] = ACTIONS(2708), - [anon_sym_mod] = ACTIONS(2708), - [anon_sym_pub] = ACTIONS(2708), - [anon_sym_return] = ACTIONS(2708), - [anon_sym_static] = ACTIONS(2708), - [anon_sym_struct] = ACTIONS(2708), - [anon_sym_trait] = ACTIONS(2708), - [anon_sym_type] = ACTIONS(2708), - [anon_sym_union] = ACTIONS(2708), - [anon_sym_unsafe] = ACTIONS(2708), - [anon_sym_use] = ACTIONS(2708), - [anon_sym_while] = ACTIONS(2708), - [anon_sym_extern] = ACTIONS(2708), - [anon_sym_DOT_DOT] = ACTIONS(2706), - [anon_sym_yield] = ACTIONS(2708), - [anon_sym_move] = ACTIONS(2708), - [anon_sym_try] = ACTIONS(2708), - [sym_integer_literal] = ACTIONS(2706), - [aux_sym_string_literal_token1] = ACTIONS(2706), - [sym_char_literal] = ACTIONS(2706), - [anon_sym_true] = ACTIONS(2708), - [anon_sym_false] = ACTIONS(2708), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2708), - [sym_super] = ACTIONS(2708), - [sym_crate] = ACTIONS(2708), - [sym_metavariable] = ACTIONS(2706), - [sym_raw_string_literal] = ACTIONS(2706), - [sym_float_literal] = ACTIONS(2706), + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2741), + [anon_sym_SEMI] = ACTIONS(2739), + [anon_sym_macro_rules_BANG] = ACTIONS(2739), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_RBRACE] = ACTIONS(2739), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_u8] = ACTIONS(2741), + [anon_sym_i8] = ACTIONS(2741), + [anon_sym_u16] = ACTIONS(2741), + [anon_sym_i16] = ACTIONS(2741), + [anon_sym_u32] = ACTIONS(2741), + [anon_sym_i32] = ACTIONS(2741), + [anon_sym_u64] = ACTIONS(2741), + [anon_sym_i64] = ACTIONS(2741), + [anon_sym_u128] = ACTIONS(2741), + [anon_sym_i128] = ACTIONS(2741), + [anon_sym_isize] = ACTIONS(2741), + [anon_sym_usize] = ACTIONS(2741), + [anon_sym_f32] = ACTIONS(2741), + [anon_sym_f64] = ACTIONS(2741), + [anon_sym_bool] = ACTIONS(2741), + [anon_sym_str] = ACTIONS(2741), + [anon_sym_char] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2739), + [anon_sym_POUND] = ACTIONS(2739), + [anon_sym_LT] = ACTIONS(2739), + [anon_sym_PIPE] = ACTIONS(2739), + [anon_sym_SQUOTE] = ACTIONS(2741), + [anon_sym_async] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_const] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_fn] = ACTIONS(2741), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_impl] = ACTIONS(2741), + [anon_sym_let] = ACTIONS(2741), + [anon_sym_loop] = ACTIONS(2741), + [anon_sym_match] = ACTIONS(2741), + [anon_sym_mod] = ACTIONS(2741), + [anon_sym_pub] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_struct] = ACTIONS(2741), + [anon_sym_trait] = ACTIONS(2741), + [anon_sym_type] = ACTIONS(2741), + [anon_sym_union] = ACTIONS(2741), + [anon_sym_unsafe] = ACTIONS(2741), + [anon_sym_use] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym_DOT_DOT] = ACTIONS(2739), + [anon_sym_yield] = ACTIONS(2741), + [anon_sym_move] = ACTIONS(2741), + [anon_sym_try] = ACTIONS(2741), + [sym_integer_literal] = ACTIONS(2739), + [aux_sym_string_literal_token1] = ACTIONS(2739), + [sym_char_literal] = ACTIONS(2739), + [anon_sym_true] = ACTIONS(2741), + [anon_sym_false] = ACTIONS(2741), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2741), + [sym_super] = ACTIONS(2741), + [sym_crate] = ACTIONS(2741), + [sym_metavariable] = ACTIONS(2739), + [sym_raw_string_literal] = ACTIONS(2739), + [sym_float_literal] = ACTIONS(2739), }, [731] = { [sym_line_comment] = STATE(731), [sym_block_comment] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(2710), - [sym_identifier] = ACTIONS(2712), - [anon_sym_SEMI] = ACTIONS(2710), - [anon_sym_macro_rules_BANG] = ACTIONS(2710), - [anon_sym_LPAREN] = ACTIONS(2710), - [anon_sym_LBRACK] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2710), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_STAR] = ACTIONS(2710), - [anon_sym_u8] = ACTIONS(2712), - [anon_sym_i8] = ACTIONS(2712), - [anon_sym_u16] = ACTIONS(2712), - [anon_sym_i16] = ACTIONS(2712), - [anon_sym_u32] = ACTIONS(2712), - [anon_sym_i32] = ACTIONS(2712), - [anon_sym_u64] = ACTIONS(2712), - [anon_sym_i64] = ACTIONS(2712), - [anon_sym_u128] = ACTIONS(2712), - [anon_sym_i128] = ACTIONS(2712), - [anon_sym_isize] = ACTIONS(2712), - [anon_sym_usize] = ACTIONS(2712), - [anon_sym_f32] = ACTIONS(2712), - [anon_sym_f64] = ACTIONS(2712), - [anon_sym_bool] = ACTIONS(2712), - [anon_sym_str] = ACTIONS(2712), - [anon_sym_char] = ACTIONS(2712), - [anon_sym_DASH] = ACTIONS(2710), - [anon_sym_COLON_COLON] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(2710), - [anon_sym_AMP] = ACTIONS(2710), - [anon_sym_POUND] = ACTIONS(2710), - [anon_sym_LT] = ACTIONS(2710), - [anon_sym_PIPE] = ACTIONS(2710), - [anon_sym_SQUOTE] = ACTIONS(2712), - [anon_sym_async] = ACTIONS(2712), - [anon_sym_break] = ACTIONS(2712), - [anon_sym_const] = ACTIONS(2712), - [anon_sym_continue] = ACTIONS(2712), - [anon_sym_default] = ACTIONS(2712), - [anon_sym_enum] = ACTIONS(2712), - [anon_sym_fn] = ACTIONS(2712), - [anon_sym_for] = ACTIONS(2712), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_impl] = ACTIONS(2712), - [anon_sym_let] = ACTIONS(2712), - [anon_sym_loop] = ACTIONS(2712), - [anon_sym_match] = ACTIONS(2712), - [anon_sym_mod] = ACTIONS(2712), - [anon_sym_pub] = ACTIONS(2712), - [anon_sym_return] = ACTIONS(2712), - [anon_sym_static] = ACTIONS(2712), - [anon_sym_struct] = ACTIONS(2712), - [anon_sym_trait] = ACTIONS(2712), - [anon_sym_type] = ACTIONS(2712), - [anon_sym_union] = ACTIONS(2712), - [anon_sym_unsafe] = ACTIONS(2712), - [anon_sym_use] = ACTIONS(2712), - [anon_sym_while] = ACTIONS(2712), - [anon_sym_extern] = ACTIONS(2712), - [anon_sym_DOT_DOT] = ACTIONS(2710), - [anon_sym_yield] = ACTIONS(2712), - [anon_sym_move] = ACTIONS(2712), - [anon_sym_try] = ACTIONS(2712), - [sym_integer_literal] = ACTIONS(2710), - [aux_sym_string_literal_token1] = ACTIONS(2710), - [sym_char_literal] = ACTIONS(2710), - [anon_sym_true] = ACTIONS(2712), - [anon_sym_false] = ACTIONS(2712), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2712), - [sym_super] = ACTIONS(2712), - [sym_crate] = ACTIONS(2712), - [sym_metavariable] = ACTIONS(2710), - [sym_raw_string_literal] = ACTIONS(2710), - [sym_float_literal] = ACTIONS(2710), + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2745), + [anon_sym_SEMI] = ACTIONS(2743), + [anon_sym_macro_rules_BANG] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_RBRACE] = ACTIONS(2743), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_u8] = ACTIONS(2745), + [anon_sym_i8] = ACTIONS(2745), + [anon_sym_u16] = ACTIONS(2745), + [anon_sym_i16] = ACTIONS(2745), + [anon_sym_u32] = ACTIONS(2745), + [anon_sym_i32] = ACTIONS(2745), + [anon_sym_u64] = ACTIONS(2745), + [anon_sym_i64] = ACTIONS(2745), + [anon_sym_u128] = ACTIONS(2745), + [anon_sym_i128] = ACTIONS(2745), + [anon_sym_isize] = ACTIONS(2745), + [anon_sym_usize] = ACTIONS(2745), + [anon_sym_f32] = ACTIONS(2745), + [anon_sym_f64] = ACTIONS(2745), + [anon_sym_bool] = ACTIONS(2745), + [anon_sym_str] = ACTIONS(2745), + [anon_sym_char] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2743), + [anon_sym_COLON_COLON] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2743), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2743), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_SQUOTE] = ACTIONS(2745), + [anon_sym_async] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_const] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_impl] = ACTIONS(2745), + [anon_sym_let] = ACTIONS(2745), + [anon_sym_loop] = ACTIONS(2745), + [anon_sym_match] = ACTIONS(2745), + [anon_sym_mod] = ACTIONS(2745), + [anon_sym_pub] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_struct] = ACTIONS(2745), + [anon_sym_trait] = ACTIONS(2745), + [anon_sym_type] = ACTIONS(2745), + [anon_sym_union] = ACTIONS(2745), + [anon_sym_unsafe] = ACTIONS(2745), + [anon_sym_use] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym_DOT_DOT] = ACTIONS(2743), + [anon_sym_yield] = ACTIONS(2745), + [anon_sym_move] = ACTIONS(2745), + [anon_sym_try] = ACTIONS(2745), + [sym_integer_literal] = ACTIONS(2743), + [aux_sym_string_literal_token1] = ACTIONS(2743), + [sym_char_literal] = ACTIONS(2743), + [anon_sym_true] = ACTIONS(2745), + [anon_sym_false] = ACTIONS(2745), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2745), + [sym_super] = ACTIONS(2745), + [sym_crate] = ACTIONS(2745), + [sym_metavariable] = ACTIONS(2743), + [sym_raw_string_literal] = ACTIONS(2743), + [sym_float_literal] = ACTIONS(2743), }, [732] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), - [ts_builtin_sym_end] = ACTIONS(2714), - [sym_identifier] = ACTIONS(2716), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_macro_rules_BANG] = ACTIONS(2714), - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2714), - [anon_sym_u8] = ACTIONS(2716), - [anon_sym_i8] = ACTIONS(2716), - [anon_sym_u16] = ACTIONS(2716), - [anon_sym_i16] = ACTIONS(2716), - [anon_sym_u32] = ACTIONS(2716), - [anon_sym_i32] = ACTIONS(2716), - [anon_sym_u64] = ACTIONS(2716), - [anon_sym_i64] = ACTIONS(2716), - [anon_sym_u128] = ACTIONS(2716), - [anon_sym_i128] = ACTIONS(2716), - [anon_sym_isize] = ACTIONS(2716), - [anon_sym_usize] = ACTIONS(2716), - [anon_sym_f32] = ACTIONS(2716), - [anon_sym_f64] = ACTIONS(2716), - [anon_sym_bool] = ACTIONS(2716), - [anon_sym_str] = ACTIONS(2716), - [anon_sym_char] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2714), - [anon_sym_COLON_COLON] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2714), - [anon_sym_POUND] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2714), - [anon_sym_SQUOTE] = ACTIONS(2716), - [anon_sym_async] = ACTIONS(2716), - [anon_sym_break] = ACTIONS(2716), - [anon_sym_const] = ACTIONS(2716), - [anon_sym_continue] = ACTIONS(2716), - [anon_sym_default] = ACTIONS(2716), - [anon_sym_enum] = ACTIONS(2716), - [anon_sym_fn] = ACTIONS(2716), - [anon_sym_for] = ACTIONS(2716), - [anon_sym_if] = ACTIONS(2716), - [anon_sym_impl] = ACTIONS(2716), - [anon_sym_let] = ACTIONS(2716), - [anon_sym_loop] = ACTIONS(2716), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_mod] = ACTIONS(2716), - [anon_sym_pub] = ACTIONS(2716), - [anon_sym_return] = ACTIONS(2716), - [anon_sym_static] = ACTIONS(2716), - [anon_sym_struct] = ACTIONS(2716), - [anon_sym_trait] = ACTIONS(2716), - [anon_sym_type] = ACTIONS(2716), - [anon_sym_union] = ACTIONS(2716), - [anon_sym_unsafe] = ACTIONS(2716), - [anon_sym_use] = ACTIONS(2716), - [anon_sym_while] = ACTIONS(2716), - [anon_sym_extern] = ACTIONS(2716), - [anon_sym_DOT_DOT] = ACTIONS(2714), - [anon_sym_yield] = ACTIONS(2716), - [anon_sym_move] = ACTIONS(2716), - [anon_sym_try] = ACTIONS(2716), - [sym_integer_literal] = ACTIONS(2714), - [aux_sym_string_literal_token1] = ACTIONS(2714), - [sym_char_literal] = ACTIONS(2714), - [anon_sym_true] = ACTIONS(2716), - [anon_sym_false] = ACTIONS(2716), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2716), - [sym_super] = ACTIONS(2716), - [sym_crate] = ACTIONS(2716), - [sym_metavariable] = ACTIONS(2714), - [sym_raw_string_literal] = ACTIONS(2714), - [sym_float_literal] = ACTIONS(2714), + [ts_builtin_sym_end] = ACTIONS(2747), + [sym_identifier] = ACTIONS(2749), + [anon_sym_SEMI] = ACTIONS(2747), + [anon_sym_macro_rules_BANG] = ACTIONS(2747), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_RBRACE] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_u8] = ACTIONS(2749), + [anon_sym_i8] = ACTIONS(2749), + [anon_sym_u16] = ACTIONS(2749), + [anon_sym_i16] = ACTIONS(2749), + [anon_sym_u32] = ACTIONS(2749), + [anon_sym_i32] = ACTIONS(2749), + [anon_sym_u64] = ACTIONS(2749), + [anon_sym_i64] = ACTIONS(2749), + [anon_sym_u128] = ACTIONS(2749), + [anon_sym_i128] = ACTIONS(2749), + [anon_sym_isize] = ACTIONS(2749), + [anon_sym_usize] = ACTIONS(2749), + [anon_sym_f32] = ACTIONS(2749), + [anon_sym_f64] = ACTIONS(2749), + [anon_sym_bool] = ACTIONS(2749), + [anon_sym_str] = ACTIONS(2749), + [anon_sym_char] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_COLON_COLON] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2747), + [anon_sym_POUND] = ACTIONS(2747), + [anon_sym_LT] = ACTIONS(2747), + [anon_sym_PIPE] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_async] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_const] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_fn] = ACTIONS(2749), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_impl] = ACTIONS(2749), + [anon_sym_let] = ACTIONS(2749), + [anon_sym_loop] = ACTIONS(2749), + [anon_sym_match] = ACTIONS(2749), + [anon_sym_mod] = ACTIONS(2749), + [anon_sym_pub] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2749), + [anon_sym_trait] = ACTIONS(2749), + [anon_sym_type] = ACTIONS(2749), + [anon_sym_union] = ACTIONS(2749), + [anon_sym_unsafe] = ACTIONS(2749), + [anon_sym_use] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym_DOT_DOT] = ACTIONS(2747), + [anon_sym_yield] = ACTIONS(2749), + [anon_sym_move] = ACTIONS(2749), + [anon_sym_try] = ACTIONS(2749), + [sym_integer_literal] = ACTIONS(2747), + [aux_sym_string_literal_token1] = ACTIONS(2747), + [sym_char_literal] = ACTIONS(2747), + [anon_sym_true] = ACTIONS(2749), + [anon_sym_false] = ACTIONS(2749), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2749), + [sym_super] = ACTIONS(2749), + [sym_crate] = ACTIONS(2749), + [sym_metavariable] = ACTIONS(2747), + [sym_raw_string_literal] = ACTIONS(2747), + [sym_float_literal] = ACTIONS(2747), }, [733] = { [sym_line_comment] = STATE(733), [sym_block_comment] = STATE(733), - [ts_builtin_sym_end] = ACTIONS(2718), - [sym_identifier] = ACTIONS(2720), - [anon_sym_SEMI] = ACTIONS(2718), - [anon_sym_macro_rules_BANG] = ACTIONS(2718), - [anon_sym_LPAREN] = ACTIONS(2718), - [anon_sym_LBRACK] = ACTIONS(2718), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_RBRACE] = ACTIONS(2718), - [anon_sym_STAR] = ACTIONS(2718), - [anon_sym_u8] = ACTIONS(2720), - [anon_sym_i8] = ACTIONS(2720), - [anon_sym_u16] = ACTIONS(2720), - [anon_sym_i16] = ACTIONS(2720), - [anon_sym_u32] = ACTIONS(2720), - [anon_sym_i32] = ACTIONS(2720), - [anon_sym_u64] = ACTIONS(2720), - [anon_sym_i64] = ACTIONS(2720), - [anon_sym_u128] = ACTIONS(2720), - [anon_sym_i128] = ACTIONS(2720), - [anon_sym_isize] = ACTIONS(2720), - [anon_sym_usize] = ACTIONS(2720), - [anon_sym_f32] = ACTIONS(2720), - [anon_sym_f64] = ACTIONS(2720), - [anon_sym_bool] = ACTIONS(2720), - [anon_sym_str] = ACTIONS(2720), - [anon_sym_char] = ACTIONS(2720), - [anon_sym_DASH] = ACTIONS(2718), - [anon_sym_COLON_COLON] = ACTIONS(2718), - [anon_sym_BANG] = ACTIONS(2718), - [anon_sym_AMP] = ACTIONS(2718), - [anon_sym_POUND] = ACTIONS(2718), - [anon_sym_LT] = ACTIONS(2718), - [anon_sym_PIPE] = ACTIONS(2718), - [anon_sym_SQUOTE] = ACTIONS(2720), - [anon_sym_async] = ACTIONS(2720), - [anon_sym_break] = ACTIONS(2720), - [anon_sym_const] = ACTIONS(2720), - [anon_sym_continue] = ACTIONS(2720), - [anon_sym_default] = ACTIONS(2720), - [anon_sym_enum] = ACTIONS(2720), - [anon_sym_fn] = ACTIONS(2720), - [anon_sym_for] = ACTIONS(2720), - [anon_sym_if] = ACTIONS(2720), - [anon_sym_impl] = ACTIONS(2720), - [anon_sym_let] = ACTIONS(2720), - [anon_sym_loop] = ACTIONS(2720), - [anon_sym_match] = ACTIONS(2720), - [anon_sym_mod] = ACTIONS(2720), - [anon_sym_pub] = ACTIONS(2720), - [anon_sym_return] = ACTIONS(2720), - [anon_sym_static] = ACTIONS(2720), - [anon_sym_struct] = ACTIONS(2720), - [anon_sym_trait] = ACTIONS(2720), - [anon_sym_type] = ACTIONS(2720), - [anon_sym_union] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2720), - [anon_sym_use] = ACTIONS(2720), - [anon_sym_while] = ACTIONS(2720), - [anon_sym_extern] = ACTIONS(2720), - [anon_sym_DOT_DOT] = ACTIONS(2718), - [anon_sym_yield] = ACTIONS(2720), - [anon_sym_move] = ACTIONS(2720), - [anon_sym_try] = ACTIONS(2720), - [sym_integer_literal] = ACTIONS(2718), - [aux_sym_string_literal_token1] = ACTIONS(2718), - [sym_char_literal] = ACTIONS(2718), - [anon_sym_true] = ACTIONS(2720), - [anon_sym_false] = ACTIONS(2720), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2720), - [sym_super] = ACTIONS(2720), - [sym_crate] = ACTIONS(2720), - [sym_metavariable] = ACTIONS(2718), - [sym_raw_string_literal] = ACTIONS(2718), - [sym_float_literal] = ACTIONS(2718), + [ts_builtin_sym_end] = ACTIONS(2751), + [sym_identifier] = ACTIONS(2753), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_macro_rules_BANG] = ACTIONS(2751), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_RBRACE] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_u8] = ACTIONS(2753), + [anon_sym_i8] = ACTIONS(2753), + [anon_sym_u16] = ACTIONS(2753), + [anon_sym_i16] = ACTIONS(2753), + [anon_sym_u32] = ACTIONS(2753), + [anon_sym_i32] = ACTIONS(2753), + [anon_sym_u64] = ACTIONS(2753), + [anon_sym_i64] = ACTIONS(2753), + [anon_sym_u128] = ACTIONS(2753), + [anon_sym_i128] = ACTIONS(2753), + [anon_sym_isize] = ACTIONS(2753), + [anon_sym_usize] = ACTIONS(2753), + [anon_sym_f32] = ACTIONS(2753), + [anon_sym_f64] = ACTIONS(2753), + [anon_sym_bool] = ACTIONS(2753), + [anon_sym_str] = ACTIONS(2753), + [anon_sym_char] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2751), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2751), + [anon_sym_POUND] = ACTIONS(2751), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2751), + [anon_sym_SQUOTE] = ACTIONS(2753), + [anon_sym_async] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_const] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_fn] = ACTIONS(2753), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_impl] = ACTIONS(2753), + [anon_sym_let] = ACTIONS(2753), + [anon_sym_loop] = ACTIONS(2753), + [anon_sym_match] = ACTIONS(2753), + [anon_sym_mod] = ACTIONS(2753), + [anon_sym_pub] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_struct] = ACTIONS(2753), + [anon_sym_trait] = ACTIONS(2753), + [anon_sym_type] = ACTIONS(2753), + [anon_sym_union] = ACTIONS(2753), + [anon_sym_unsafe] = ACTIONS(2753), + [anon_sym_use] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym_DOT_DOT] = ACTIONS(2751), + [anon_sym_yield] = ACTIONS(2753), + [anon_sym_move] = ACTIONS(2753), + [anon_sym_try] = ACTIONS(2753), + [sym_integer_literal] = ACTIONS(2751), + [aux_sym_string_literal_token1] = ACTIONS(2751), + [sym_char_literal] = ACTIONS(2751), + [anon_sym_true] = ACTIONS(2753), + [anon_sym_false] = ACTIONS(2753), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2753), + [sym_super] = ACTIONS(2753), + [sym_crate] = ACTIONS(2753), + [sym_metavariable] = ACTIONS(2751), + [sym_raw_string_literal] = ACTIONS(2751), + [sym_float_literal] = ACTIONS(2751), }, [734] = { [sym_line_comment] = STATE(734), [sym_block_comment] = STATE(734), - [ts_builtin_sym_end] = ACTIONS(2722), - [sym_identifier] = ACTIONS(2724), - [anon_sym_SEMI] = ACTIONS(2722), - [anon_sym_macro_rules_BANG] = ACTIONS(2722), - [anon_sym_LPAREN] = ACTIONS(2722), - [anon_sym_LBRACK] = ACTIONS(2722), - [anon_sym_LBRACE] = ACTIONS(2722), - [anon_sym_RBRACE] = ACTIONS(2722), - [anon_sym_STAR] = ACTIONS(2722), - [anon_sym_u8] = ACTIONS(2724), - [anon_sym_i8] = ACTIONS(2724), - [anon_sym_u16] = ACTIONS(2724), - [anon_sym_i16] = ACTIONS(2724), - [anon_sym_u32] = ACTIONS(2724), - [anon_sym_i32] = ACTIONS(2724), - [anon_sym_u64] = ACTIONS(2724), - [anon_sym_i64] = ACTIONS(2724), - [anon_sym_u128] = ACTIONS(2724), - [anon_sym_i128] = ACTIONS(2724), - [anon_sym_isize] = ACTIONS(2724), - [anon_sym_usize] = ACTIONS(2724), - [anon_sym_f32] = ACTIONS(2724), - [anon_sym_f64] = ACTIONS(2724), - [anon_sym_bool] = ACTIONS(2724), - [anon_sym_str] = ACTIONS(2724), - [anon_sym_char] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2722), - [anon_sym_COLON_COLON] = ACTIONS(2722), - [anon_sym_BANG] = ACTIONS(2722), - [anon_sym_AMP] = ACTIONS(2722), - [anon_sym_POUND] = ACTIONS(2722), - [anon_sym_LT] = ACTIONS(2722), - [anon_sym_PIPE] = ACTIONS(2722), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_async] = ACTIONS(2724), - [anon_sym_break] = ACTIONS(2724), - [anon_sym_const] = ACTIONS(2724), - [anon_sym_continue] = ACTIONS(2724), - [anon_sym_default] = ACTIONS(2724), - [anon_sym_enum] = ACTIONS(2724), - [anon_sym_fn] = ACTIONS(2724), - [anon_sym_for] = ACTIONS(2724), - [anon_sym_if] = ACTIONS(2724), - [anon_sym_impl] = ACTIONS(2724), - [anon_sym_let] = ACTIONS(2724), - [anon_sym_loop] = ACTIONS(2724), - [anon_sym_match] = ACTIONS(2724), - [anon_sym_mod] = ACTIONS(2724), - [anon_sym_pub] = ACTIONS(2724), - [anon_sym_return] = ACTIONS(2724), - [anon_sym_static] = ACTIONS(2724), - [anon_sym_struct] = ACTIONS(2724), - [anon_sym_trait] = ACTIONS(2724), - [anon_sym_type] = ACTIONS(2724), - [anon_sym_union] = ACTIONS(2724), - [anon_sym_unsafe] = ACTIONS(2724), - [anon_sym_use] = ACTIONS(2724), - [anon_sym_while] = ACTIONS(2724), - [anon_sym_extern] = ACTIONS(2724), - [anon_sym_DOT_DOT] = ACTIONS(2722), - [anon_sym_yield] = ACTIONS(2724), - [anon_sym_move] = ACTIONS(2724), - [anon_sym_try] = ACTIONS(2724), - [sym_integer_literal] = ACTIONS(2722), - [aux_sym_string_literal_token1] = ACTIONS(2722), - [sym_char_literal] = ACTIONS(2722), - [anon_sym_true] = ACTIONS(2724), - [anon_sym_false] = ACTIONS(2724), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2724), - [sym_super] = ACTIONS(2724), - [sym_crate] = ACTIONS(2724), - [sym_metavariable] = ACTIONS(2722), - [sym_raw_string_literal] = ACTIONS(2722), - [sym_float_literal] = ACTIONS(2722), + [ts_builtin_sym_end] = ACTIONS(2755), + [sym_identifier] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(2755), + [anon_sym_macro_rules_BANG] = ACTIONS(2755), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_RBRACE] = ACTIONS(2755), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_u8] = ACTIONS(2757), + [anon_sym_i8] = ACTIONS(2757), + [anon_sym_u16] = ACTIONS(2757), + [anon_sym_i16] = ACTIONS(2757), + [anon_sym_u32] = ACTIONS(2757), + [anon_sym_i32] = ACTIONS(2757), + [anon_sym_u64] = ACTIONS(2757), + [anon_sym_i64] = ACTIONS(2757), + [anon_sym_u128] = ACTIONS(2757), + [anon_sym_i128] = ACTIONS(2757), + [anon_sym_isize] = ACTIONS(2757), + [anon_sym_usize] = ACTIONS(2757), + [anon_sym_f32] = ACTIONS(2757), + [anon_sym_f64] = ACTIONS(2757), + [anon_sym_bool] = ACTIONS(2757), + [anon_sym_str] = ACTIONS(2757), + [anon_sym_char] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_COLON_COLON] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2755), + [anon_sym_POUND] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2755), + [anon_sym_PIPE] = ACTIONS(2755), + [anon_sym_SQUOTE] = ACTIONS(2757), + [anon_sym_async] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_const] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_fn] = ACTIONS(2757), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_impl] = ACTIONS(2757), + [anon_sym_let] = ACTIONS(2757), + [anon_sym_loop] = ACTIONS(2757), + [anon_sym_match] = ACTIONS(2757), + [anon_sym_mod] = ACTIONS(2757), + [anon_sym_pub] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_struct] = ACTIONS(2757), + [anon_sym_trait] = ACTIONS(2757), + [anon_sym_type] = ACTIONS(2757), + [anon_sym_union] = ACTIONS(2757), + [anon_sym_unsafe] = ACTIONS(2757), + [anon_sym_use] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym_DOT_DOT] = ACTIONS(2755), + [anon_sym_yield] = ACTIONS(2757), + [anon_sym_move] = ACTIONS(2757), + [anon_sym_try] = ACTIONS(2757), + [sym_integer_literal] = ACTIONS(2755), + [aux_sym_string_literal_token1] = ACTIONS(2755), + [sym_char_literal] = ACTIONS(2755), + [anon_sym_true] = ACTIONS(2757), + [anon_sym_false] = ACTIONS(2757), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2757), + [sym_super] = ACTIONS(2757), + [sym_crate] = ACTIONS(2757), + [sym_metavariable] = ACTIONS(2755), + [sym_raw_string_literal] = ACTIONS(2755), + [sym_float_literal] = ACTIONS(2755), }, [735] = { [sym_line_comment] = STATE(735), [sym_block_comment] = STATE(735), - [ts_builtin_sym_end] = ACTIONS(2726), - [sym_identifier] = ACTIONS(2728), - [anon_sym_SEMI] = ACTIONS(2726), - [anon_sym_macro_rules_BANG] = ACTIONS(2726), - [anon_sym_LPAREN] = ACTIONS(2726), - [anon_sym_LBRACK] = ACTIONS(2726), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_RBRACE] = ACTIONS(2726), - [anon_sym_STAR] = ACTIONS(2726), - [anon_sym_u8] = ACTIONS(2728), - [anon_sym_i8] = ACTIONS(2728), - [anon_sym_u16] = ACTIONS(2728), - [anon_sym_i16] = ACTIONS(2728), - [anon_sym_u32] = ACTIONS(2728), - [anon_sym_i32] = ACTIONS(2728), - [anon_sym_u64] = ACTIONS(2728), - [anon_sym_i64] = ACTIONS(2728), - [anon_sym_u128] = ACTIONS(2728), - [anon_sym_i128] = ACTIONS(2728), - [anon_sym_isize] = ACTIONS(2728), - [anon_sym_usize] = ACTIONS(2728), - [anon_sym_f32] = ACTIONS(2728), - [anon_sym_f64] = ACTIONS(2728), - [anon_sym_bool] = ACTIONS(2728), - [anon_sym_str] = ACTIONS(2728), - [anon_sym_char] = ACTIONS(2728), - [anon_sym_DASH] = ACTIONS(2726), - [anon_sym_COLON_COLON] = ACTIONS(2726), - [anon_sym_BANG] = ACTIONS(2726), - [anon_sym_AMP] = ACTIONS(2726), - [anon_sym_POUND] = ACTIONS(2726), - [anon_sym_LT] = ACTIONS(2726), - [anon_sym_PIPE] = ACTIONS(2726), - [anon_sym_SQUOTE] = ACTIONS(2728), - [anon_sym_async] = ACTIONS(2728), - [anon_sym_break] = ACTIONS(2728), - [anon_sym_const] = ACTIONS(2728), - [anon_sym_continue] = ACTIONS(2728), - [anon_sym_default] = ACTIONS(2728), - [anon_sym_enum] = ACTIONS(2728), - [anon_sym_fn] = ACTIONS(2728), - [anon_sym_for] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2728), - [anon_sym_impl] = ACTIONS(2728), - [anon_sym_let] = ACTIONS(2728), - [anon_sym_loop] = ACTIONS(2728), - [anon_sym_match] = ACTIONS(2728), - [anon_sym_mod] = ACTIONS(2728), - [anon_sym_pub] = ACTIONS(2728), - [anon_sym_return] = ACTIONS(2728), - [anon_sym_static] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2728), - [anon_sym_trait] = ACTIONS(2728), - [anon_sym_type] = ACTIONS(2728), - [anon_sym_union] = ACTIONS(2728), - [anon_sym_unsafe] = ACTIONS(2728), - [anon_sym_use] = ACTIONS(2728), - [anon_sym_while] = ACTIONS(2728), - [anon_sym_extern] = ACTIONS(2728), - [anon_sym_DOT_DOT] = ACTIONS(2726), - [anon_sym_yield] = ACTIONS(2728), - [anon_sym_move] = ACTIONS(2728), - [anon_sym_try] = ACTIONS(2728), - [sym_integer_literal] = ACTIONS(2726), - [aux_sym_string_literal_token1] = ACTIONS(2726), - [sym_char_literal] = ACTIONS(2726), - [anon_sym_true] = ACTIONS(2728), - [anon_sym_false] = ACTIONS(2728), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2728), - [sym_super] = ACTIONS(2728), - [sym_crate] = ACTIONS(2728), - [sym_metavariable] = ACTIONS(2726), - [sym_raw_string_literal] = ACTIONS(2726), - [sym_float_literal] = ACTIONS(2726), + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2759), + [anon_sym_macro_rules_BANG] = ACTIONS(2759), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_RBRACE] = ACTIONS(2759), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_u8] = ACTIONS(2761), + [anon_sym_i8] = ACTIONS(2761), + [anon_sym_u16] = ACTIONS(2761), + [anon_sym_i16] = ACTIONS(2761), + [anon_sym_u32] = ACTIONS(2761), + [anon_sym_i32] = ACTIONS(2761), + [anon_sym_u64] = ACTIONS(2761), + [anon_sym_i64] = ACTIONS(2761), + [anon_sym_u128] = ACTIONS(2761), + [anon_sym_i128] = ACTIONS(2761), + [anon_sym_isize] = ACTIONS(2761), + [anon_sym_usize] = ACTIONS(2761), + [anon_sym_f32] = ACTIONS(2761), + [anon_sym_f64] = ACTIONS(2761), + [anon_sym_bool] = ACTIONS(2761), + [anon_sym_str] = ACTIONS(2761), + [anon_sym_char] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2759), + [anon_sym_COLON_COLON] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2759), + [anon_sym_POUND] = ACTIONS(2759), + [anon_sym_LT] = ACTIONS(2759), + [anon_sym_PIPE] = ACTIONS(2759), + [anon_sym_SQUOTE] = ACTIONS(2761), + [anon_sym_async] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_fn] = ACTIONS(2761), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_impl] = ACTIONS(2761), + [anon_sym_let] = ACTIONS(2761), + [anon_sym_loop] = ACTIONS(2761), + [anon_sym_match] = ACTIONS(2761), + [anon_sym_mod] = ACTIONS(2761), + [anon_sym_pub] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_struct] = ACTIONS(2761), + [anon_sym_trait] = ACTIONS(2761), + [anon_sym_type] = ACTIONS(2761), + [anon_sym_union] = ACTIONS(2761), + [anon_sym_unsafe] = ACTIONS(2761), + [anon_sym_use] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_extern] = ACTIONS(2761), + [anon_sym_DOT_DOT] = ACTIONS(2759), + [anon_sym_yield] = ACTIONS(2761), + [anon_sym_move] = ACTIONS(2761), + [anon_sym_try] = ACTIONS(2761), + [sym_integer_literal] = ACTIONS(2759), + [aux_sym_string_literal_token1] = ACTIONS(2759), + [sym_char_literal] = ACTIONS(2759), + [anon_sym_true] = ACTIONS(2761), + [anon_sym_false] = ACTIONS(2761), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2761), + [sym_super] = ACTIONS(2761), + [sym_crate] = ACTIONS(2761), + [sym_metavariable] = ACTIONS(2759), + [sym_raw_string_literal] = ACTIONS(2759), + [sym_float_literal] = ACTIONS(2759), }, [736] = { [sym_line_comment] = STATE(736), [sym_block_comment] = STATE(736), - [ts_builtin_sym_end] = ACTIONS(2730), - [sym_identifier] = ACTIONS(2732), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_macro_rules_BANG] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_u8] = ACTIONS(2732), - [anon_sym_i8] = ACTIONS(2732), - [anon_sym_u16] = ACTIONS(2732), - [anon_sym_i16] = ACTIONS(2732), - [anon_sym_u32] = ACTIONS(2732), - [anon_sym_i32] = ACTIONS(2732), - [anon_sym_u64] = ACTIONS(2732), - [anon_sym_i64] = ACTIONS(2732), - [anon_sym_u128] = ACTIONS(2732), - [anon_sym_i128] = ACTIONS(2732), - [anon_sym_isize] = ACTIONS(2732), - [anon_sym_usize] = ACTIONS(2732), - [anon_sym_f32] = ACTIONS(2732), - [anon_sym_f64] = ACTIONS(2732), - [anon_sym_bool] = ACTIONS(2732), - [anon_sym_str] = ACTIONS(2732), - [anon_sym_char] = ACTIONS(2732), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_COLON_COLON] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_SQUOTE] = ACTIONS(2732), - [anon_sym_async] = ACTIONS(2732), - [anon_sym_break] = ACTIONS(2732), - [anon_sym_const] = ACTIONS(2732), - [anon_sym_continue] = ACTIONS(2732), - [anon_sym_default] = ACTIONS(2732), - [anon_sym_enum] = ACTIONS(2732), - [anon_sym_fn] = ACTIONS(2732), - [anon_sym_for] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2732), - [anon_sym_impl] = ACTIONS(2732), - [anon_sym_let] = ACTIONS(2732), - [anon_sym_loop] = ACTIONS(2732), - [anon_sym_match] = ACTIONS(2732), - [anon_sym_mod] = ACTIONS(2732), - [anon_sym_pub] = ACTIONS(2732), - [anon_sym_return] = ACTIONS(2732), - [anon_sym_static] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2732), - [anon_sym_trait] = ACTIONS(2732), - [anon_sym_type] = ACTIONS(2732), - [anon_sym_union] = ACTIONS(2732), - [anon_sym_unsafe] = ACTIONS(2732), - [anon_sym_use] = ACTIONS(2732), - [anon_sym_while] = ACTIONS(2732), - [anon_sym_extern] = ACTIONS(2732), - [anon_sym_DOT_DOT] = ACTIONS(2730), - [anon_sym_yield] = ACTIONS(2732), - [anon_sym_move] = ACTIONS(2732), - [anon_sym_try] = ACTIONS(2732), - [sym_integer_literal] = ACTIONS(2730), - [aux_sym_string_literal_token1] = ACTIONS(2730), - [sym_char_literal] = ACTIONS(2730), - [anon_sym_true] = ACTIONS(2732), - [anon_sym_false] = ACTIONS(2732), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2732), - [sym_super] = ACTIONS(2732), - [sym_crate] = ACTIONS(2732), - [sym_metavariable] = ACTIONS(2730), - [sym_raw_string_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), + [ts_builtin_sym_end] = ACTIONS(2763), + [sym_identifier] = ACTIONS(2765), + [anon_sym_SEMI] = ACTIONS(2763), + [anon_sym_macro_rules_BANG] = ACTIONS(2763), + [anon_sym_LPAREN] = ACTIONS(2763), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_RBRACE] = ACTIONS(2763), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_u8] = ACTIONS(2765), + [anon_sym_i8] = ACTIONS(2765), + [anon_sym_u16] = ACTIONS(2765), + [anon_sym_i16] = ACTIONS(2765), + [anon_sym_u32] = ACTIONS(2765), + [anon_sym_i32] = ACTIONS(2765), + [anon_sym_u64] = ACTIONS(2765), + [anon_sym_i64] = ACTIONS(2765), + [anon_sym_u128] = ACTIONS(2765), + [anon_sym_i128] = ACTIONS(2765), + [anon_sym_isize] = ACTIONS(2765), + [anon_sym_usize] = ACTIONS(2765), + [anon_sym_f32] = ACTIONS(2765), + [anon_sym_f64] = ACTIONS(2765), + [anon_sym_bool] = ACTIONS(2765), + [anon_sym_str] = ACTIONS(2765), + [anon_sym_char] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2763), + [anon_sym_COLON_COLON] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_POUND] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2763), + [anon_sym_PIPE] = ACTIONS(2763), + [anon_sym_SQUOTE] = ACTIONS(2765), + [anon_sym_async] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_const] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2765), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_impl] = ACTIONS(2765), + [anon_sym_let] = ACTIONS(2765), + [anon_sym_loop] = ACTIONS(2765), + [anon_sym_match] = ACTIONS(2765), + [anon_sym_mod] = ACTIONS(2765), + [anon_sym_pub] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_struct] = ACTIONS(2765), + [anon_sym_trait] = ACTIONS(2765), + [anon_sym_type] = ACTIONS(2765), + [anon_sym_union] = ACTIONS(2765), + [anon_sym_unsafe] = ACTIONS(2765), + [anon_sym_use] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym_DOT_DOT] = ACTIONS(2763), + [anon_sym_yield] = ACTIONS(2765), + [anon_sym_move] = ACTIONS(2765), + [anon_sym_try] = ACTIONS(2765), + [sym_integer_literal] = ACTIONS(2763), + [aux_sym_string_literal_token1] = ACTIONS(2763), + [sym_char_literal] = ACTIONS(2763), + [anon_sym_true] = ACTIONS(2765), + [anon_sym_false] = ACTIONS(2765), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2765), + [sym_super] = ACTIONS(2765), + [sym_crate] = ACTIONS(2765), + [sym_metavariable] = ACTIONS(2763), + [sym_raw_string_literal] = ACTIONS(2763), + [sym_float_literal] = ACTIONS(2763), }, [737] = { [sym_line_comment] = STATE(737), [sym_block_comment] = STATE(737), - [ts_builtin_sym_end] = ACTIONS(2734), - [sym_identifier] = ACTIONS(2736), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_macro_rules_BANG] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_u8] = ACTIONS(2736), - [anon_sym_i8] = ACTIONS(2736), - [anon_sym_u16] = ACTIONS(2736), - [anon_sym_i16] = ACTIONS(2736), - [anon_sym_u32] = ACTIONS(2736), - [anon_sym_i32] = ACTIONS(2736), - [anon_sym_u64] = ACTIONS(2736), - [anon_sym_i64] = ACTIONS(2736), - [anon_sym_u128] = ACTIONS(2736), - [anon_sym_i128] = ACTIONS(2736), - [anon_sym_isize] = ACTIONS(2736), - [anon_sym_usize] = ACTIONS(2736), - [anon_sym_f32] = ACTIONS(2736), - [anon_sym_f64] = ACTIONS(2736), - [anon_sym_bool] = ACTIONS(2736), - [anon_sym_str] = ACTIONS(2736), - [anon_sym_char] = ACTIONS(2736), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_COLON_COLON] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_SQUOTE] = ACTIONS(2736), - [anon_sym_async] = ACTIONS(2736), - [anon_sym_break] = ACTIONS(2736), - [anon_sym_const] = ACTIONS(2736), - [anon_sym_continue] = ACTIONS(2736), - [anon_sym_default] = ACTIONS(2736), - [anon_sym_enum] = ACTIONS(2736), - [anon_sym_fn] = ACTIONS(2736), - [anon_sym_for] = ACTIONS(2736), - [anon_sym_if] = ACTIONS(2736), - [anon_sym_impl] = ACTIONS(2736), - [anon_sym_let] = ACTIONS(2736), - [anon_sym_loop] = ACTIONS(2736), - [anon_sym_match] = ACTIONS(2736), - [anon_sym_mod] = ACTIONS(2736), - [anon_sym_pub] = ACTIONS(2736), - [anon_sym_return] = ACTIONS(2736), - [anon_sym_static] = ACTIONS(2736), - [anon_sym_struct] = ACTIONS(2736), - [anon_sym_trait] = ACTIONS(2736), - [anon_sym_type] = ACTIONS(2736), - [anon_sym_union] = ACTIONS(2736), - [anon_sym_unsafe] = ACTIONS(2736), - [anon_sym_use] = ACTIONS(2736), - [anon_sym_while] = ACTIONS(2736), - [anon_sym_extern] = ACTIONS(2736), - [anon_sym_DOT_DOT] = ACTIONS(2734), - [anon_sym_yield] = ACTIONS(2736), - [anon_sym_move] = ACTIONS(2736), - [anon_sym_try] = ACTIONS(2736), - [sym_integer_literal] = ACTIONS(2734), - [aux_sym_string_literal_token1] = ACTIONS(2734), - [sym_char_literal] = ACTIONS(2734), - [anon_sym_true] = ACTIONS(2736), - [anon_sym_false] = ACTIONS(2736), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2736), - [sym_super] = ACTIONS(2736), - [sym_crate] = ACTIONS(2736), - [sym_metavariable] = ACTIONS(2734), - [sym_raw_string_literal] = ACTIONS(2734), - [sym_float_literal] = ACTIONS(2734), + [ts_builtin_sym_end] = ACTIONS(2767), + [sym_identifier] = ACTIONS(2769), + [anon_sym_SEMI] = ACTIONS(2767), + [anon_sym_macro_rules_BANG] = ACTIONS(2767), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_RBRACE] = ACTIONS(2767), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_u8] = ACTIONS(2769), + [anon_sym_i8] = ACTIONS(2769), + [anon_sym_u16] = ACTIONS(2769), + [anon_sym_i16] = ACTIONS(2769), + [anon_sym_u32] = ACTIONS(2769), + [anon_sym_i32] = ACTIONS(2769), + [anon_sym_u64] = ACTIONS(2769), + [anon_sym_i64] = ACTIONS(2769), + [anon_sym_u128] = ACTIONS(2769), + [anon_sym_i128] = ACTIONS(2769), + [anon_sym_isize] = ACTIONS(2769), + [anon_sym_usize] = ACTIONS(2769), + [anon_sym_f32] = ACTIONS(2769), + [anon_sym_f64] = ACTIONS(2769), + [anon_sym_bool] = ACTIONS(2769), + [anon_sym_str] = ACTIONS(2769), + [anon_sym_char] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2767), + [anon_sym_COLON_COLON] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2767), + [anon_sym_POUND] = ACTIONS(2767), + [anon_sym_LT] = ACTIONS(2767), + [anon_sym_PIPE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_async] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_const] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_fn] = ACTIONS(2769), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_impl] = ACTIONS(2769), + [anon_sym_let] = ACTIONS(2769), + [anon_sym_loop] = ACTIONS(2769), + [anon_sym_match] = ACTIONS(2769), + [anon_sym_mod] = ACTIONS(2769), + [anon_sym_pub] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_struct] = ACTIONS(2769), + [anon_sym_trait] = ACTIONS(2769), + [anon_sym_type] = ACTIONS(2769), + [anon_sym_union] = ACTIONS(2769), + [anon_sym_unsafe] = ACTIONS(2769), + [anon_sym_use] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym_DOT_DOT] = ACTIONS(2767), + [anon_sym_yield] = ACTIONS(2769), + [anon_sym_move] = ACTIONS(2769), + [anon_sym_try] = ACTIONS(2769), + [sym_integer_literal] = ACTIONS(2767), + [aux_sym_string_literal_token1] = ACTIONS(2767), + [sym_char_literal] = ACTIONS(2767), + [anon_sym_true] = ACTIONS(2769), + [anon_sym_false] = ACTIONS(2769), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2769), + [sym_super] = ACTIONS(2769), + [sym_crate] = ACTIONS(2769), + [sym_metavariable] = ACTIONS(2767), + [sym_raw_string_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2767), }, [738] = { [sym_line_comment] = STATE(738), [sym_block_comment] = STATE(738), - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_macro_rules_BANG] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2738), - [anon_sym_u8] = ACTIONS(2740), - [anon_sym_i8] = ACTIONS(2740), - [anon_sym_u16] = ACTIONS(2740), - [anon_sym_i16] = ACTIONS(2740), - [anon_sym_u32] = ACTIONS(2740), - [anon_sym_i32] = ACTIONS(2740), - [anon_sym_u64] = ACTIONS(2740), - [anon_sym_i64] = ACTIONS(2740), - [anon_sym_u128] = ACTIONS(2740), - [anon_sym_i128] = ACTIONS(2740), - [anon_sym_isize] = ACTIONS(2740), - [anon_sym_usize] = ACTIONS(2740), - [anon_sym_f32] = ACTIONS(2740), - [anon_sym_f64] = ACTIONS(2740), - [anon_sym_bool] = ACTIONS(2740), - [anon_sym_str] = ACTIONS(2740), - [anon_sym_char] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(2738), - [anon_sym_BANG] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2738), - [anon_sym_POUND] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_SQUOTE] = ACTIONS(2740), - [anon_sym_async] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_default] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_impl] = ACTIONS(2740), - [anon_sym_let] = ACTIONS(2740), - [anon_sym_loop] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_mod] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_static] = ACTIONS(2740), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_trait] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_use] = ACTIONS(2740), - [anon_sym_while] = ACTIONS(2740), - [anon_sym_extern] = ACTIONS(2740), - [anon_sym_DOT_DOT] = ACTIONS(2738), - [anon_sym_yield] = ACTIONS(2740), - [anon_sym_move] = ACTIONS(2740), - [anon_sym_try] = ACTIONS(2740), - [sym_integer_literal] = ACTIONS(2738), - [aux_sym_string_literal_token1] = ACTIONS(2738), - [sym_char_literal] = ACTIONS(2738), - [anon_sym_true] = ACTIONS(2740), - [anon_sym_false] = ACTIONS(2740), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2740), - [sym_super] = ACTIONS(2740), - [sym_crate] = ACTIONS(2740), - [sym_metavariable] = ACTIONS(2738), - [sym_raw_string_literal] = ACTIONS(2738), - [sym_float_literal] = ACTIONS(2738), + [ts_builtin_sym_end] = ACTIONS(2771), + [sym_identifier] = ACTIONS(2773), + [anon_sym_SEMI] = ACTIONS(2771), + [anon_sym_macro_rules_BANG] = ACTIONS(2771), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_RBRACE] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_u8] = ACTIONS(2773), + [anon_sym_i8] = ACTIONS(2773), + [anon_sym_u16] = ACTIONS(2773), + [anon_sym_i16] = ACTIONS(2773), + [anon_sym_u32] = ACTIONS(2773), + [anon_sym_i32] = ACTIONS(2773), + [anon_sym_u64] = ACTIONS(2773), + [anon_sym_i64] = ACTIONS(2773), + [anon_sym_u128] = ACTIONS(2773), + [anon_sym_i128] = ACTIONS(2773), + [anon_sym_isize] = ACTIONS(2773), + [anon_sym_usize] = ACTIONS(2773), + [anon_sym_f32] = ACTIONS(2773), + [anon_sym_f64] = ACTIONS(2773), + [anon_sym_bool] = ACTIONS(2773), + [anon_sym_str] = ACTIONS(2773), + [anon_sym_char] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2771), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2771), + [anon_sym_POUND] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_SQUOTE] = ACTIONS(2773), + [anon_sym_async] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_const] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_fn] = ACTIONS(2773), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_impl] = ACTIONS(2773), + [anon_sym_let] = ACTIONS(2773), + [anon_sym_loop] = ACTIONS(2773), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_mod] = ACTIONS(2773), + [anon_sym_pub] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_struct] = ACTIONS(2773), + [anon_sym_trait] = ACTIONS(2773), + [anon_sym_type] = ACTIONS(2773), + [anon_sym_union] = ACTIONS(2773), + [anon_sym_unsafe] = ACTIONS(2773), + [anon_sym_use] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym_DOT_DOT] = ACTIONS(2771), + [anon_sym_yield] = ACTIONS(2773), + [anon_sym_move] = ACTIONS(2773), + [anon_sym_try] = ACTIONS(2773), + [sym_integer_literal] = ACTIONS(2771), + [aux_sym_string_literal_token1] = ACTIONS(2771), + [sym_char_literal] = ACTIONS(2771), + [anon_sym_true] = ACTIONS(2773), + [anon_sym_false] = ACTIONS(2773), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2773), + [sym_super] = ACTIONS(2773), + [sym_crate] = ACTIONS(2773), + [sym_metavariable] = ACTIONS(2771), + [sym_raw_string_literal] = ACTIONS(2771), + [sym_float_literal] = ACTIONS(2771), }, [739] = { [sym_line_comment] = STATE(739), [sym_block_comment] = STATE(739), - [ts_builtin_sym_end] = ACTIONS(2742), - [sym_identifier] = ACTIONS(2744), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_macro_rules_BANG] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_RBRACE] = ACTIONS(2742), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_u8] = ACTIONS(2744), - [anon_sym_i8] = ACTIONS(2744), - [anon_sym_u16] = ACTIONS(2744), - [anon_sym_i16] = ACTIONS(2744), - [anon_sym_u32] = ACTIONS(2744), - [anon_sym_i32] = ACTIONS(2744), - [anon_sym_u64] = ACTIONS(2744), - [anon_sym_i64] = ACTIONS(2744), - [anon_sym_u128] = ACTIONS(2744), - [anon_sym_i128] = ACTIONS(2744), - [anon_sym_isize] = ACTIONS(2744), - [anon_sym_usize] = ACTIONS(2744), - [anon_sym_f32] = ACTIONS(2744), - [anon_sym_f64] = ACTIONS(2744), - [anon_sym_bool] = ACTIONS(2744), - [anon_sym_str] = ACTIONS(2744), - [anon_sym_char] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(2742), - [anon_sym_BANG] = ACTIONS(2742), - [anon_sym_AMP] = ACTIONS(2742), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_LT] = ACTIONS(2742), - [anon_sym_PIPE] = ACTIONS(2742), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_break] = ACTIONS(2744), - [anon_sym_const] = ACTIONS(2744), - [anon_sym_continue] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_enum] = ACTIONS(2744), - [anon_sym_fn] = ACTIONS(2744), - [anon_sym_for] = ACTIONS(2744), - [anon_sym_if] = ACTIONS(2744), - [anon_sym_impl] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2744), - [anon_sym_loop] = ACTIONS(2744), - [anon_sym_match] = ACTIONS(2744), - [anon_sym_mod] = ACTIONS(2744), - [anon_sym_pub] = ACTIONS(2744), - [anon_sym_return] = ACTIONS(2744), - [anon_sym_static] = ACTIONS(2744), - [anon_sym_struct] = ACTIONS(2744), - [anon_sym_trait] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2744), - [anon_sym_union] = ACTIONS(2744), - [anon_sym_unsafe] = ACTIONS(2744), - [anon_sym_use] = ACTIONS(2744), - [anon_sym_while] = ACTIONS(2744), - [anon_sym_extern] = ACTIONS(2744), - [anon_sym_DOT_DOT] = ACTIONS(2742), - [anon_sym_yield] = ACTIONS(2744), - [anon_sym_move] = ACTIONS(2744), - [anon_sym_try] = ACTIONS(2744), - [sym_integer_literal] = ACTIONS(2742), - [aux_sym_string_literal_token1] = ACTIONS(2742), - [sym_char_literal] = ACTIONS(2742), - [anon_sym_true] = ACTIONS(2744), - [anon_sym_false] = ACTIONS(2744), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2744), - [sym_super] = ACTIONS(2744), - [sym_crate] = ACTIONS(2744), - [sym_metavariable] = ACTIONS(2742), - [sym_raw_string_literal] = ACTIONS(2742), - [sym_float_literal] = ACTIONS(2742), + [ts_builtin_sym_end] = ACTIONS(2775), + [sym_identifier] = ACTIONS(2777), + [anon_sym_SEMI] = ACTIONS(2775), + [anon_sym_macro_rules_BANG] = ACTIONS(2775), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_RBRACE] = ACTIONS(2775), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_u8] = ACTIONS(2777), + [anon_sym_i8] = ACTIONS(2777), + [anon_sym_u16] = ACTIONS(2777), + [anon_sym_i16] = ACTIONS(2777), + [anon_sym_u32] = ACTIONS(2777), + [anon_sym_i32] = ACTIONS(2777), + [anon_sym_u64] = ACTIONS(2777), + [anon_sym_i64] = ACTIONS(2777), + [anon_sym_u128] = ACTIONS(2777), + [anon_sym_i128] = ACTIONS(2777), + [anon_sym_isize] = ACTIONS(2777), + [anon_sym_usize] = ACTIONS(2777), + [anon_sym_f32] = ACTIONS(2777), + [anon_sym_f64] = ACTIONS(2777), + [anon_sym_bool] = ACTIONS(2777), + [anon_sym_str] = ACTIONS(2777), + [anon_sym_char] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_COLON_COLON] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2775), + [anon_sym_POUND] = ACTIONS(2775), + [anon_sym_LT] = ACTIONS(2775), + [anon_sym_PIPE] = ACTIONS(2775), + [anon_sym_SQUOTE] = ACTIONS(2777), + [anon_sym_async] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_const] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), + [anon_sym_fn] = ACTIONS(2777), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_impl] = ACTIONS(2777), + [anon_sym_let] = ACTIONS(2777), + [anon_sym_loop] = ACTIONS(2777), + [anon_sym_match] = ACTIONS(2777), + [anon_sym_mod] = ACTIONS(2777), + [anon_sym_pub] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_struct] = ACTIONS(2777), + [anon_sym_trait] = ACTIONS(2777), + [anon_sym_type] = ACTIONS(2777), + [anon_sym_union] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2777), + [anon_sym_use] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_extern] = ACTIONS(2777), + [anon_sym_DOT_DOT] = ACTIONS(2775), + [anon_sym_yield] = ACTIONS(2777), + [anon_sym_move] = ACTIONS(2777), + [anon_sym_try] = ACTIONS(2777), + [sym_integer_literal] = ACTIONS(2775), + [aux_sym_string_literal_token1] = ACTIONS(2775), + [sym_char_literal] = ACTIONS(2775), + [anon_sym_true] = ACTIONS(2777), + [anon_sym_false] = ACTIONS(2777), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2777), + [sym_super] = ACTIONS(2777), + [sym_crate] = ACTIONS(2777), + [sym_metavariable] = ACTIONS(2775), + [sym_raw_string_literal] = ACTIONS(2775), + [sym_float_literal] = ACTIONS(2775), }, [740] = { [sym_line_comment] = STATE(740), [sym_block_comment] = STATE(740), - [ts_builtin_sym_end] = ACTIONS(2746), - [sym_identifier] = ACTIONS(2748), - [anon_sym_SEMI] = ACTIONS(2746), - [anon_sym_macro_rules_BANG] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(2746), - [anon_sym_LBRACK] = ACTIONS(2746), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_RBRACE] = ACTIONS(2746), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_u8] = ACTIONS(2748), - [anon_sym_i8] = ACTIONS(2748), - [anon_sym_u16] = ACTIONS(2748), - [anon_sym_i16] = ACTIONS(2748), - [anon_sym_u32] = ACTIONS(2748), - [anon_sym_i32] = ACTIONS(2748), - [anon_sym_u64] = ACTIONS(2748), - [anon_sym_i64] = ACTIONS(2748), - [anon_sym_u128] = ACTIONS(2748), - [anon_sym_i128] = ACTIONS(2748), - [anon_sym_isize] = ACTIONS(2748), - [anon_sym_usize] = ACTIONS(2748), - [anon_sym_f32] = ACTIONS(2748), - [anon_sym_f64] = ACTIONS(2748), - [anon_sym_bool] = ACTIONS(2748), - [anon_sym_str] = ACTIONS(2748), - [anon_sym_char] = ACTIONS(2748), - [anon_sym_DASH] = ACTIONS(2746), - [anon_sym_COLON_COLON] = ACTIONS(2746), - [anon_sym_BANG] = ACTIONS(2746), - [anon_sym_AMP] = ACTIONS(2746), - [anon_sym_POUND] = ACTIONS(2746), - [anon_sym_LT] = ACTIONS(2746), - [anon_sym_PIPE] = ACTIONS(2746), - [anon_sym_SQUOTE] = ACTIONS(2748), - [anon_sym_async] = ACTIONS(2748), - [anon_sym_break] = ACTIONS(2748), - [anon_sym_const] = ACTIONS(2748), - [anon_sym_continue] = ACTIONS(2748), - [anon_sym_default] = ACTIONS(2748), - [anon_sym_enum] = ACTIONS(2748), - [anon_sym_fn] = ACTIONS(2748), - [anon_sym_for] = ACTIONS(2748), - [anon_sym_if] = ACTIONS(2748), - [anon_sym_impl] = ACTIONS(2748), - [anon_sym_let] = ACTIONS(2748), - [anon_sym_loop] = ACTIONS(2748), - [anon_sym_match] = ACTIONS(2748), - [anon_sym_mod] = ACTIONS(2748), - [anon_sym_pub] = ACTIONS(2748), - [anon_sym_return] = ACTIONS(2748), - [anon_sym_static] = ACTIONS(2748), - [anon_sym_struct] = ACTIONS(2748), - [anon_sym_trait] = ACTIONS(2748), - [anon_sym_type] = ACTIONS(2748), - [anon_sym_union] = ACTIONS(2748), - [anon_sym_unsafe] = ACTIONS(2748), - [anon_sym_use] = ACTIONS(2748), - [anon_sym_while] = ACTIONS(2748), - [anon_sym_extern] = ACTIONS(2748), - [anon_sym_DOT_DOT] = ACTIONS(2746), - [anon_sym_yield] = ACTIONS(2748), - [anon_sym_move] = ACTIONS(2748), - [anon_sym_try] = ACTIONS(2748), - [sym_integer_literal] = ACTIONS(2746), - [aux_sym_string_literal_token1] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), - [anon_sym_true] = ACTIONS(2748), - [anon_sym_false] = ACTIONS(2748), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2748), - [sym_super] = ACTIONS(2748), - [sym_crate] = ACTIONS(2748), - [sym_metavariable] = ACTIONS(2746), - [sym_raw_string_literal] = ACTIONS(2746), - [sym_float_literal] = ACTIONS(2746), + [ts_builtin_sym_end] = ACTIONS(2779), + [sym_identifier] = ACTIONS(2781), + [anon_sym_SEMI] = ACTIONS(2779), + [anon_sym_macro_rules_BANG] = ACTIONS(2779), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_RBRACE] = ACTIONS(2779), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_u8] = ACTIONS(2781), + [anon_sym_i8] = ACTIONS(2781), + [anon_sym_u16] = ACTIONS(2781), + [anon_sym_i16] = ACTIONS(2781), + [anon_sym_u32] = ACTIONS(2781), + [anon_sym_i32] = ACTIONS(2781), + [anon_sym_u64] = ACTIONS(2781), + [anon_sym_i64] = ACTIONS(2781), + [anon_sym_u128] = ACTIONS(2781), + [anon_sym_i128] = ACTIONS(2781), + [anon_sym_isize] = ACTIONS(2781), + [anon_sym_usize] = ACTIONS(2781), + [anon_sym_f32] = ACTIONS(2781), + [anon_sym_f64] = ACTIONS(2781), + [anon_sym_bool] = ACTIONS(2781), + [anon_sym_str] = ACTIONS(2781), + [anon_sym_char] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2779), + [anon_sym_COLON_COLON] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2779), + [anon_sym_POUND] = ACTIONS(2779), + [anon_sym_LT] = ACTIONS(2779), + [anon_sym_PIPE] = ACTIONS(2779), + [anon_sym_SQUOTE] = ACTIONS(2781), + [anon_sym_async] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_const] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_fn] = ACTIONS(2781), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_impl] = ACTIONS(2781), + [anon_sym_let] = ACTIONS(2781), + [anon_sym_loop] = ACTIONS(2781), + [anon_sym_match] = ACTIONS(2781), + [anon_sym_mod] = ACTIONS(2781), + [anon_sym_pub] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_struct] = ACTIONS(2781), + [anon_sym_trait] = ACTIONS(2781), + [anon_sym_type] = ACTIONS(2781), + [anon_sym_union] = ACTIONS(2781), + [anon_sym_unsafe] = ACTIONS(2781), + [anon_sym_use] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_extern] = ACTIONS(2781), + [anon_sym_DOT_DOT] = ACTIONS(2779), + [anon_sym_yield] = ACTIONS(2781), + [anon_sym_move] = ACTIONS(2781), + [anon_sym_try] = ACTIONS(2781), + [sym_integer_literal] = ACTIONS(2779), + [aux_sym_string_literal_token1] = ACTIONS(2779), + [sym_char_literal] = ACTIONS(2779), + [anon_sym_true] = ACTIONS(2781), + [anon_sym_false] = ACTIONS(2781), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2781), + [sym_super] = ACTIONS(2781), + [sym_crate] = ACTIONS(2781), + [sym_metavariable] = ACTIONS(2779), + [sym_raw_string_literal] = ACTIONS(2779), + [sym_float_literal] = ACTIONS(2779), }, [741] = { [sym_line_comment] = STATE(741), [sym_block_comment] = STATE(741), - [ts_builtin_sym_end] = ACTIONS(2750), - [sym_identifier] = ACTIONS(2752), - [anon_sym_SEMI] = ACTIONS(2750), - [anon_sym_macro_rules_BANG] = ACTIONS(2750), - [anon_sym_LPAREN] = ACTIONS(2750), - [anon_sym_LBRACK] = ACTIONS(2750), - [anon_sym_LBRACE] = ACTIONS(2750), - [anon_sym_RBRACE] = ACTIONS(2750), - [anon_sym_STAR] = ACTIONS(2750), - [anon_sym_u8] = ACTIONS(2752), - [anon_sym_i8] = ACTIONS(2752), - [anon_sym_u16] = ACTIONS(2752), - [anon_sym_i16] = ACTIONS(2752), - [anon_sym_u32] = ACTIONS(2752), - [anon_sym_i32] = ACTIONS(2752), - [anon_sym_u64] = ACTIONS(2752), - [anon_sym_i64] = ACTIONS(2752), - [anon_sym_u128] = ACTIONS(2752), - [anon_sym_i128] = ACTIONS(2752), - [anon_sym_isize] = ACTIONS(2752), - [anon_sym_usize] = ACTIONS(2752), - [anon_sym_f32] = ACTIONS(2752), - [anon_sym_f64] = ACTIONS(2752), - [anon_sym_bool] = ACTIONS(2752), - [anon_sym_str] = ACTIONS(2752), - [anon_sym_char] = ACTIONS(2752), - [anon_sym_DASH] = ACTIONS(2750), - [anon_sym_COLON_COLON] = ACTIONS(2750), - [anon_sym_BANG] = ACTIONS(2750), - [anon_sym_AMP] = ACTIONS(2750), - [anon_sym_POUND] = ACTIONS(2750), - [anon_sym_LT] = ACTIONS(2750), - [anon_sym_PIPE] = ACTIONS(2750), - [anon_sym_SQUOTE] = ACTIONS(2752), - [anon_sym_async] = ACTIONS(2752), - [anon_sym_break] = ACTIONS(2752), - [anon_sym_const] = ACTIONS(2752), - [anon_sym_continue] = ACTIONS(2752), - [anon_sym_default] = ACTIONS(2752), - [anon_sym_enum] = ACTIONS(2752), - [anon_sym_fn] = ACTIONS(2752), - [anon_sym_for] = ACTIONS(2752), - [anon_sym_if] = ACTIONS(2752), - [anon_sym_impl] = ACTIONS(2752), - [anon_sym_let] = ACTIONS(2752), - [anon_sym_loop] = ACTIONS(2752), - [anon_sym_match] = ACTIONS(2752), - [anon_sym_mod] = ACTIONS(2752), - [anon_sym_pub] = ACTIONS(2752), - [anon_sym_return] = ACTIONS(2752), - [anon_sym_static] = ACTIONS(2752), - [anon_sym_struct] = ACTIONS(2752), - [anon_sym_trait] = ACTIONS(2752), - [anon_sym_type] = ACTIONS(2752), - [anon_sym_union] = ACTIONS(2752), - [anon_sym_unsafe] = ACTIONS(2752), - [anon_sym_use] = ACTIONS(2752), - [anon_sym_while] = ACTIONS(2752), - [anon_sym_extern] = ACTIONS(2752), - [anon_sym_DOT_DOT] = ACTIONS(2750), - [anon_sym_yield] = ACTIONS(2752), - [anon_sym_move] = ACTIONS(2752), - [anon_sym_try] = ACTIONS(2752), - [sym_integer_literal] = ACTIONS(2750), - [aux_sym_string_literal_token1] = ACTIONS(2750), - [sym_char_literal] = ACTIONS(2750), - [anon_sym_true] = ACTIONS(2752), - [anon_sym_false] = ACTIONS(2752), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2752), - [sym_super] = ACTIONS(2752), - [sym_crate] = ACTIONS(2752), - [sym_metavariable] = ACTIONS(2750), - [sym_raw_string_literal] = ACTIONS(2750), - [sym_float_literal] = ACTIONS(2750), + [ts_builtin_sym_end] = ACTIONS(864), + [sym_identifier] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(864), + [anon_sym_macro_rules_BANG] = ACTIONS(864), + [anon_sym_LPAREN] = ACTIONS(864), + [anon_sym_LBRACK] = ACTIONS(864), + [anon_sym_LBRACE] = ACTIONS(864), + [anon_sym_RBRACE] = ACTIONS(864), + [anon_sym_STAR] = ACTIONS(864), + [anon_sym_u8] = ACTIONS(866), + [anon_sym_i8] = ACTIONS(866), + [anon_sym_u16] = ACTIONS(866), + [anon_sym_i16] = ACTIONS(866), + [anon_sym_u32] = ACTIONS(866), + [anon_sym_i32] = ACTIONS(866), + [anon_sym_u64] = ACTIONS(866), + [anon_sym_i64] = ACTIONS(866), + [anon_sym_u128] = ACTIONS(866), + [anon_sym_i128] = ACTIONS(866), + [anon_sym_isize] = ACTIONS(866), + [anon_sym_usize] = ACTIONS(866), + [anon_sym_f32] = ACTIONS(866), + [anon_sym_f64] = ACTIONS(866), + [anon_sym_bool] = ACTIONS(866), + [anon_sym_str] = ACTIONS(866), + [anon_sym_char] = ACTIONS(866), + [anon_sym_DASH] = ACTIONS(864), + [anon_sym_COLON_COLON] = ACTIONS(864), + [anon_sym_BANG] = ACTIONS(864), + [anon_sym_AMP] = ACTIONS(864), + [anon_sym_POUND] = ACTIONS(864), + [anon_sym_LT] = ACTIONS(864), + [anon_sym_PIPE] = ACTIONS(864), + [anon_sym_SQUOTE] = ACTIONS(866), + [anon_sym_async] = ACTIONS(866), + [anon_sym_break] = ACTIONS(866), + [anon_sym_const] = ACTIONS(866), + [anon_sym_continue] = ACTIONS(866), + [anon_sym_default] = ACTIONS(866), + [anon_sym_enum] = ACTIONS(866), + [anon_sym_fn] = ACTIONS(866), + [anon_sym_for] = ACTIONS(866), + [anon_sym_if] = ACTIONS(866), + [anon_sym_impl] = ACTIONS(866), + [anon_sym_let] = ACTIONS(866), + [anon_sym_loop] = ACTIONS(866), + [anon_sym_match] = ACTIONS(866), + [anon_sym_mod] = ACTIONS(866), + [anon_sym_pub] = ACTIONS(866), + [anon_sym_return] = ACTIONS(866), + [anon_sym_static] = ACTIONS(866), + [anon_sym_struct] = ACTIONS(866), + [anon_sym_trait] = ACTIONS(866), + [anon_sym_type] = ACTIONS(866), + [anon_sym_union] = ACTIONS(866), + [anon_sym_unsafe] = ACTIONS(866), + [anon_sym_use] = ACTIONS(866), + [anon_sym_while] = ACTIONS(866), + [anon_sym_extern] = ACTIONS(866), + [anon_sym_DOT_DOT] = ACTIONS(864), + [anon_sym_yield] = ACTIONS(866), + [anon_sym_move] = ACTIONS(866), + [anon_sym_try] = ACTIONS(866), + [sym_integer_literal] = ACTIONS(864), + [aux_sym_string_literal_token1] = ACTIONS(864), + [sym_char_literal] = ACTIONS(864), + [anon_sym_true] = ACTIONS(866), + [anon_sym_false] = ACTIONS(866), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(866), + [sym_super] = ACTIONS(866), + [sym_crate] = ACTIONS(866), + [sym_metavariable] = ACTIONS(864), + [sym_raw_string_literal] = ACTIONS(864), + [sym_float_literal] = ACTIONS(864), }, [742] = { [sym_line_comment] = STATE(742), [sym_block_comment] = STATE(742), - [ts_builtin_sym_end] = ACTIONS(2754), - [sym_identifier] = ACTIONS(2756), - [anon_sym_SEMI] = ACTIONS(2754), - [anon_sym_macro_rules_BANG] = ACTIONS(2754), - [anon_sym_LPAREN] = ACTIONS(2754), - [anon_sym_LBRACK] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2754), - [anon_sym_RBRACE] = ACTIONS(2754), - [anon_sym_STAR] = ACTIONS(2754), - [anon_sym_u8] = ACTIONS(2756), - [anon_sym_i8] = ACTIONS(2756), - [anon_sym_u16] = ACTIONS(2756), - [anon_sym_i16] = ACTIONS(2756), - [anon_sym_u32] = ACTIONS(2756), - [anon_sym_i32] = ACTIONS(2756), - [anon_sym_u64] = ACTIONS(2756), - [anon_sym_i64] = ACTIONS(2756), - [anon_sym_u128] = ACTIONS(2756), - [anon_sym_i128] = ACTIONS(2756), - [anon_sym_isize] = ACTIONS(2756), - [anon_sym_usize] = ACTIONS(2756), - [anon_sym_f32] = ACTIONS(2756), - [anon_sym_f64] = ACTIONS(2756), - [anon_sym_bool] = ACTIONS(2756), - [anon_sym_str] = ACTIONS(2756), - [anon_sym_char] = ACTIONS(2756), - [anon_sym_DASH] = ACTIONS(2754), - [anon_sym_COLON_COLON] = ACTIONS(2754), - [anon_sym_BANG] = ACTIONS(2754), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_POUND] = ACTIONS(2754), - [anon_sym_LT] = ACTIONS(2754), - [anon_sym_PIPE] = ACTIONS(2754), - [anon_sym_SQUOTE] = ACTIONS(2756), - [anon_sym_async] = ACTIONS(2756), - [anon_sym_break] = ACTIONS(2756), - [anon_sym_const] = ACTIONS(2756), - [anon_sym_continue] = ACTIONS(2756), - [anon_sym_default] = ACTIONS(2756), - [anon_sym_enum] = ACTIONS(2756), - [anon_sym_fn] = ACTIONS(2756), - [anon_sym_for] = ACTIONS(2756), - [anon_sym_if] = ACTIONS(2756), - [anon_sym_impl] = ACTIONS(2756), - [anon_sym_let] = ACTIONS(2756), - [anon_sym_loop] = ACTIONS(2756), - [anon_sym_match] = ACTIONS(2756), - [anon_sym_mod] = ACTIONS(2756), - [anon_sym_pub] = ACTIONS(2756), - [anon_sym_return] = ACTIONS(2756), - [anon_sym_static] = ACTIONS(2756), - [anon_sym_struct] = ACTIONS(2756), - [anon_sym_trait] = ACTIONS(2756), - [anon_sym_type] = ACTIONS(2756), - [anon_sym_union] = ACTIONS(2756), - [anon_sym_unsafe] = ACTIONS(2756), - [anon_sym_use] = ACTIONS(2756), - [anon_sym_while] = ACTIONS(2756), - [anon_sym_extern] = ACTIONS(2756), - [anon_sym_DOT_DOT] = ACTIONS(2754), - [anon_sym_yield] = ACTIONS(2756), - [anon_sym_move] = ACTIONS(2756), - [anon_sym_try] = ACTIONS(2756), - [sym_integer_literal] = ACTIONS(2754), - [aux_sym_string_literal_token1] = ACTIONS(2754), - [sym_char_literal] = ACTIONS(2754), - [anon_sym_true] = ACTIONS(2756), - [anon_sym_false] = ACTIONS(2756), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2756), - [sym_super] = ACTIONS(2756), - [sym_crate] = ACTIONS(2756), - [sym_metavariable] = ACTIONS(2754), - [sym_raw_string_literal] = ACTIONS(2754), - [sym_float_literal] = ACTIONS(2754), + [ts_builtin_sym_end] = ACTIONS(2783), + [sym_identifier] = ACTIONS(2785), + [anon_sym_SEMI] = ACTIONS(2783), + [anon_sym_macro_rules_BANG] = ACTIONS(2783), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_RBRACE] = ACTIONS(2783), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_u8] = ACTIONS(2785), + [anon_sym_i8] = ACTIONS(2785), + [anon_sym_u16] = ACTIONS(2785), + [anon_sym_i16] = ACTIONS(2785), + [anon_sym_u32] = ACTIONS(2785), + [anon_sym_i32] = ACTIONS(2785), + [anon_sym_u64] = ACTIONS(2785), + [anon_sym_i64] = ACTIONS(2785), + [anon_sym_u128] = ACTIONS(2785), + [anon_sym_i128] = ACTIONS(2785), + [anon_sym_isize] = ACTIONS(2785), + [anon_sym_usize] = ACTIONS(2785), + [anon_sym_f32] = ACTIONS(2785), + [anon_sym_f64] = ACTIONS(2785), + [anon_sym_bool] = ACTIONS(2785), + [anon_sym_str] = ACTIONS(2785), + [anon_sym_char] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2783), + [anon_sym_COLON_COLON] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2783), + [anon_sym_POUND] = ACTIONS(2783), + [anon_sym_LT] = ACTIONS(2783), + [anon_sym_PIPE] = ACTIONS(2783), + [anon_sym_SQUOTE] = ACTIONS(2785), + [anon_sym_async] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_const] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), + [anon_sym_fn] = ACTIONS(2785), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_impl] = ACTIONS(2785), + [anon_sym_let] = ACTIONS(2785), + [anon_sym_loop] = ACTIONS(2785), + [anon_sym_match] = ACTIONS(2785), + [anon_sym_mod] = ACTIONS(2785), + [anon_sym_pub] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_struct] = ACTIONS(2785), + [anon_sym_trait] = ACTIONS(2785), + [anon_sym_type] = ACTIONS(2785), + [anon_sym_union] = ACTIONS(2785), + [anon_sym_unsafe] = ACTIONS(2785), + [anon_sym_use] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_extern] = ACTIONS(2785), + [anon_sym_DOT_DOT] = ACTIONS(2783), + [anon_sym_yield] = ACTIONS(2785), + [anon_sym_move] = ACTIONS(2785), + [anon_sym_try] = ACTIONS(2785), + [sym_integer_literal] = ACTIONS(2783), + [aux_sym_string_literal_token1] = ACTIONS(2783), + [sym_char_literal] = ACTIONS(2783), + [anon_sym_true] = ACTIONS(2785), + [anon_sym_false] = ACTIONS(2785), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2785), + [sym_super] = ACTIONS(2785), + [sym_crate] = ACTIONS(2785), + [sym_metavariable] = ACTIONS(2783), + [sym_raw_string_literal] = ACTIONS(2783), + [sym_float_literal] = ACTIONS(2783), }, [743] = { [sym_line_comment] = STATE(743), [sym_block_comment] = STATE(743), - [ts_builtin_sym_end] = ACTIONS(2758), - [sym_identifier] = ACTIONS(2760), - [anon_sym_SEMI] = ACTIONS(2758), - [anon_sym_macro_rules_BANG] = ACTIONS(2758), - [anon_sym_LPAREN] = ACTIONS(2758), - [anon_sym_LBRACK] = ACTIONS(2758), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_RBRACE] = ACTIONS(2758), - [anon_sym_STAR] = ACTIONS(2758), - [anon_sym_u8] = ACTIONS(2760), - [anon_sym_i8] = ACTIONS(2760), - [anon_sym_u16] = ACTIONS(2760), - [anon_sym_i16] = ACTIONS(2760), - [anon_sym_u32] = ACTIONS(2760), - [anon_sym_i32] = ACTIONS(2760), - [anon_sym_u64] = ACTIONS(2760), - [anon_sym_i64] = ACTIONS(2760), - [anon_sym_u128] = ACTIONS(2760), - [anon_sym_i128] = ACTIONS(2760), - [anon_sym_isize] = ACTIONS(2760), - [anon_sym_usize] = ACTIONS(2760), - [anon_sym_f32] = ACTIONS(2760), - [anon_sym_f64] = ACTIONS(2760), - [anon_sym_bool] = ACTIONS(2760), - [anon_sym_str] = ACTIONS(2760), - [anon_sym_char] = ACTIONS(2760), - [anon_sym_DASH] = ACTIONS(2758), - [anon_sym_COLON_COLON] = ACTIONS(2758), - [anon_sym_BANG] = ACTIONS(2758), - [anon_sym_AMP] = ACTIONS(2758), - [anon_sym_POUND] = ACTIONS(2758), - [anon_sym_LT] = ACTIONS(2758), - [anon_sym_PIPE] = ACTIONS(2758), - [anon_sym_SQUOTE] = ACTIONS(2760), - [anon_sym_async] = ACTIONS(2760), - [anon_sym_break] = ACTIONS(2760), - [anon_sym_const] = ACTIONS(2760), - [anon_sym_continue] = ACTIONS(2760), - [anon_sym_default] = ACTIONS(2760), - [anon_sym_enum] = ACTIONS(2760), - [anon_sym_fn] = ACTIONS(2760), - [anon_sym_for] = ACTIONS(2760), - [anon_sym_if] = ACTIONS(2760), - [anon_sym_impl] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2760), - [anon_sym_loop] = ACTIONS(2760), - [anon_sym_match] = ACTIONS(2760), - [anon_sym_mod] = ACTIONS(2760), - [anon_sym_pub] = ACTIONS(2760), - [anon_sym_return] = ACTIONS(2760), - [anon_sym_static] = ACTIONS(2760), - [anon_sym_struct] = ACTIONS(2760), - [anon_sym_trait] = ACTIONS(2760), - [anon_sym_type] = ACTIONS(2760), - [anon_sym_union] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2760), - [anon_sym_use] = ACTIONS(2760), - [anon_sym_while] = ACTIONS(2760), - [anon_sym_extern] = ACTIONS(2760), - [anon_sym_DOT_DOT] = ACTIONS(2758), - [anon_sym_yield] = ACTIONS(2760), - [anon_sym_move] = ACTIONS(2760), - [anon_sym_try] = ACTIONS(2760), - [sym_integer_literal] = ACTIONS(2758), - [aux_sym_string_literal_token1] = ACTIONS(2758), - [sym_char_literal] = ACTIONS(2758), - [anon_sym_true] = ACTIONS(2760), - [anon_sym_false] = ACTIONS(2760), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2760), - [sym_super] = ACTIONS(2760), - [sym_crate] = ACTIONS(2760), - [sym_metavariable] = ACTIONS(2758), - [sym_raw_string_literal] = ACTIONS(2758), - [sym_float_literal] = ACTIONS(2758), + [ts_builtin_sym_end] = ACTIONS(2787), + [sym_identifier] = ACTIONS(2789), + [anon_sym_SEMI] = ACTIONS(2787), + [anon_sym_macro_rules_BANG] = ACTIONS(2787), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_RBRACE] = ACTIONS(2787), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_u8] = ACTIONS(2789), + [anon_sym_i8] = ACTIONS(2789), + [anon_sym_u16] = ACTIONS(2789), + [anon_sym_i16] = ACTIONS(2789), + [anon_sym_u32] = ACTIONS(2789), + [anon_sym_i32] = ACTIONS(2789), + [anon_sym_u64] = ACTIONS(2789), + [anon_sym_i64] = ACTIONS(2789), + [anon_sym_u128] = ACTIONS(2789), + [anon_sym_i128] = ACTIONS(2789), + [anon_sym_isize] = ACTIONS(2789), + [anon_sym_usize] = ACTIONS(2789), + [anon_sym_f32] = ACTIONS(2789), + [anon_sym_f64] = ACTIONS(2789), + [anon_sym_bool] = ACTIONS(2789), + [anon_sym_str] = ACTIONS(2789), + [anon_sym_char] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2787), + [anon_sym_COLON_COLON] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2787), + [anon_sym_POUND] = ACTIONS(2787), + [anon_sym_LT] = ACTIONS(2787), + [anon_sym_PIPE] = ACTIONS(2787), + [anon_sym_SQUOTE] = ACTIONS(2789), + [anon_sym_async] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_const] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_fn] = ACTIONS(2789), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_impl] = ACTIONS(2789), + [anon_sym_let] = ACTIONS(2789), + [anon_sym_loop] = ACTIONS(2789), + [anon_sym_match] = ACTIONS(2789), + [anon_sym_mod] = ACTIONS(2789), + [anon_sym_pub] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_struct] = ACTIONS(2789), + [anon_sym_trait] = ACTIONS(2789), + [anon_sym_type] = ACTIONS(2789), + [anon_sym_union] = ACTIONS(2789), + [anon_sym_unsafe] = ACTIONS(2789), + [anon_sym_use] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym_DOT_DOT] = ACTIONS(2787), + [anon_sym_yield] = ACTIONS(2789), + [anon_sym_move] = ACTIONS(2789), + [anon_sym_try] = ACTIONS(2789), + [sym_integer_literal] = ACTIONS(2787), + [aux_sym_string_literal_token1] = ACTIONS(2787), + [sym_char_literal] = ACTIONS(2787), + [anon_sym_true] = ACTIONS(2789), + [anon_sym_false] = ACTIONS(2789), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2789), + [sym_super] = ACTIONS(2789), + [sym_crate] = ACTIONS(2789), + [sym_metavariable] = ACTIONS(2787), + [sym_raw_string_literal] = ACTIONS(2787), + [sym_float_literal] = ACTIONS(2787), }, [744] = { [sym_line_comment] = STATE(744), [sym_block_comment] = STATE(744), - [ts_builtin_sym_end] = ACTIONS(2762), - [sym_identifier] = ACTIONS(2764), - [anon_sym_SEMI] = ACTIONS(2762), - [anon_sym_macro_rules_BANG] = ACTIONS(2762), - [anon_sym_LPAREN] = ACTIONS(2762), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_LBRACE] = ACTIONS(2762), - [anon_sym_RBRACE] = ACTIONS(2762), - [anon_sym_STAR] = ACTIONS(2762), - [anon_sym_u8] = ACTIONS(2764), - [anon_sym_i8] = ACTIONS(2764), - [anon_sym_u16] = ACTIONS(2764), - [anon_sym_i16] = ACTIONS(2764), - [anon_sym_u32] = ACTIONS(2764), - [anon_sym_i32] = ACTIONS(2764), - [anon_sym_u64] = ACTIONS(2764), - [anon_sym_i64] = ACTIONS(2764), - [anon_sym_u128] = ACTIONS(2764), - [anon_sym_i128] = ACTIONS(2764), - [anon_sym_isize] = ACTIONS(2764), - [anon_sym_usize] = ACTIONS(2764), - [anon_sym_f32] = ACTIONS(2764), - [anon_sym_f64] = ACTIONS(2764), - [anon_sym_bool] = ACTIONS(2764), - [anon_sym_str] = ACTIONS(2764), - [anon_sym_char] = ACTIONS(2764), - [anon_sym_DASH] = ACTIONS(2762), - [anon_sym_COLON_COLON] = ACTIONS(2762), - [anon_sym_BANG] = ACTIONS(2762), - [anon_sym_AMP] = ACTIONS(2762), - [anon_sym_POUND] = ACTIONS(2762), - [anon_sym_LT] = ACTIONS(2762), - [anon_sym_PIPE] = ACTIONS(2762), - [anon_sym_SQUOTE] = ACTIONS(2764), - [anon_sym_async] = ACTIONS(2764), - [anon_sym_break] = ACTIONS(2764), - [anon_sym_const] = ACTIONS(2764), - [anon_sym_continue] = ACTIONS(2764), - [anon_sym_default] = ACTIONS(2764), - [anon_sym_enum] = ACTIONS(2764), - [anon_sym_fn] = ACTIONS(2764), - [anon_sym_for] = ACTIONS(2764), - [anon_sym_if] = ACTIONS(2764), - [anon_sym_impl] = ACTIONS(2764), - [anon_sym_let] = ACTIONS(2764), - [anon_sym_loop] = ACTIONS(2764), - [anon_sym_match] = ACTIONS(2764), - [anon_sym_mod] = ACTIONS(2764), - [anon_sym_pub] = ACTIONS(2764), - [anon_sym_return] = ACTIONS(2764), - [anon_sym_static] = ACTIONS(2764), - [anon_sym_struct] = ACTIONS(2764), - [anon_sym_trait] = ACTIONS(2764), - [anon_sym_type] = ACTIONS(2764), - [anon_sym_union] = ACTIONS(2764), - [anon_sym_unsafe] = ACTIONS(2764), - [anon_sym_use] = ACTIONS(2764), - [anon_sym_while] = ACTIONS(2764), - [anon_sym_extern] = ACTIONS(2764), - [anon_sym_DOT_DOT] = ACTIONS(2762), - [anon_sym_yield] = ACTIONS(2764), - [anon_sym_move] = ACTIONS(2764), - [anon_sym_try] = ACTIONS(2764), - [sym_integer_literal] = ACTIONS(2762), - [aux_sym_string_literal_token1] = ACTIONS(2762), - [sym_char_literal] = ACTIONS(2762), - [anon_sym_true] = ACTIONS(2764), - [anon_sym_false] = ACTIONS(2764), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2764), - [sym_super] = ACTIONS(2764), - [sym_crate] = ACTIONS(2764), - [sym_metavariable] = ACTIONS(2762), - [sym_raw_string_literal] = ACTIONS(2762), - [sym_float_literal] = ACTIONS(2762), + [ts_builtin_sym_end] = ACTIONS(2791), + [sym_identifier] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2791), + [anon_sym_macro_rules_BANG] = ACTIONS(2791), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_RBRACE] = ACTIONS(2791), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_u8] = ACTIONS(2793), + [anon_sym_i8] = ACTIONS(2793), + [anon_sym_u16] = ACTIONS(2793), + [anon_sym_i16] = ACTIONS(2793), + [anon_sym_u32] = ACTIONS(2793), + [anon_sym_i32] = ACTIONS(2793), + [anon_sym_u64] = ACTIONS(2793), + [anon_sym_i64] = ACTIONS(2793), + [anon_sym_u128] = ACTIONS(2793), + [anon_sym_i128] = ACTIONS(2793), + [anon_sym_isize] = ACTIONS(2793), + [anon_sym_usize] = ACTIONS(2793), + [anon_sym_f32] = ACTIONS(2793), + [anon_sym_f64] = ACTIONS(2793), + [anon_sym_bool] = ACTIONS(2793), + [anon_sym_str] = ACTIONS(2793), + [anon_sym_char] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2791), + [anon_sym_COLON_COLON] = ACTIONS(2791), + [anon_sym_BANG] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2791), + [anon_sym_POUND] = ACTIONS(2791), + [anon_sym_LT] = ACTIONS(2791), + [anon_sym_PIPE] = ACTIONS(2791), + [anon_sym_SQUOTE] = ACTIONS(2793), + [anon_sym_async] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_const] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), + [anon_sym_fn] = ACTIONS(2793), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_impl] = ACTIONS(2793), + [anon_sym_let] = ACTIONS(2793), + [anon_sym_loop] = ACTIONS(2793), + [anon_sym_match] = ACTIONS(2793), + [anon_sym_mod] = ACTIONS(2793), + [anon_sym_pub] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_struct] = ACTIONS(2793), + [anon_sym_trait] = ACTIONS(2793), + [anon_sym_type] = ACTIONS(2793), + [anon_sym_union] = ACTIONS(2793), + [anon_sym_unsafe] = ACTIONS(2793), + [anon_sym_use] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(2793), + [anon_sym_DOT_DOT] = ACTIONS(2791), + [anon_sym_yield] = ACTIONS(2793), + [anon_sym_move] = ACTIONS(2793), + [anon_sym_try] = ACTIONS(2793), + [sym_integer_literal] = ACTIONS(2791), + [aux_sym_string_literal_token1] = ACTIONS(2791), + [sym_char_literal] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(2793), + [anon_sym_false] = ACTIONS(2793), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2793), + [sym_super] = ACTIONS(2793), + [sym_crate] = ACTIONS(2793), + [sym_metavariable] = ACTIONS(2791), + [sym_raw_string_literal] = ACTIONS(2791), + [sym_float_literal] = ACTIONS(2791), }, [745] = { [sym_line_comment] = STATE(745), [sym_block_comment] = STATE(745), - [ts_builtin_sym_end] = ACTIONS(2766), - [sym_identifier] = ACTIONS(2768), - [anon_sym_SEMI] = ACTIONS(2766), - [anon_sym_macro_rules_BANG] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_u8] = ACTIONS(2768), - [anon_sym_i8] = ACTIONS(2768), - [anon_sym_u16] = ACTIONS(2768), - [anon_sym_i16] = ACTIONS(2768), - [anon_sym_u32] = ACTIONS(2768), - [anon_sym_i32] = ACTIONS(2768), - [anon_sym_u64] = ACTIONS(2768), - [anon_sym_i64] = ACTIONS(2768), - [anon_sym_u128] = ACTIONS(2768), - [anon_sym_i128] = ACTIONS(2768), - [anon_sym_isize] = ACTIONS(2768), - [anon_sym_usize] = ACTIONS(2768), - [anon_sym_f32] = ACTIONS(2768), - [anon_sym_f64] = ACTIONS(2768), - [anon_sym_bool] = ACTIONS(2768), - [anon_sym_str] = ACTIONS(2768), - [anon_sym_char] = ACTIONS(2768), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_COLON_COLON] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_POUND] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_SQUOTE] = ACTIONS(2768), - [anon_sym_async] = ACTIONS(2768), - [anon_sym_break] = ACTIONS(2768), - [anon_sym_const] = ACTIONS(2768), - [anon_sym_continue] = ACTIONS(2768), - [anon_sym_default] = ACTIONS(2768), - [anon_sym_enum] = ACTIONS(2768), - [anon_sym_fn] = ACTIONS(2768), - [anon_sym_for] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2768), - [anon_sym_impl] = ACTIONS(2768), - [anon_sym_let] = ACTIONS(2768), - [anon_sym_loop] = ACTIONS(2768), - [anon_sym_match] = ACTIONS(2768), - [anon_sym_mod] = ACTIONS(2768), - [anon_sym_pub] = ACTIONS(2768), - [anon_sym_return] = ACTIONS(2768), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2768), - [anon_sym_trait] = ACTIONS(2768), - [anon_sym_type] = ACTIONS(2768), - [anon_sym_union] = ACTIONS(2768), - [anon_sym_unsafe] = ACTIONS(2768), - [anon_sym_use] = ACTIONS(2768), - [anon_sym_while] = ACTIONS(2768), - [anon_sym_extern] = ACTIONS(2768), - [anon_sym_DOT_DOT] = ACTIONS(2766), - [anon_sym_yield] = ACTIONS(2768), - [anon_sym_move] = ACTIONS(2768), - [anon_sym_try] = ACTIONS(2768), - [sym_integer_literal] = ACTIONS(2766), - [aux_sym_string_literal_token1] = ACTIONS(2766), - [sym_char_literal] = ACTIONS(2766), - [anon_sym_true] = ACTIONS(2768), - [anon_sym_false] = ACTIONS(2768), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2768), - [sym_super] = ACTIONS(2768), - [sym_crate] = ACTIONS(2768), - [sym_metavariable] = ACTIONS(2766), - [sym_raw_string_literal] = ACTIONS(2766), - [sym_float_literal] = ACTIONS(2766), + [ts_builtin_sym_end] = ACTIONS(2795), + [sym_identifier] = ACTIONS(2797), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_macro_rules_BANG] = ACTIONS(2795), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_RBRACE] = ACTIONS(2795), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_u8] = ACTIONS(2797), + [anon_sym_i8] = ACTIONS(2797), + [anon_sym_u16] = ACTIONS(2797), + [anon_sym_i16] = ACTIONS(2797), + [anon_sym_u32] = ACTIONS(2797), + [anon_sym_i32] = ACTIONS(2797), + [anon_sym_u64] = ACTIONS(2797), + [anon_sym_i64] = ACTIONS(2797), + [anon_sym_u128] = ACTIONS(2797), + [anon_sym_i128] = ACTIONS(2797), + [anon_sym_isize] = ACTIONS(2797), + [anon_sym_usize] = ACTIONS(2797), + [anon_sym_f32] = ACTIONS(2797), + [anon_sym_f64] = ACTIONS(2797), + [anon_sym_bool] = ACTIONS(2797), + [anon_sym_str] = ACTIONS(2797), + [anon_sym_char] = ACTIONS(2797), + [anon_sym_DASH] = ACTIONS(2795), + [anon_sym_COLON_COLON] = ACTIONS(2795), + [anon_sym_BANG] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2795), + [anon_sym_POUND] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2795), + [anon_sym_PIPE] = ACTIONS(2795), + [anon_sym_SQUOTE] = ACTIONS(2797), + [anon_sym_async] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_const] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_default] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [anon_sym_fn] = ACTIONS(2797), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_impl] = ACTIONS(2797), + [anon_sym_let] = ACTIONS(2797), + [anon_sym_loop] = ACTIONS(2797), + [anon_sym_match] = ACTIONS(2797), + [anon_sym_mod] = ACTIONS(2797), + [anon_sym_pub] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_struct] = ACTIONS(2797), + [anon_sym_trait] = ACTIONS(2797), + [anon_sym_type] = ACTIONS(2797), + [anon_sym_union] = ACTIONS(2797), + [anon_sym_unsafe] = ACTIONS(2797), + [anon_sym_use] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_extern] = ACTIONS(2797), + [anon_sym_DOT_DOT] = ACTIONS(2795), + [anon_sym_yield] = ACTIONS(2797), + [anon_sym_move] = ACTIONS(2797), + [anon_sym_try] = ACTIONS(2797), + [sym_integer_literal] = ACTIONS(2795), + [aux_sym_string_literal_token1] = ACTIONS(2795), + [sym_char_literal] = ACTIONS(2795), + [anon_sym_true] = ACTIONS(2797), + [anon_sym_false] = ACTIONS(2797), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2797), + [sym_super] = ACTIONS(2797), + [sym_crate] = ACTIONS(2797), + [sym_metavariable] = ACTIONS(2795), + [sym_raw_string_literal] = ACTIONS(2795), + [sym_float_literal] = ACTIONS(2795), }, [746] = { [sym_line_comment] = STATE(746), [sym_block_comment] = STATE(746), - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym_macro_rules_BANG] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_RBRACE] = ACTIONS(2770), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_u8] = ACTIONS(2772), - [anon_sym_i8] = ACTIONS(2772), - [anon_sym_u16] = ACTIONS(2772), - [anon_sym_i16] = ACTIONS(2772), - [anon_sym_u32] = ACTIONS(2772), - [anon_sym_i32] = ACTIONS(2772), - [anon_sym_u64] = ACTIONS(2772), - [anon_sym_i64] = ACTIONS(2772), - [anon_sym_u128] = ACTIONS(2772), - [anon_sym_i128] = ACTIONS(2772), - [anon_sym_isize] = ACTIONS(2772), - [anon_sym_usize] = ACTIONS(2772), - [anon_sym_f32] = ACTIONS(2772), - [anon_sym_f64] = ACTIONS(2772), - [anon_sym_bool] = ACTIONS(2772), - [anon_sym_str] = ACTIONS(2772), - [anon_sym_char] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2770), - [anon_sym_COLON_COLON] = ACTIONS(2770), - [anon_sym_BANG] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2770), - [anon_sym_POUND] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_SQUOTE] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_default] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_impl] = ACTIONS(2772), - [anon_sym_let] = ACTIONS(2772), - [anon_sym_loop] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_mod] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_static] = ACTIONS(2772), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_trait] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_use] = ACTIONS(2772), - [anon_sym_while] = ACTIONS(2772), - [anon_sym_extern] = ACTIONS(2772), - [anon_sym_DOT_DOT] = ACTIONS(2770), - [anon_sym_yield] = ACTIONS(2772), - [anon_sym_move] = ACTIONS(2772), - [anon_sym_try] = ACTIONS(2772), - [sym_integer_literal] = ACTIONS(2770), - [aux_sym_string_literal_token1] = ACTIONS(2770), - [sym_char_literal] = ACTIONS(2770), - [anon_sym_true] = ACTIONS(2772), - [anon_sym_false] = ACTIONS(2772), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2772), - [sym_super] = ACTIONS(2772), - [sym_crate] = ACTIONS(2772), - [sym_metavariable] = ACTIONS(2770), - [sym_raw_string_literal] = ACTIONS(2770), - [sym_float_literal] = ACTIONS(2770), + [ts_builtin_sym_end] = ACTIONS(2799), + [sym_identifier] = ACTIONS(2801), + [anon_sym_SEMI] = ACTIONS(2799), + [anon_sym_macro_rules_BANG] = ACTIONS(2799), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_RBRACE] = ACTIONS(2799), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_u8] = ACTIONS(2801), + [anon_sym_i8] = ACTIONS(2801), + [anon_sym_u16] = ACTIONS(2801), + [anon_sym_i16] = ACTIONS(2801), + [anon_sym_u32] = ACTIONS(2801), + [anon_sym_i32] = ACTIONS(2801), + [anon_sym_u64] = ACTIONS(2801), + [anon_sym_i64] = ACTIONS(2801), + [anon_sym_u128] = ACTIONS(2801), + [anon_sym_i128] = ACTIONS(2801), + [anon_sym_isize] = ACTIONS(2801), + [anon_sym_usize] = ACTIONS(2801), + [anon_sym_f32] = ACTIONS(2801), + [anon_sym_f64] = ACTIONS(2801), + [anon_sym_bool] = ACTIONS(2801), + [anon_sym_str] = ACTIONS(2801), + [anon_sym_char] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2799), + [anon_sym_COLON_COLON] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2799), + [anon_sym_POUND] = ACTIONS(2799), + [anon_sym_LT] = ACTIONS(2799), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SQUOTE] = ACTIONS(2801), + [anon_sym_async] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_const] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_default] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_fn] = ACTIONS(2801), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_impl] = ACTIONS(2801), + [anon_sym_let] = ACTIONS(2801), + [anon_sym_loop] = ACTIONS(2801), + [anon_sym_match] = ACTIONS(2801), + [anon_sym_mod] = ACTIONS(2801), + [anon_sym_pub] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_struct] = ACTIONS(2801), + [anon_sym_trait] = ACTIONS(2801), + [anon_sym_type] = ACTIONS(2801), + [anon_sym_union] = ACTIONS(2801), + [anon_sym_unsafe] = ACTIONS(2801), + [anon_sym_use] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym_DOT_DOT] = ACTIONS(2799), + [anon_sym_yield] = ACTIONS(2801), + [anon_sym_move] = ACTIONS(2801), + [anon_sym_try] = ACTIONS(2801), + [sym_integer_literal] = ACTIONS(2799), + [aux_sym_string_literal_token1] = ACTIONS(2799), + [sym_char_literal] = ACTIONS(2799), + [anon_sym_true] = ACTIONS(2801), + [anon_sym_false] = ACTIONS(2801), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2801), + [sym_super] = ACTIONS(2801), + [sym_crate] = ACTIONS(2801), + [sym_metavariable] = ACTIONS(2799), + [sym_raw_string_literal] = ACTIONS(2799), + [sym_float_literal] = ACTIONS(2799), }, [747] = { + [sym_attribute_item] = STATE(1461), + [sym_inner_attribute_item] = STATE(1461), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_match_arm] = STATE(1462), + [sym_match_pattern] = STATE(3396), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), [sym_line_comment] = STATE(747), [sym_block_comment] = STATE(747), - [ts_builtin_sym_end] = ACTIONS(2774), - [sym_identifier] = ACTIONS(2776), - [anon_sym_SEMI] = ACTIONS(2774), - [anon_sym_macro_rules_BANG] = ACTIONS(2774), - [anon_sym_LPAREN] = ACTIONS(2774), - [anon_sym_LBRACK] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_RBRACE] = ACTIONS(2774), - [anon_sym_STAR] = ACTIONS(2774), - [anon_sym_u8] = ACTIONS(2776), - [anon_sym_i8] = ACTIONS(2776), - [anon_sym_u16] = ACTIONS(2776), - [anon_sym_i16] = ACTIONS(2776), - [anon_sym_u32] = ACTIONS(2776), - [anon_sym_i32] = ACTIONS(2776), - [anon_sym_u64] = ACTIONS(2776), - [anon_sym_i64] = ACTIONS(2776), - [anon_sym_u128] = ACTIONS(2776), - [anon_sym_i128] = ACTIONS(2776), - [anon_sym_isize] = ACTIONS(2776), - [anon_sym_usize] = ACTIONS(2776), - [anon_sym_f32] = ACTIONS(2776), - [anon_sym_f64] = ACTIONS(2776), - [anon_sym_bool] = ACTIONS(2776), - [anon_sym_str] = ACTIONS(2776), - [anon_sym_char] = ACTIONS(2776), - [anon_sym_DASH] = ACTIONS(2774), - [anon_sym_COLON_COLON] = ACTIONS(2774), - [anon_sym_BANG] = ACTIONS(2774), - [anon_sym_AMP] = ACTIONS(2774), - [anon_sym_POUND] = ACTIONS(2774), - [anon_sym_LT] = ACTIONS(2774), - [anon_sym_PIPE] = ACTIONS(2774), - [anon_sym_SQUOTE] = ACTIONS(2776), - [anon_sym_async] = ACTIONS(2776), - [anon_sym_break] = ACTIONS(2776), - [anon_sym_const] = ACTIONS(2776), - [anon_sym_continue] = ACTIONS(2776), - [anon_sym_default] = ACTIONS(2776), - [anon_sym_enum] = ACTIONS(2776), - [anon_sym_fn] = ACTIONS(2776), - [anon_sym_for] = ACTIONS(2776), - [anon_sym_if] = ACTIONS(2776), - [anon_sym_impl] = ACTIONS(2776), - [anon_sym_let] = ACTIONS(2776), - [anon_sym_loop] = ACTIONS(2776), - [anon_sym_match] = ACTIONS(2776), - [anon_sym_mod] = ACTIONS(2776), - [anon_sym_pub] = ACTIONS(2776), - [anon_sym_return] = ACTIONS(2776), - [anon_sym_static] = ACTIONS(2776), - [anon_sym_struct] = ACTIONS(2776), - [anon_sym_trait] = ACTIONS(2776), - [anon_sym_type] = ACTIONS(2776), - [anon_sym_union] = ACTIONS(2776), - [anon_sym_unsafe] = ACTIONS(2776), - [anon_sym_use] = ACTIONS(2776), - [anon_sym_while] = ACTIONS(2776), - [anon_sym_extern] = ACTIONS(2776), - [anon_sym_DOT_DOT] = ACTIONS(2774), - [anon_sym_yield] = ACTIONS(2776), - [anon_sym_move] = ACTIONS(2776), - [anon_sym_try] = ACTIONS(2776), - [sym_integer_literal] = ACTIONS(2774), - [aux_sym_string_literal_token1] = ACTIONS(2774), - [sym_char_literal] = ACTIONS(2774), - [anon_sym_true] = ACTIONS(2776), - [anon_sym_false] = ACTIONS(2776), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2776), - [sym_super] = ACTIONS(2776), - [sym_crate] = ACTIONS(2776), - [sym_metavariable] = ACTIONS(2774), - [sym_raw_string_literal] = ACTIONS(2774), - [sym_float_literal] = ACTIONS(2774), + [aux_sym_match_block_repeat1] = STATE(747), + [aux_sym_match_arm_repeat1] = STATE(750), + [sym_identifier] = ACTIONS(2803), + [anon_sym_LPAREN] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(2809), + [anon_sym_u8] = ACTIONS(2812), + [anon_sym_i8] = ACTIONS(2812), + [anon_sym_u16] = ACTIONS(2812), + [anon_sym_i16] = ACTIONS(2812), + [anon_sym_u32] = ACTIONS(2812), + [anon_sym_i32] = ACTIONS(2812), + [anon_sym_u64] = ACTIONS(2812), + [anon_sym_i64] = ACTIONS(2812), + [anon_sym_u128] = ACTIONS(2812), + [anon_sym_i128] = ACTIONS(2812), + [anon_sym_isize] = ACTIONS(2812), + [anon_sym_usize] = ACTIONS(2812), + [anon_sym_f32] = ACTIONS(2812), + [anon_sym_f64] = ACTIONS(2812), + [anon_sym_bool] = ACTIONS(2812), + [anon_sym_str] = ACTIONS(2812), + [anon_sym_char] = ACTIONS(2812), + [anon_sym__] = ACTIONS(2815), + [anon_sym_DASH] = ACTIONS(2818), + [anon_sym_COLON_COLON] = ACTIONS(2821), + [anon_sym_AMP] = ACTIONS(2824), + [anon_sym_POUND] = ACTIONS(2827), + [anon_sym_LT] = ACTIONS(2830), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_const] = ACTIONS(2836), + [anon_sym_default] = ACTIONS(2839), + [anon_sym_union] = ACTIONS(2839), + [anon_sym_ref] = ACTIONS(2842), + [sym_mutable_specifier] = ACTIONS(2845), + [anon_sym_DOT_DOT] = ACTIONS(2848), + [sym_integer_literal] = ACTIONS(2851), + [aux_sym_string_literal_token1] = ACTIONS(2854), + [sym_char_literal] = ACTIONS(2851), + [anon_sym_true] = ACTIONS(2857), + [anon_sym_false] = ACTIONS(2857), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2860), + [sym_super] = ACTIONS(2860), + [sym_crate] = ACTIONS(2860), + [sym_metavariable] = ACTIONS(2863), + [sym_raw_string_literal] = ACTIONS(2851), + [sym_float_literal] = ACTIONS(2851), }, [748] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym_closure_expression] = STATE(2740), + [sym_closure_parameters] = STATE(132), + [sym__pattern] = STATE(2683), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(748), [sym_block_comment] = STATE(748), - [ts_builtin_sym_end] = ACTIONS(2778), - [sym_identifier] = ACTIONS(2780), - [anon_sym_SEMI] = ACTIONS(2778), - [anon_sym_macro_rules_BANG] = ACTIONS(2778), - [anon_sym_LPAREN] = ACTIONS(2778), - [anon_sym_LBRACK] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_RBRACE] = ACTIONS(2778), - [anon_sym_STAR] = ACTIONS(2778), - [anon_sym_u8] = ACTIONS(2780), - [anon_sym_i8] = ACTIONS(2780), - [anon_sym_u16] = ACTIONS(2780), - [anon_sym_i16] = ACTIONS(2780), - [anon_sym_u32] = ACTIONS(2780), - [anon_sym_i32] = ACTIONS(2780), - [anon_sym_u64] = ACTIONS(2780), - [anon_sym_i64] = ACTIONS(2780), - [anon_sym_u128] = ACTIONS(2780), - [anon_sym_i128] = ACTIONS(2780), - [anon_sym_isize] = ACTIONS(2780), - [anon_sym_usize] = ACTIONS(2780), - [anon_sym_f32] = ACTIONS(2780), - [anon_sym_f64] = ACTIONS(2780), - [anon_sym_bool] = ACTIONS(2780), - [anon_sym_str] = ACTIONS(2780), - [anon_sym_char] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2778), - [anon_sym_COLON_COLON] = ACTIONS(2778), - [anon_sym_BANG] = ACTIONS(2778), - [anon_sym_AMP] = ACTIONS(2778), - [anon_sym_POUND] = ACTIONS(2778), - [anon_sym_LT] = ACTIONS(2778), - [anon_sym_PIPE] = ACTIONS(2778), - [anon_sym_SQUOTE] = ACTIONS(2780), - [anon_sym_async] = ACTIONS(2780), - [anon_sym_break] = ACTIONS(2780), - [anon_sym_const] = ACTIONS(2780), - [anon_sym_continue] = ACTIONS(2780), - [anon_sym_default] = ACTIONS(2780), - [anon_sym_enum] = ACTIONS(2780), - [anon_sym_fn] = ACTIONS(2780), - [anon_sym_for] = ACTIONS(2780), - [anon_sym_if] = ACTIONS(2780), - [anon_sym_impl] = ACTIONS(2780), - [anon_sym_let] = ACTIONS(2780), - [anon_sym_loop] = ACTIONS(2780), - [anon_sym_match] = ACTIONS(2780), - [anon_sym_mod] = ACTIONS(2780), - [anon_sym_pub] = ACTIONS(2780), - [anon_sym_return] = ACTIONS(2780), - [anon_sym_static] = ACTIONS(2780), - [anon_sym_struct] = ACTIONS(2780), - [anon_sym_trait] = ACTIONS(2780), - [anon_sym_type] = ACTIONS(2780), - [anon_sym_union] = ACTIONS(2780), - [anon_sym_unsafe] = ACTIONS(2780), - [anon_sym_use] = ACTIONS(2780), - [anon_sym_while] = ACTIONS(2780), - [anon_sym_extern] = ACTIONS(2780), - [anon_sym_DOT_DOT] = ACTIONS(2778), - [anon_sym_yield] = ACTIONS(2780), - [anon_sym_move] = ACTIONS(2780), - [anon_sym_try] = ACTIONS(2780), - [sym_integer_literal] = ACTIONS(2778), - [aux_sym_string_literal_token1] = ACTIONS(2778), - [sym_char_literal] = ACTIONS(2778), - [anon_sym_true] = ACTIONS(2780), - [anon_sym_false] = ACTIONS(2780), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2780), - [sym_super] = ACTIONS(2780), - [sym_crate] = ACTIONS(2780), - [sym_metavariable] = ACTIONS(2778), - [sym_raw_string_literal] = ACTIONS(2778), - [sym_float_literal] = ACTIONS(2778), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(2876), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [749] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym_closure_expression] = STATE(2741), + [sym_closure_parameters] = STATE(132), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(749), [sym_block_comment] = STATE(749), - [ts_builtin_sym_end] = ACTIONS(2782), - [sym_identifier] = ACTIONS(2784), - [anon_sym_SEMI] = ACTIONS(2782), - [anon_sym_macro_rules_BANG] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_RBRACE] = ACTIONS(2782), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_u8] = ACTIONS(2784), - [anon_sym_i8] = ACTIONS(2784), - [anon_sym_u16] = ACTIONS(2784), - [anon_sym_i16] = ACTIONS(2784), - [anon_sym_u32] = ACTIONS(2784), - [anon_sym_i32] = ACTIONS(2784), - [anon_sym_u64] = ACTIONS(2784), - [anon_sym_i64] = ACTIONS(2784), - [anon_sym_u128] = ACTIONS(2784), - [anon_sym_i128] = ACTIONS(2784), - [anon_sym_isize] = ACTIONS(2784), - [anon_sym_usize] = ACTIONS(2784), - [anon_sym_f32] = ACTIONS(2784), - [anon_sym_f64] = ACTIONS(2784), - [anon_sym_bool] = ACTIONS(2784), - [anon_sym_str] = ACTIONS(2784), - [anon_sym_char] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2782), - [anon_sym_COLON_COLON] = ACTIONS(2782), - [anon_sym_BANG] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2782), - [anon_sym_POUND] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2782), - [anon_sym_SQUOTE] = ACTIONS(2784), - [anon_sym_async] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_default] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_impl] = ACTIONS(2784), - [anon_sym_let] = ACTIONS(2784), - [anon_sym_loop] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_mod] = ACTIONS(2784), - [anon_sym_pub] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_static] = ACTIONS(2784), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_trait] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_union] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_use] = ACTIONS(2784), - [anon_sym_while] = ACTIONS(2784), - [anon_sym_extern] = ACTIONS(2784), - [anon_sym_DOT_DOT] = ACTIONS(2782), - [anon_sym_yield] = ACTIONS(2784), - [anon_sym_move] = ACTIONS(2784), - [anon_sym_try] = ACTIONS(2784), - [sym_integer_literal] = ACTIONS(2782), - [aux_sym_string_literal_token1] = ACTIONS(2782), - [sym_char_literal] = ACTIONS(2782), - [anon_sym_true] = ACTIONS(2784), - [anon_sym_false] = ACTIONS(2784), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2784), - [sym_super] = ACTIONS(2784), - [sym_crate] = ACTIONS(2784), - [sym_metavariable] = ACTIONS(2782), - [sym_raw_string_literal] = ACTIONS(2782), - [sym_float_literal] = ACTIONS(2782), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1132), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [750] = { + [sym_attribute_item] = STATE(1461), + [sym_inner_attribute_item] = STATE(1461), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_match_pattern] = STATE(3475), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), [sym_line_comment] = STATE(750), [sym_block_comment] = STATE(750), - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2788), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_macro_rules_BANG] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_RBRACE] = ACTIONS(2786), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_u8] = ACTIONS(2788), - [anon_sym_i8] = ACTIONS(2788), - [anon_sym_u16] = ACTIONS(2788), - [anon_sym_i16] = ACTIONS(2788), - [anon_sym_u32] = ACTIONS(2788), - [anon_sym_i32] = ACTIONS(2788), - [anon_sym_u64] = ACTIONS(2788), - [anon_sym_i64] = ACTIONS(2788), - [anon_sym_u128] = ACTIONS(2788), - [anon_sym_i128] = ACTIONS(2788), - [anon_sym_isize] = ACTIONS(2788), - [anon_sym_usize] = ACTIONS(2788), - [anon_sym_f32] = ACTIONS(2788), - [anon_sym_f64] = ACTIONS(2788), - [anon_sym_bool] = ACTIONS(2788), - [anon_sym_str] = ACTIONS(2788), - [anon_sym_char] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2786), - [anon_sym_COLON_COLON] = ACTIONS(2786), - [anon_sym_BANG] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2786), - [anon_sym_POUND] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2788), - [anon_sym_async] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_const] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_default] = ACTIONS(2788), - [anon_sym_enum] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_impl] = ACTIONS(2788), - [anon_sym_let] = ACTIONS(2788), - [anon_sym_loop] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_mod] = ACTIONS(2788), - [anon_sym_pub] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_static] = ACTIONS(2788), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_trait] = ACTIONS(2788), - [anon_sym_type] = ACTIONS(2788), - [anon_sym_union] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_use] = ACTIONS(2788), - [anon_sym_while] = ACTIONS(2788), - [anon_sym_extern] = ACTIONS(2788), - [anon_sym_DOT_DOT] = ACTIONS(2786), - [anon_sym_yield] = ACTIONS(2788), - [anon_sym_move] = ACTIONS(2788), - [anon_sym_try] = ACTIONS(2788), - [sym_integer_literal] = ACTIONS(2786), - [aux_sym_string_literal_token1] = ACTIONS(2786), - [sym_char_literal] = ACTIONS(2786), - [anon_sym_true] = ACTIONS(2788), - [anon_sym_false] = ACTIONS(2788), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2788), - [sym_super] = ACTIONS(2788), - [sym_crate] = ACTIONS(2788), - [sym_metavariable] = ACTIONS(2786), - [sym_raw_string_literal] = ACTIONS(2786), - [sym_float_literal] = ACTIONS(2786), + [aux_sym_match_arm_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), }, [751] = { + [sym_attribute_item] = STATE(1464), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_const_parameter] = STATE(2715), + [sym_constrained_type_parameter] = STATE(2714), + [sym_optional_type_parameter] = STATE(2715), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2781), + [sym_bracketed_type] = STATE(3453), + [sym_qualified_type] = STATE(3444), + [sym_lifetime] = STATE(2341), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(751), [sym_block_comment] = STATE(751), - [ts_builtin_sym_end] = ACTIONS(2790), - [sym_identifier] = ACTIONS(2792), - [anon_sym_SEMI] = ACTIONS(2790), - [anon_sym_macro_rules_BANG] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_RBRACE] = ACTIONS(2790), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_u8] = ACTIONS(2792), - [anon_sym_i8] = ACTIONS(2792), - [anon_sym_u16] = ACTIONS(2792), - [anon_sym_i16] = ACTIONS(2792), - [anon_sym_u32] = ACTIONS(2792), - [anon_sym_i32] = ACTIONS(2792), - [anon_sym_u64] = ACTIONS(2792), - [anon_sym_i64] = ACTIONS(2792), - [anon_sym_u128] = ACTIONS(2792), - [anon_sym_i128] = ACTIONS(2792), - [anon_sym_isize] = ACTIONS(2792), - [anon_sym_usize] = ACTIONS(2792), - [anon_sym_f32] = ACTIONS(2792), - [anon_sym_f64] = ACTIONS(2792), - [anon_sym_bool] = ACTIONS(2792), - [anon_sym_str] = ACTIONS(2792), - [anon_sym_char] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2790), - [anon_sym_COLON_COLON] = ACTIONS(2790), - [anon_sym_BANG] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2790), - [anon_sym_POUND] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2790), - [anon_sym_SQUOTE] = ACTIONS(2792), - [anon_sym_async] = ACTIONS(2792), - [anon_sym_break] = ACTIONS(2792), - [anon_sym_const] = ACTIONS(2792), - [anon_sym_continue] = ACTIONS(2792), - [anon_sym_default] = ACTIONS(2792), - [anon_sym_enum] = ACTIONS(2792), - [anon_sym_fn] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_impl] = ACTIONS(2792), - [anon_sym_let] = ACTIONS(2792), - [anon_sym_loop] = ACTIONS(2792), - [anon_sym_match] = ACTIONS(2792), - [anon_sym_mod] = ACTIONS(2792), - [anon_sym_pub] = ACTIONS(2792), - [anon_sym_return] = ACTIONS(2792), - [anon_sym_static] = ACTIONS(2792), - [anon_sym_struct] = ACTIONS(2792), - [anon_sym_trait] = ACTIONS(2792), - [anon_sym_type] = ACTIONS(2792), - [anon_sym_union] = ACTIONS(2792), - [anon_sym_unsafe] = ACTIONS(2792), - [anon_sym_use] = ACTIONS(2792), - [anon_sym_while] = ACTIONS(2792), - [anon_sym_extern] = ACTIONS(2792), - [anon_sym_DOT_DOT] = ACTIONS(2790), - [anon_sym_yield] = ACTIONS(2792), - [anon_sym_move] = ACTIONS(2792), - [anon_sym_try] = ACTIONS(2792), - [sym_integer_literal] = ACTIONS(2790), - [aux_sym_string_literal_token1] = ACTIONS(2790), - [sym_char_literal] = ACTIONS(2790), - [anon_sym_true] = ACTIONS(2792), - [anon_sym_false] = ACTIONS(2792), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2792), - [sym_super] = ACTIONS(2792), - [sym_crate] = ACTIONS(2792), - [sym_metavariable] = ACTIONS(2790), - [sym_raw_string_literal] = ACTIONS(2790), - [sym_float_literal] = ACTIONS(2790), + [aux_sym_enum_variant_list_repeat1] = STATE(2044), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2896), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(2898), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(2900), }, [752] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym_closure_expression] = STATE(3056), + [sym_closure_parameters] = STATE(132), + [sym__pattern] = STATE(2873), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(752), [sym_block_comment] = STATE(752), - [ts_builtin_sym_end] = ACTIONS(2794), - [sym_identifier] = ACTIONS(2796), - [anon_sym_SEMI] = ACTIONS(2794), - [anon_sym_macro_rules_BANG] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_RBRACE] = ACTIONS(2794), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_u8] = ACTIONS(2796), - [anon_sym_i8] = ACTIONS(2796), - [anon_sym_u16] = ACTIONS(2796), - [anon_sym_i16] = ACTIONS(2796), - [anon_sym_u32] = ACTIONS(2796), - [anon_sym_i32] = ACTIONS(2796), - [anon_sym_u64] = ACTIONS(2796), - [anon_sym_i64] = ACTIONS(2796), - [anon_sym_u128] = ACTIONS(2796), - [anon_sym_i128] = ACTIONS(2796), - [anon_sym_isize] = ACTIONS(2796), - [anon_sym_usize] = ACTIONS(2796), - [anon_sym_f32] = ACTIONS(2796), - [anon_sym_f64] = ACTIONS(2796), - [anon_sym_bool] = ACTIONS(2796), - [anon_sym_str] = ACTIONS(2796), - [anon_sym_char] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_COLON_COLON] = ACTIONS(2794), - [anon_sym_BANG] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2794), - [anon_sym_POUND] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2794), - [anon_sym_SQUOTE] = ACTIONS(2796), - [anon_sym_async] = ACTIONS(2796), - [anon_sym_break] = ACTIONS(2796), - [anon_sym_const] = ACTIONS(2796), - [anon_sym_continue] = ACTIONS(2796), - [anon_sym_default] = ACTIONS(2796), - [anon_sym_enum] = ACTIONS(2796), - [anon_sym_fn] = ACTIONS(2796), - [anon_sym_for] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_impl] = ACTIONS(2796), - [anon_sym_let] = ACTIONS(2796), - [anon_sym_loop] = ACTIONS(2796), - [anon_sym_match] = ACTIONS(2796), - [anon_sym_mod] = ACTIONS(2796), - [anon_sym_pub] = ACTIONS(2796), - [anon_sym_return] = ACTIONS(2796), - [anon_sym_static] = ACTIONS(2796), - [anon_sym_struct] = ACTIONS(2796), - [anon_sym_trait] = ACTIONS(2796), - [anon_sym_type] = ACTIONS(2796), - [anon_sym_union] = ACTIONS(2796), - [anon_sym_unsafe] = ACTIONS(2796), - [anon_sym_use] = ACTIONS(2796), - [anon_sym_while] = ACTIONS(2796), - [anon_sym_extern] = ACTIONS(2796), - [anon_sym_DOT_DOT] = ACTIONS(2794), - [anon_sym_yield] = ACTIONS(2796), - [anon_sym_move] = ACTIONS(2796), - [anon_sym_try] = ACTIONS(2796), - [sym_integer_literal] = ACTIONS(2794), - [aux_sym_string_literal_token1] = ACTIONS(2794), - [sym_char_literal] = ACTIONS(2794), - [anon_sym_true] = ACTIONS(2796), - [anon_sym_false] = ACTIONS(2796), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2796), - [sym_super] = ACTIONS(2796), - [sym_crate] = ACTIONS(2796), - [sym_metavariable] = ACTIONS(2794), - [sym_raw_string_literal] = ACTIONS(2794), - [sym_float_literal] = ACTIONS(2794), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2902), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [753] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym_closure_expression] = STATE(3056), + [sym_closure_parameters] = STATE(132), + [sym__pattern] = STATE(2873), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(753), [sym_block_comment] = STATE(753), - [ts_builtin_sym_end] = ACTIONS(2798), - [sym_identifier] = ACTIONS(2800), - [anon_sym_SEMI] = ACTIONS(2798), - [anon_sym_macro_rules_BANG] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_RBRACE] = ACTIONS(2798), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_u8] = ACTIONS(2800), - [anon_sym_i8] = ACTIONS(2800), - [anon_sym_u16] = ACTIONS(2800), - [anon_sym_i16] = ACTIONS(2800), - [anon_sym_u32] = ACTIONS(2800), - [anon_sym_i32] = ACTIONS(2800), - [anon_sym_u64] = ACTIONS(2800), - [anon_sym_i64] = ACTIONS(2800), - [anon_sym_u128] = ACTIONS(2800), - [anon_sym_i128] = ACTIONS(2800), - [anon_sym_isize] = ACTIONS(2800), - [anon_sym_usize] = ACTIONS(2800), - [anon_sym_f32] = ACTIONS(2800), - [anon_sym_f64] = ACTIONS(2800), - [anon_sym_bool] = ACTIONS(2800), - [anon_sym_str] = ACTIONS(2800), - [anon_sym_char] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2798), - [anon_sym_COLON_COLON] = ACTIONS(2798), - [anon_sym_BANG] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2798), - [anon_sym_POUND] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2798), - [anon_sym_SQUOTE] = ACTIONS(2800), - [anon_sym_async] = ACTIONS(2800), - [anon_sym_break] = ACTIONS(2800), - [anon_sym_const] = ACTIONS(2800), - [anon_sym_continue] = ACTIONS(2800), - [anon_sym_default] = ACTIONS(2800), - [anon_sym_enum] = ACTIONS(2800), - [anon_sym_fn] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_impl] = ACTIONS(2800), - [anon_sym_let] = ACTIONS(2800), - [anon_sym_loop] = ACTIONS(2800), - [anon_sym_match] = ACTIONS(2800), - [anon_sym_mod] = ACTIONS(2800), - [anon_sym_pub] = ACTIONS(2800), - [anon_sym_return] = ACTIONS(2800), - [anon_sym_static] = ACTIONS(2800), - [anon_sym_struct] = ACTIONS(2800), - [anon_sym_trait] = ACTIONS(2800), - [anon_sym_type] = ACTIONS(2800), - [anon_sym_union] = ACTIONS(2800), - [anon_sym_unsafe] = ACTIONS(2800), - [anon_sym_use] = ACTIONS(2800), - [anon_sym_while] = ACTIONS(2800), - [anon_sym_extern] = ACTIONS(2800), - [anon_sym_DOT_DOT] = ACTIONS(2798), - [anon_sym_yield] = ACTIONS(2800), - [anon_sym_move] = ACTIONS(2800), - [anon_sym_try] = ACTIONS(2800), - [sym_integer_literal] = ACTIONS(2798), - [aux_sym_string_literal_token1] = ACTIONS(2798), - [sym_char_literal] = ACTIONS(2798), - [anon_sym_true] = ACTIONS(2800), - [anon_sym_false] = ACTIONS(2800), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2800), - [sym_super] = ACTIONS(2800), - [sym_crate] = ACTIONS(2800), - [sym_metavariable] = ACTIONS(2798), - [sym_raw_string_literal] = ACTIONS(2798), - [sym_float_literal] = ACTIONS(2798), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [754] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym_closure_expression] = STATE(3056), + [sym_closure_parameters] = STATE(132), + [sym__pattern] = STATE(2873), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), - [ts_builtin_sym_end] = ACTIONS(2802), - [sym_identifier] = ACTIONS(2804), - [anon_sym_SEMI] = ACTIONS(2802), - [anon_sym_macro_rules_BANG] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_u8] = ACTIONS(2804), - [anon_sym_i8] = ACTIONS(2804), - [anon_sym_u16] = ACTIONS(2804), - [anon_sym_i16] = ACTIONS(2804), - [anon_sym_u32] = ACTIONS(2804), - [anon_sym_i32] = ACTIONS(2804), - [anon_sym_u64] = ACTIONS(2804), - [anon_sym_i64] = ACTIONS(2804), - [anon_sym_u128] = ACTIONS(2804), - [anon_sym_i128] = ACTIONS(2804), - [anon_sym_isize] = ACTIONS(2804), - [anon_sym_usize] = ACTIONS(2804), - [anon_sym_f32] = ACTIONS(2804), - [anon_sym_f64] = ACTIONS(2804), - [anon_sym_bool] = ACTIONS(2804), - [anon_sym_str] = ACTIONS(2804), - [anon_sym_char] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_COLON_COLON] = ACTIONS(2802), - [anon_sym_BANG] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_POUND] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_SQUOTE] = ACTIONS(2804), - [anon_sym_async] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_const] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_default] = ACTIONS(2804), - [anon_sym_enum] = ACTIONS(2804), - [anon_sym_fn] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_impl] = ACTIONS(2804), - [anon_sym_let] = ACTIONS(2804), - [anon_sym_loop] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2804), - [anon_sym_mod] = ACTIONS(2804), - [anon_sym_pub] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_static] = ACTIONS(2804), - [anon_sym_struct] = ACTIONS(2804), - [anon_sym_trait] = ACTIONS(2804), - [anon_sym_type] = ACTIONS(2804), - [anon_sym_union] = ACTIONS(2804), - [anon_sym_unsafe] = ACTIONS(2804), - [anon_sym_use] = ACTIONS(2804), - [anon_sym_while] = ACTIONS(2804), - [anon_sym_extern] = ACTIONS(2804), - [anon_sym_DOT_DOT] = ACTIONS(2802), - [anon_sym_yield] = ACTIONS(2804), - [anon_sym_move] = ACTIONS(2804), - [anon_sym_try] = ACTIONS(2804), - [sym_integer_literal] = ACTIONS(2802), - [aux_sym_string_literal_token1] = ACTIONS(2802), - [sym_char_literal] = ACTIONS(2802), - [anon_sym_true] = ACTIONS(2804), - [anon_sym_false] = ACTIONS(2804), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2804), - [sym_super] = ACTIONS(2804), - [sym_crate] = ACTIONS(2804), - [sym_metavariable] = ACTIONS(2802), - [sym_raw_string_literal] = ACTIONS(2802), - [sym_float_literal] = ACTIONS(2802), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2906), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [755] = { + [sym_attribute_item] = STATE(1464), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym_visibility_modifier] = STATE(978), + [sym__type] = STATE(2487), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), - [ts_builtin_sym_end] = ACTIONS(2806), - [sym_identifier] = ACTIONS(2808), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_macro_rules_BANG] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_u8] = ACTIONS(2808), - [anon_sym_i8] = ACTIONS(2808), - [anon_sym_u16] = ACTIONS(2808), - [anon_sym_i16] = ACTIONS(2808), - [anon_sym_u32] = ACTIONS(2808), - [anon_sym_i32] = ACTIONS(2808), - [anon_sym_u64] = ACTIONS(2808), - [anon_sym_i64] = ACTIONS(2808), - [anon_sym_u128] = ACTIONS(2808), - [anon_sym_i128] = ACTIONS(2808), - [anon_sym_isize] = ACTIONS(2808), - [anon_sym_usize] = ACTIONS(2808), - [anon_sym_f32] = ACTIONS(2808), - [anon_sym_f64] = ACTIONS(2808), - [anon_sym_bool] = ACTIONS(2808), - [anon_sym_str] = ACTIONS(2808), - [anon_sym_char] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2806), - [anon_sym_COLON_COLON] = ACTIONS(2806), - [anon_sym_BANG] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2806), - [anon_sym_POUND] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2806), - [anon_sym_SQUOTE] = ACTIONS(2808), - [anon_sym_async] = ACTIONS(2808), - [anon_sym_break] = ACTIONS(2808), - [anon_sym_const] = ACTIONS(2808), - [anon_sym_continue] = ACTIONS(2808), - [anon_sym_default] = ACTIONS(2808), - [anon_sym_enum] = ACTIONS(2808), - [anon_sym_fn] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_impl] = ACTIONS(2808), - [anon_sym_let] = ACTIONS(2808), - [anon_sym_loop] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_mod] = ACTIONS(2808), - [anon_sym_pub] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2808), - [anon_sym_static] = ACTIONS(2808), - [anon_sym_struct] = ACTIONS(2808), - [anon_sym_trait] = ACTIONS(2808), - [anon_sym_type] = ACTIONS(2808), - [anon_sym_union] = ACTIONS(2808), - [anon_sym_unsafe] = ACTIONS(2808), - [anon_sym_use] = ACTIONS(2808), - [anon_sym_while] = ACTIONS(2808), - [anon_sym_extern] = ACTIONS(2808), - [anon_sym_DOT_DOT] = ACTIONS(2806), - [anon_sym_yield] = ACTIONS(2808), - [anon_sym_move] = ACTIONS(2808), - [anon_sym_try] = ACTIONS(2808), - [sym_integer_literal] = ACTIONS(2806), - [aux_sym_string_literal_token1] = ACTIONS(2806), - [sym_char_literal] = ACTIONS(2806), - [anon_sym_true] = ACTIONS(2808), - [anon_sym_false] = ACTIONS(2808), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2808), - [sym_super] = ACTIONS(2808), - [sym_crate] = ACTIONS(2808), - [sym_metavariable] = ACTIONS(2806), - [sym_raw_string_literal] = ACTIONS(2806), - [sym_float_literal] = ACTIONS(2806), + [aux_sym_enum_variant_list_repeat1] = STATE(766), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(2910), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COMMA] = ACTIONS(2912), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(1552), }, [756] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym_closure_expression] = STATE(3056), + [sym_closure_parameters] = STATE(132), + [sym__pattern] = STATE(2873), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), - [ts_builtin_sym_end] = ACTIONS(2810), - [sym_identifier] = ACTIONS(2812), - [anon_sym_SEMI] = ACTIONS(2810), - [anon_sym_macro_rules_BANG] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_RBRACE] = ACTIONS(2810), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_u8] = ACTIONS(2812), - [anon_sym_i8] = ACTIONS(2812), - [anon_sym_u16] = ACTIONS(2812), - [anon_sym_i16] = ACTIONS(2812), - [anon_sym_u32] = ACTIONS(2812), - [anon_sym_i32] = ACTIONS(2812), - [anon_sym_u64] = ACTIONS(2812), - [anon_sym_i64] = ACTIONS(2812), - [anon_sym_u128] = ACTIONS(2812), - [anon_sym_i128] = ACTIONS(2812), - [anon_sym_isize] = ACTIONS(2812), - [anon_sym_usize] = ACTIONS(2812), - [anon_sym_f32] = ACTIONS(2812), - [anon_sym_f64] = ACTIONS(2812), - [anon_sym_bool] = ACTIONS(2812), - [anon_sym_str] = ACTIONS(2812), - [anon_sym_char] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2810), - [anon_sym_COLON_COLON] = ACTIONS(2810), - [anon_sym_BANG] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2810), - [anon_sym_POUND] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2810), - [anon_sym_SQUOTE] = ACTIONS(2812), - [anon_sym_async] = ACTIONS(2812), - [anon_sym_break] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_continue] = ACTIONS(2812), - [anon_sym_default] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_impl] = ACTIONS(2812), - [anon_sym_let] = ACTIONS(2812), - [anon_sym_loop] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_mod] = ACTIONS(2812), - [anon_sym_pub] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2812), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_trait] = ACTIONS(2812), - [anon_sym_type] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_use] = ACTIONS(2812), - [anon_sym_while] = ACTIONS(2812), - [anon_sym_extern] = ACTIONS(2812), - [anon_sym_DOT_DOT] = ACTIONS(2810), - [anon_sym_yield] = ACTIONS(2812), - [anon_sym_move] = ACTIONS(2812), - [anon_sym_try] = ACTIONS(2812), - [sym_integer_literal] = ACTIONS(2810), - [aux_sym_string_literal_token1] = ACTIONS(2810), - [sym_char_literal] = ACTIONS(2810), - [anon_sym_true] = ACTIONS(2812), - [anon_sym_false] = ACTIONS(2812), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2812), - [sym_super] = ACTIONS(2812), - [sym_crate] = ACTIONS(2812), - [sym_metavariable] = ACTIONS(2810), - [sym_raw_string_literal] = ACTIONS(2810), - [sym_float_literal] = ACTIONS(2810), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2920), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [757] = { + [sym_attribute_item] = STATE(1461), + [sym_inner_attribute_item] = STATE(1461), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_match_pattern] = STATE(3385), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(3007), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [ts_builtin_sym_end] = ACTIONS(2814), - [sym_identifier] = ACTIONS(2816), - [anon_sym_SEMI] = ACTIONS(2814), - [anon_sym_macro_rules_BANG] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_RBRACE] = ACTIONS(2814), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_u8] = ACTIONS(2816), - [anon_sym_i8] = ACTIONS(2816), - [anon_sym_u16] = ACTIONS(2816), - [anon_sym_i16] = ACTIONS(2816), - [anon_sym_u32] = ACTIONS(2816), - [anon_sym_i32] = ACTIONS(2816), - [anon_sym_u64] = ACTIONS(2816), - [anon_sym_i64] = ACTIONS(2816), - [anon_sym_u128] = ACTIONS(2816), - [anon_sym_i128] = ACTIONS(2816), - [anon_sym_isize] = ACTIONS(2816), - [anon_sym_usize] = ACTIONS(2816), - [anon_sym_f32] = ACTIONS(2816), - [anon_sym_f64] = ACTIONS(2816), - [anon_sym_bool] = ACTIONS(2816), - [anon_sym_str] = ACTIONS(2816), - [anon_sym_char] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2814), - [anon_sym_COLON_COLON] = ACTIONS(2814), - [anon_sym_BANG] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2814), - [anon_sym_POUND] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2814), - [anon_sym_SQUOTE] = ACTIONS(2816), - [anon_sym_async] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_default] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_impl] = ACTIONS(2816), - [anon_sym_let] = ACTIONS(2816), - [anon_sym_loop] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_mod] = ACTIONS(2816), - [anon_sym_pub] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_static] = ACTIONS(2816), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_trait] = ACTIONS(2816), - [anon_sym_type] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_use] = ACTIONS(2816), - [anon_sym_while] = ACTIONS(2816), - [anon_sym_extern] = ACTIONS(2816), - [anon_sym_DOT_DOT] = ACTIONS(2814), - [anon_sym_yield] = ACTIONS(2816), - [anon_sym_move] = ACTIONS(2816), - [anon_sym_try] = ACTIONS(2816), - [sym_integer_literal] = ACTIONS(2814), - [aux_sym_string_literal_token1] = ACTIONS(2814), - [sym_char_literal] = ACTIONS(2814), - [anon_sym_true] = ACTIONS(2816), - [anon_sym_false] = ACTIONS(2816), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2816), - [sym_super] = ACTIONS(2816), - [sym_crate] = ACTIONS(2816), - [sym_metavariable] = ACTIONS(2814), - [sym_raw_string_literal] = ACTIONS(2814), - [sym_float_literal] = ACTIONS(2814), + [aux_sym_match_arm_repeat1] = STATE(1026), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_POUND] = ACTIONS(1598), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), }, [758] = { + [sym_attribute_item] = STATE(1464), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym_visibility_modifier] = STATE(894), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(758), [sym_block_comment] = STATE(758), - [ts_builtin_sym_end] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2820), - [anon_sym_SEMI] = ACTIONS(2818), - [anon_sym_macro_rules_BANG] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_RBRACE] = ACTIONS(2818), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_u8] = ACTIONS(2820), - [anon_sym_i8] = ACTIONS(2820), - [anon_sym_u16] = ACTIONS(2820), - [anon_sym_i16] = ACTIONS(2820), - [anon_sym_u32] = ACTIONS(2820), - [anon_sym_i32] = ACTIONS(2820), - [anon_sym_u64] = ACTIONS(2820), - [anon_sym_i64] = ACTIONS(2820), - [anon_sym_u128] = ACTIONS(2820), - [anon_sym_i128] = ACTIONS(2820), - [anon_sym_isize] = ACTIONS(2820), - [anon_sym_usize] = ACTIONS(2820), - [anon_sym_f32] = ACTIONS(2820), - [anon_sym_f64] = ACTIONS(2820), - [anon_sym_bool] = ACTIONS(2820), - [anon_sym_str] = ACTIONS(2820), - [anon_sym_char] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2818), - [anon_sym_COLON_COLON] = ACTIONS(2818), - [anon_sym_BANG] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2818), - [anon_sym_POUND] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2818), - [anon_sym_SQUOTE] = ACTIONS(2820), - [anon_sym_async] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_default] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_impl] = ACTIONS(2820), - [anon_sym_let] = ACTIONS(2820), - [anon_sym_loop] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_mod] = ACTIONS(2820), - [anon_sym_pub] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_trait] = ACTIONS(2820), - [anon_sym_type] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_use] = ACTIONS(2820), - [anon_sym_while] = ACTIONS(2820), - [anon_sym_extern] = ACTIONS(2820), - [anon_sym_DOT_DOT] = ACTIONS(2818), - [anon_sym_yield] = ACTIONS(2820), - [anon_sym_move] = ACTIONS(2820), - [anon_sym_try] = ACTIONS(2820), - [sym_integer_literal] = ACTIONS(2818), - [aux_sym_string_literal_token1] = ACTIONS(2818), - [sym_char_literal] = ACTIONS(2818), - [anon_sym_true] = ACTIONS(2820), - [anon_sym_false] = ACTIONS(2820), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2820), - [sym_super] = ACTIONS(2820), - [sym_crate] = ACTIONS(2820), - [sym_metavariable] = ACTIONS(2818), - [sym_raw_string_literal] = ACTIONS(2818), - [sym_float_literal] = ACTIONS(2818), + [aux_sym_enum_variant_list_repeat1] = STATE(765), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(2922), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(1552), }, [759] = { + [sym_attribute_item] = STATE(1464), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym_visibility_modifier] = STATE(894), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [ts_builtin_sym_end] = ACTIONS(2822), - [sym_identifier] = ACTIONS(2824), - [anon_sym_SEMI] = ACTIONS(2822), - [anon_sym_macro_rules_BANG] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_RBRACE] = ACTIONS(2822), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_u8] = ACTIONS(2824), - [anon_sym_i8] = ACTIONS(2824), - [anon_sym_u16] = ACTIONS(2824), - [anon_sym_i16] = ACTIONS(2824), - [anon_sym_u32] = ACTIONS(2824), - [anon_sym_i32] = ACTIONS(2824), - [anon_sym_u64] = ACTIONS(2824), - [anon_sym_i64] = ACTIONS(2824), - [anon_sym_u128] = ACTIONS(2824), - [anon_sym_i128] = ACTIONS(2824), - [anon_sym_isize] = ACTIONS(2824), - [anon_sym_usize] = ACTIONS(2824), - [anon_sym_f32] = ACTIONS(2824), - [anon_sym_f64] = ACTIONS(2824), - [anon_sym_bool] = ACTIONS(2824), - [anon_sym_str] = ACTIONS(2824), - [anon_sym_char] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2822), - [anon_sym_COLON_COLON] = ACTIONS(2822), - [anon_sym_BANG] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2822), - [anon_sym_POUND] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2822), - [anon_sym_SQUOTE] = ACTIONS(2824), - [anon_sym_async] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_const] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_default] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_impl] = ACTIONS(2824), - [anon_sym_let] = ACTIONS(2824), - [anon_sym_loop] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_mod] = ACTIONS(2824), - [anon_sym_pub] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_static] = ACTIONS(2824), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_trait] = ACTIONS(2824), - [anon_sym_type] = ACTIONS(2824), - [anon_sym_union] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_use] = ACTIONS(2824), - [anon_sym_while] = ACTIONS(2824), - [anon_sym_extern] = ACTIONS(2824), - [anon_sym_DOT_DOT] = ACTIONS(2822), - [anon_sym_yield] = ACTIONS(2824), - [anon_sym_move] = ACTIONS(2824), - [anon_sym_try] = ACTIONS(2824), - [sym_integer_literal] = ACTIONS(2822), - [aux_sym_string_literal_token1] = ACTIONS(2822), - [sym_char_literal] = ACTIONS(2822), - [anon_sym_true] = ACTIONS(2824), - [anon_sym_false] = ACTIONS(2824), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2824), - [sym_super] = ACTIONS(2824), - [sym_crate] = ACTIONS(2824), - [sym_metavariable] = ACTIONS(2822), - [sym_raw_string_literal] = ACTIONS(2822), - [sym_float_literal] = ACTIONS(2822), + [aux_sym_enum_variant_list_repeat1] = STATE(765), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(2924), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(1552), }, [760] = { + [sym_attribute_item] = STATE(1464), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym_visibility_modifier] = STATE(894), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_SEMI] = ACTIONS(2826), - [anon_sym_macro_rules_BANG] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_RBRACE] = ACTIONS(2826), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_u8] = ACTIONS(2828), - [anon_sym_i8] = ACTIONS(2828), - [anon_sym_u16] = ACTIONS(2828), - [anon_sym_i16] = ACTIONS(2828), - [anon_sym_u32] = ACTIONS(2828), - [anon_sym_i32] = ACTIONS(2828), - [anon_sym_u64] = ACTIONS(2828), - [anon_sym_i64] = ACTIONS(2828), - [anon_sym_u128] = ACTIONS(2828), - [anon_sym_i128] = ACTIONS(2828), - [anon_sym_isize] = ACTIONS(2828), - [anon_sym_usize] = ACTIONS(2828), - [anon_sym_f32] = ACTIONS(2828), - [anon_sym_f64] = ACTIONS(2828), - [anon_sym_bool] = ACTIONS(2828), - [anon_sym_str] = ACTIONS(2828), - [anon_sym_char] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2826), - [anon_sym_COLON_COLON] = ACTIONS(2826), - [anon_sym_BANG] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2826), - [anon_sym_POUND] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2826), - [anon_sym_SQUOTE] = ACTIONS(2828), - [anon_sym_async] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_default] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_impl] = ACTIONS(2828), - [anon_sym_let] = ACTIONS(2828), - [anon_sym_loop] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_mod] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_static] = ACTIONS(2828), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_trait] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_use] = ACTIONS(2828), - [anon_sym_while] = ACTIONS(2828), - [anon_sym_extern] = ACTIONS(2828), - [anon_sym_DOT_DOT] = ACTIONS(2826), - [anon_sym_yield] = ACTIONS(2828), - [anon_sym_move] = ACTIONS(2828), - [anon_sym_try] = ACTIONS(2828), - [sym_integer_literal] = ACTIONS(2826), - [aux_sym_string_literal_token1] = ACTIONS(2826), - [sym_char_literal] = ACTIONS(2826), - [anon_sym_true] = ACTIONS(2828), - [anon_sym_false] = ACTIONS(2828), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2828), - [sym_super] = ACTIONS(2828), - [sym_crate] = ACTIONS(2828), - [sym_metavariable] = ACTIONS(2826), - [sym_raw_string_literal] = ACTIONS(2826), - [sym_float_literal] = ACTIONS(2826), + [aux_sym_enum_variant_list_repeat1] = STATE(765), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(2926), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(1552), }, [761] = { + [sym_attribute_item] = STATE(1464), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym_visibility_modifier] = STATE(894), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_identifier] = ACTIONS(2832), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_macro_rules_BANG] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_RBRACE] = ACTIONS(2830), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_u8] = ACTIONS(2832), - [anon_sym_i8] = ACTIONS(2832), - [anon_sym_u16] = ACTIONS(2832), - [anon_sym_i16] = ACTIONS(2832), - [anon_sym_u32] = ACTIONS(2832), - [anon_sym_i32] = ACTIONS(2832), - [anon_sym_u64] = ACTIONS(2832), - [anon_sym_i64] = ACTIONS(2832), - [anon_sym_u128] = ACTIONS(2832), - [anon_sym_i128] = ACTIONS(2832), - [anon_sym_isize] = ACTIONS(2832), - [anon_sym_usize] = ACTIONS(2832), - [anon_sym_f32] = ACTIONS(2832), - [anon_sym_f64] = ACTIONS(2832), - [anon_sym_bool] = ACTIONS(2832), - [anon_sym_str] = ACTIONS(2832), - [anon_sym_char] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2830), - [anon_sym_COLON_COLON] = ACTIONS(2830), - [anon_sym_BANG] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2830), - [anon_sym_POUND] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2830), - [anon_sym_SQUOTE] = ACTIONS(2832), - [anon_sym_async] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_const] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_default] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_impl] = ACTIONS(2832), - [anon_sym_let] = ACTIONS(2832), - [anon_sym_loop] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_mod] = ACTIONS(2832), - [anon_sym_pub] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_trait] = ACTIONS(2832), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_union] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_use] = ACTIONS(2832), - [anon_sym_while] = ACTIONS(2832), - [anon_sym_extern] = ACTIONS(2832), - [anon_sym_DOT_DOT] = ACTIONS(2830), - [anon_sym_yield] = ACTIONS(2832), - [anon_sym_move] = ACTIONS(2832), - [anon_sym_try] = ACTIONS(2832), - [sym_integer_literal] = ACTIONS(2830), - [aux_sym_string_literal_token1] = ACTIONS(2830), - [sym_char_literal] = ACTIONS(2830), - [anon_sym_true] = ACTIONS(2832), - [anon_sym_false] = ACTIONS(2832), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2832), - [sym_super] = ACTIONS(2832), - [sym_crate] = ACTIONS(2832), - [sym_metavariable] = ACTIONS(2830), - [sym_raw_string_literal] = ACTIONS(2830), - [sym_float_literal] = ACTIONS(2830), + [aux_sym_enum_variant_list_repeat1] = STATE(765), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(2928), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(1552), }, [762] = { + [sym_attribute_item] = STATE(1464), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym_visibility_modifier] = STATE(894), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), - [ts_builtin_sym_end] = ACTIONS(2834), - [sym_identifier] = ACTIONS(2836), - [anon_sym_SEMI] = ACTIONS(2834), - [anon_sym_macro_rules_BANG] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_RBRACE] = ACTIONS(2834), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_u8] = ACTIONS(2836), - [anon_sym_i8] = ACTIONS(2836), - [anon_sym_u16] = ACTIONS(2836), - [anon_sym_i16] = ACTIONS(2836), - [anon_sym_u32] = ACTIONS(2836), - [anon_sym_i32] = ACTIONS(2836), - [anon_sym_u64] = ACTIONS(2836), - [anon_sym_i64] = ACTIONS(2836), - [anon_sym_u128] = ACTIONS(2836), - [anon_sym_i128] = ACTIONS(2836), - [anon_sym_isize] = ACTIONS(2836), - [anon_sym_usize] = ACTIONS(2836), - [anon_sym_f32] = ACTIONS(2836), - [anon_sym_f64] = ACTIONS(2836), - [anon_sym_bool] = ACTIONS(2836), - [anon_sym_str] = ACTIONS(2836), - [anon_sym_char] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2834), - [anon_sym_COLON_COLON] = ACTIONS(2834), - [anon_sym_BANG] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2834), - [anon_sym_POUND] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2834), - [anon_sym_PIPE] = ACTIONS(2834), - [anon_sym_SQUOTE] = ACTIONS(2836), - [anon_sym_async] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_default] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_impl] = ACTIONS(2836), - [anon_sym_let] = ACTIONS(2836), - [anon_sym_loop] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_mod] = ACTIONS(2836), - [anon_sym_pub] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_static] = ACTIONS(2836), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_trait] = ACTIONS(2836), - [anon_sym_type] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_use] = ACTIONS(2836), - [anon_sym_while] = ACTIONS(2836), - [anon_sym_extern] = ACTIONS(2836), - [anon_sym_DOT_DOT] = ACTIONS(2834), - [anon_sym_yield] = ACTIONS(2836), - [anon_sym_move] = ACTIONS(2836), - [anon_sym_try] = ACTIONS(2836), - [sym_integer_literal] = ACTIONS(2834), - [aux_sym_string_literal_token1] = ACTIONS(2834), - [sym_char_literal] = ACTIONS(2834), - [anon_sym_true] = ACTIONS(2836), - [anon_sym_false] = ACTIONS(2836), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2836), - [sym_super] = ACTIONS(2836), - [sym_crate] = ACTIONS(2836), - [sym_metavariable] = ACTIONS(2834), - [sym_raw_string_literal] = ACTIONS(2834), - [sym_float_literal] = ACTIONS(2834), + [aux_sym_enum_variant_list_repeat1] = STATE(765), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(2930), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(1552), }, [763] = { + [sym_attribute_item] = STATE(1464), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym_visibility_modifier] = STATE(894), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_SEMI] = ACTIONS(2838), - [anon_sym_macro_rules_BANG] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_RBRACE] = ACTIONS(2838), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_u8] = ACTIONS(2840), - [anon_sym_i8] = ACTIONS(2840), - [anon_sym_u16] = ACTIONS(2840), - [anon_sym_i16] = ACTIONS(2840), - [anon_sym_u32] = ACTIONS(2840), - [anon_sym_i32] = ACTIONS(2840), - [anon_sym_u64] = ACTIONS(2840), - [anon_sym_i64] = ACTIONS(2840), - [anon_sym_u128] = ACTIONS(2840), - [anon_sym_i128] = ACTIONS(2840), - [anon_sym_isize] = ACTIONS(2840), - [anon_sym_usize] = ACTIONS(2840), - [anon_sym_f32] = ACTIONS(2840), - [anon_sym_f64] = ACTIONS(2840), - [anon_sym_bool] = ACTIONS(2840), - [anon_sym_str] = ACTIONS(2840), - [anon_sym_char] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2838), - [anon_sym_COLON_COLON] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2838), - [anon_sym_POUND] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2838), - [anon_sym_PIPE] = ACTIONS(2838), - [anon_sym_SQUOTE] = ACTIONS(2840), - [anon_sym_async] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_default] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_impl] = ACTIONS(2840), - [anon_sym_let] = ACTIONS(2840), - [anon_sym_loop] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_mod] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_static] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_trait] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_use] = ACTIONS(2840), - [anon_sym_while] = ACTIONS(2840), - [anon_sym_extern] = ACTIONS(2840), - [anon_sym_DOT_DOT] = ACTIONS(2838), - [anon_sym_yield] = ACTIONS(2840), - [anon_sym_move] = ACTIONS(2840), - [anon_sym_try] = ACTIONS(2840), - [sym_integer_literal] = ACTIONS(2838), - [aux_sym_string_literal_token1] = ACTIONS(2838), - [sym_char_literal] = ACTIONS(2838), - [anon_sym_true] = ACTIONS(2840), - [anon_sym_false] = ACTIONS(2840), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2840), - [sym_super] = ACTIONS(2840), - [sym_crate] = ACTIONS(2840), - [sym_metavariable] = ACTIONS(2838), - [sym_raw_string_literal] = ACTIONS(2838), - [sym_float_literal] = ACTIONS(2838), + [aux_sym_enum_variant_list_repeat1] = STATE(765), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(2932), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(1552), }, [764] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym_closure_expression] = STATE(3056), + [sym_closure_parameters] = STATE(132), + [sym__pattern] = STATE(2873), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [ts_builtin_sym_end] = ACTIONS(2842), - [sym_identifier] = ACTIONS(2844), - [anon_sym_SEMI] = ACTIONS(2842), - [anon_sym_macro_rules_BANG] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_RBRACE] = ACTIONS(2842), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_u8] = ACTIONS(2844), - [anon_sym_i8] = ACTIONS(2844), - [anon_sym_u16] = ACTIONS(2844), - [anon_sym_i16] = ACTIONS(2844), - [anon_sym_u32] = ACTIONS(2844), - [anon_sym_i32] = ACTIONS(2844), - [anon_sym_u64] = ACTIONS(2844), - [anon_sym_i64] = ACTIONS(2844), - [anon_sym_u128] = ACTIONS(2844), - [anon_sym_i128] = ACTIONS(2844), - [anon_sym_isize] = ACTIONS(2844), - [anon_sym_usize] = ACTIONS(2844), - [anon_sym_f32] = ACTIONS(2844), - [anon_sym_f64] = ACTIONS(2844), - [anon_sym_bool] = ACTIONS(2844), - [anon_sym_str] = ACTIONS(2844), - [anon_sym_char] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2842), - [anon_sym_COLON_COLON] = ACTIONS(2842), - [anon_sym_BANG] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2842), - [anon_sym_POUND] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2842), - [anon_sym_PIPE] = ACTIONS(2842), - [anon_sym_SQUOTE] = ACTIONS(2844), - [anon_sym_async] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_default] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_impl] = ACTIONS(2844), - [anon_sym_let] = ACTIONS(2844), - [anon_sym_loop] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_mod] = ACTIONS(2844), - [anon_sym_pub] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_static] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_trait] = ACTIONS(2844), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_use] = ACTIONS(2844), - [anon_sym_while] = ACTIONS(2844), - [anon_sym_extern] = ACTIONS(2844), - [anon_sym_DOT_DOT] = ACTIONS(2842), - [anon_sym_yield] = ACTIONS(2844), - [anon_sym_move] = ACTIONS(2844), - [anon_sym_try] = ACTIONS(2844), - [sym_integer_literal] = ACTIONS(2842), - [aux_sym_string_literal_token1] = ACTIONS(2842), - [sym_char_literal] = ACTIONS(2842), - [anon_sym_true] = ACTIONS(2844), - [anon_sym_false] = ACTIONS(2844), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2844), - [sym_super] = ACTIONS(2844), - [sym_crate] = ACTIONS(2844), - [sym_metavariable] = ACTIONS(2842), - [sym_raw_string_literal] = ACTIONS(2842), - [sym_float_literal] = ACTIONS(2842), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1136), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [anon_sym_move] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [765] = { + [sym_attribute_item] = STATE(1464), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym_visibility_modifier] = STATE(958), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [ts_builtin_sym_end] = ACTIONS(2846), - [sym_identifier] = ACTIONS(2848), - [anon_sym_SEMI] = ACTIONS(2846), - [anon_sym_macro_rules_BANG] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_RBRACE] = ACTIONS(2846), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_u8] = ACTIONS(2848), - [anon_sym_i8] = ACTIONS(2848), - [anon_sym_u16] = ACTIONS(2848), - [anon_sym_i16] = ACTIONS(2848), - [anon_sym_u32] = ACTIONS(2848), - [anon_sym_i32] = ACTIONS(2848), - [anon_sym_u64] = ACTIONS(2848), - [anon_sym_i64] = ACTIONS(2848), - [anon_sym_u128] = ACTIONS(2848), - [anon_sym_i128] = ACTIONS(2848), - [anon_sym_isize] = ACTIONS(2848), - [anon_sym_usize] = ACTIONS(2848), - [anon_sym_f32] = ACTIONS(2848), - [anon_sym_f64] = ACTIONS(2848), - [anon_sym_bool] = ACTIONS(2848), - [anon_sym_str] = ACTIONS(2848), - [anon_sym_char] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2846), - [anon_sym_COLON_COLON] = ACTIONS(2846), - [anon_sym_BANG] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2846), - [anon_sym_POUND] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2846), - [anon_sym_SQUOTE] = ACTIONS(2848), - [anon_sym_async] = ACTIONS(2848), - [anon_sym_break] = ACTIONS(2848), - [anon_sym_const] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2848), - [anon_sym_default] = ACTIONS(2848), - [anon_sym_enum] = ACTIONS(2848), - [anon_sym_fn] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_impl] = ACTIONS(2848), - [anon_sym_let] = ACTIONS(2848), - [anon_sym_loop] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_mod] = ACTIONS(2848), - [anon_sym_pub] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_static] = ACTIONS(2848), - [anon_sym_struct] = ACTIONS(2848), - [anon_sym_trait] = ACTIONS(2848), - [anon_sym_type] = ACTIONS(2848), - [anon_sym_union] = ACTIONS(2848), - [anon_sym_unsafe] = ACTIONS(2848), - [anon_sym_use] = ACTIONS(2848), - [anon_sym_while] = ACTIONS(2848), - [anon_sym_extern] = ACTIONS(2848), - [anon_sym_DOT_DOT] = ACTIONS(2846), - [anon_sym_yield] = ACTIONS(2848), - [anon_sym_move] = ACTIONS(2848), - [anon_sym_try] = ACTIONS(2848), - [sym_integer_literal] = ACTIONS(2846), - [aux_sym_string_literal_token1] = ACTIONS(2846), - [sym_char_literal] = ACTIONS(2846), - [anon_sym_true] = ACTIONS(2848), - [anon_sym_false] = ACTIONS(2848), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2848), - [sym_super] = ACTIONS(2848), - [sym_crate] = ACTIONS(2848), - [sym_metavariable] = ACTIONS(2846), - [sym_raw_string_literal] = ACTIONS(2846), - [sym_float_literal] = ACTIONS(2846), + [aux_sym_enum_variant_list_repeat1] = STATE(1077), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(1552), }, [766] = { + [sym_attribute_item] = STATE(1464), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym_visibility_modifier] = STATE(934), + [sym__type] = STATE(2628), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [ts_builtin_sym_end] = ACTIONS(2850), - [sym_identifier] = ACTIONS(2852), - [anon_sym_SEMI] = ACTIONS(2850), - [anon_sym_macro_rules_BANG] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_RBRACE] = ACTIONS(2850), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_u8] = ACTIONS(2852), - [anon_sym_i8] = ACTIONS(2852), - [anon_sym_u16] = ACTIONS(2852), - [anon_sym_i16] = ACTIONS(2852), - [anon_sym_u32] = ACTIONS(2852), - [anon_sym_i32] = ACTIONS(2852), - [anon_sym_u64] = ACTIONS(2852), - [anon_sym_i64] = ACTIONS(2852), - [anon_sym_u128] = ACTIONS(2852), - [anon_sym_i128] = ACTIONS(2852), - [anon_sym_isize] = ACTIONS(2852), - [anon_sym_usize] = ACTIONS(2852), - [anon_sym_f32] = ACTIONS(2852), - [anon_sym_f64] = ACTIONS(2852), - [anon_sym_bool] = ACTIONS(2852), - [anon_sym_str] = ACTIONS(2852), - [anon_sym_char] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2850), - [anon_sym_COLON_COLON] = ACTIONS(2850), - [anon_sym_BANG] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2850), - [anon_sym_POUND] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(2850), - [anon_sym_SQUOTE] = ACTIONS(2852), - [anon_sym_async] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_default] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_impl] = ACTIONS(2852), - [anon_sym_let] = ACTIONS(2852), - [anon_sym_loop] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_mod] = ACTIONS(2852), - [anon_sym_pub] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_static] = ACTIONS(2852), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_trait] = ACTIONS(2852), - [anon_sym_type] = ACTIONS(2852), - [anon_sym_union] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_use] = ACTIONS(2852), - [anon_sym_while] = ACTIONS(2852), - [anon_sym_extern] = ACTIONS(2852), - [anon_sym_DOT_DOT] = ACTIONS(2850), - [anon_sym_yield] = ACTIONS(2852), - [anon_sym_move] = ACTIONS(2852), - [anon_sym_try] = ACTIONS(2852), - [sym_integer_literal] = ACTIONS(2850), - [aux_sym_string_literal_token1] = ACTIONS(2850), - [sym_char_literal] = ACTIONS(2850), - [anon_sym_true] = ACTIONS(2852), - [anon_sym_false] = ACTIONS(2852), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2852), - [sym_super] = ACTIONS(2852), - [sym_crate] = ACTIONS(2852), - [sym_metavariable] = ACTIONS(2850), - [sym_raw_string_literal] = ACTIONS(2850), - [sym_float_literal] = ACTIONS(2850), + [aux_sym_enum_variant_list_repeat1] = STATE(1077), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(1552), }, [767] = { + [sym_attribute_item] = STATE(1464), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym_visibility_modifier] = STATE(894), + [sym__type] = STATE(2793), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_identifier] = ACTIONS(2856), - [anon_sym_SEMI] = ACTIONS(2854), - [anon_sym_macro_rules_BANG] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_RBRACE] = ACTIONS(2854), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_u8] = ACTIONS(2856), - [anon_sym_i8] = ACTIONS(2856), - [anon_sym_u16] = ACTIONS(2856), - [anon_sym_i16] = ACTIONS(2856), - [anon_sym_u32] = ACTIONS(2856), - [anon_sym_i32] = ACTIONS(2856), - [anon_sym_u64] = ACTIONS(2856), - [anon_sym_i64] = ACTIONS(2856), - [anon_sym_u128] = ACTIONS(2856), - [anon_sym_i128] = ACTIONS(2856), - [anon_sym_isize] = ACTIONS(2856), - [anon_sym_usize] = ACTIONS(2856), - [anon_sym_f32] = ACTIONS(2856), - [anon_sym_f64] = ACTIONS(2856), - [anon_sym_bool] = ACTIONS(2856), - [anon_sym_str] = ACTIONS(2856), - [anon_sym_char] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2854), - [anon_sym_COLON_COLON] = ACTIONS(2854), - [anon_sym_BANG] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2854), - [anon_sym_POUND] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2854), - [anon_sym_SQUOTE] = ACTIONS(2856), - [anon_sym_async] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_default] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_impl] = ACTIONS(2856), - [anon_sym_let] = ACTIONS(2856), - [anon_sym_loop] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_mod] = ACTIONS(2856), - [anon_sym_pub] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_static] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_trait] = ACTIONS(2856), - [anon_sym_type] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_use] = ACTIONS(2856), - [anon_sym_while] = ACTIONS(2856), - [anon_sym_extern] = ACTIONS(2856), - [anon_sym_DOT_DOT] = ACTIONS(2854), - [anon_sym_yield] = ACTIONS(2856), - [anon_sym_move] = ACTIONS(2856), - [anon_sym_try] = ACTIONS(2856), - [sym_integer_literal] = ACTIONS(2854), - [aux_sym_string_literal_token1] = ACTIONS(2854), - [sym_char_literal] = ACTIONS(2854), - [anon_sym_true] = ACTIONS(2856), - [anon_sym_false] = ACTIONS(2856), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2856), - [sym_super] = ACTIONS(2856), - [sym_crate] = ACTIONS(2856), - [sym_metavariable] = ACTIONS(2854), - [sym_raw_string_literal] = ACTIONS(2854), - [sym_float_literal] = ACTIONS(2854), + [aux_sym_enum_variant_list_repeat1] = STATE(765), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_POUND] = ACTIONS(2894), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_pub] = ACTIONS(2916), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(2918), + [sym_metavariable] = ACTIONS(1552), }, [768] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2540), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_SEMI] = ACTIONS(2858), - [anon_sym_macro_rules_BANG] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_RBRACE] = ACTIONS(2858), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_u8] = ACTIONS(2860), - [anon_sym_i8] = ACTIONS(2860), - [anon_sym_u16] = ACTIONS(2860), - [anon_sym_i16] = ACTIONS(2860), - [anon_sym_u32] = ACTIONS(2860), - [anon_sym_i32] = ACTIONS(2860), - [anon_sym_u64] = ACTIONS(2860), - [anon_sym_i64] = ACTIONS(2860), - [anon_sym_u128] = ACTIONS(2860), - [anon_sym_i128] = ACTIONS(2860), - [anon_sym_isize] = ACTIONS(2860), - [anon_sym_usize] = ACTIONS(2860), - [anon_sym_f32] = ACTIONS(2860), - [anon_sym_f64] = ACTIONS(2860), - [anon_sym_bool] = ACTIONS(2860), - [anon_sym_str] = ACTIONS(2860), - [anon_sym_char] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2858), - [anon_sym_COLON_COLON] = ACTIONS(2858), - [anon_sym_BANG] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2858), - [anon_sym_POUND] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2858), - [anon_sym_SQUOTE] = ACTIONS(2860), - [anon_sym_async] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_impl] = ACTIONS(2860), - [anon_sym_let] = ACTIONS(2860), - [anon_sym_loop] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_mod] = ACTIONS(2860), - [anon_sym_pub] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_static] = ACTIONS(2860), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_trait] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_use] = ACTIONS(2860), - [anon_sym_while] = ACTIONS(2860), - [anon_sym_extern] = ACTIONS(2860), - [anon_sym_DOT_DOT] = ACTIONS(2858), - [anon_sym_yield] = ACTIONS(2860), - [anon_sym_move] = ACTIONS(2860), - [anon_sym_try] = ACTIONS(2860), - [sym_integer_literal] = ACTIONS(2858), - [aux_sym_string_literal_token1] = ACTIONS(2858), - [sym_char_literal] = ACTIONS(2858), - [anon_sym_true] = ACTIONS(2860), - [anon_sym_false] = ACTIONS(2860), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2860), - [sym_super] = ACTIONS(2860), - [sym_crate] = ACTIONS(2860), - [sym_metavariable] = ACTIONS(2858), - [sym_raw_string_literal] = ACTIONS(2858), - [sym_float_literal] = ACTIONS(2858), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2934), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(2936), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [769] = { - [sym_attribute_item] = STATE(844), - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_match_pattern] = STATE(3478), - [sym_const_block] = STATE(2719), - [sym_closure_expression] = STATE(3210), - [sym_closure_parameters] = STATE(143), - [sym__pattern] = STATE(2807), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2651), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [aux_sym_enum_variant_list_repeat1] = STATE(806), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_POUND] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [anon_sym_move] = ACTIONS(1574), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2938), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [770] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2685), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [ts_builtin_sym_end] = ACTIONS(2862), - [sym_identifier] = ACTIONS(2864), - [anon_sym_SEMI] = ACTIONS(2862), - [anon_sym_macro_rules_BANG] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_RBRACE] = ACTIONS(2862), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_u8] = ACTIONS(2864), - [anon_sym_i8] = ACTIONS(2864), - [anon_sym_u16] = ACTIONS(2864), - [anon_sym_i16] = ACTIONS(2864), - [anon_sym_u32] = ACTIONS(2864), - [anon_sym_i32] = ACTIONS(2864), - [anon_sym_u64] = ACTIONS(2864), - [anon_sym_i64] = ACTIONS(2864), - [anon_sym_u128] = ACTIONS(2864), - [anon_sym_i128] = ACTIONS(2864), - [anon_sym_isize] = ACTIONS(2864), - [anon_sym_usize] = ACTIONS(2864), - [anon_sym_f32] = ACTIONS(2864), - [anon_sym_f64] = ACTIONS(2864), - [anon_sym_bool] = ACTIONS(2864), - [anon_sym_str] = ACTIONS(2864), - [anon_sym_char] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2862), - [anon_sym_COLON_COLON] = ACTIONS(2862), - [anon_sym_BANG] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2862), - [anon_sym_POUND] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2862), - [anon_sym_SQUOTE] = ACTIONS(2864), - [anon_sym_async] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_default] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_fn] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_impl] = ACTIONS(2864), - [anon_sym_let] = ACTIONS(2864), - [anon_sym_loop] = ACTIONS(2864), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_mod] = ACTIONS(2864), - [anon_sym_pub] = ACTIONS(2864), - [anon_sym_return] = ACTIONS(2864), - [anon_sym_static] = ACTIONS(2864), - [anon_sym_struct] = ACTIONS(2864), - [anon_sym_trait] = ACTIONS(2864), - [anon_sym_type] = ACTIONS(2864), - [anon_sym_union] = ACTIONS(2864), - [anon_sym_unsafe] = ACTIONS(2864), - [anon_sym_use] = ACTIONS(2864), - [anon_sym_while] = ACTIONS(2864), - [anon_sym_extern] = ACTIONS(2864), - [anon_sym_DOT_DOT] = ACTIONS(2862), - [anon_sym_yield] = ACTIONS(2864), - [anon_sym_move] = ACTIONS(2864), - [anon_sym_try] = ACTIONS(2864), - [sym_integer_literal] = ACTIONS(2862), - [aux_sym_string_literal_token1] = ACTIONS(2862), - [sym_char_literal] = ACTIONS(2862), - [anon_sym_true] = ACTIONS(2864), - [anon_sym_false] = ACTIONS(2864), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2864), - [sym_super] = ACTIONS(2864), - [sym_crate] = ACTIONS(2864), - [sym_metavariable] = ACTIONS(2862), - [sym_raw_string_literal] = ACTIONS(2862), - [sym_float_literal] = ACTIONS(2862), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_RBRACK] = ACTIONS(2942), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(2944), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [771] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2654), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [ts_builtin_sym_end] = ACTIONS(2866), - [sym_identifier] = ACTIONS(2868), - [anon_sym_SEMI] = ACTIONS(2866), - [anon_sym_macro_rules_BANG] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_RBRACE] = ACTIONS(2866), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_u8] = ACTIONS(2868), - [anon_sym_i8] = ACTIONS(2868), - [anon_sym_u16] = ACTIONS(2868), - [anon_sym_i16] = ACTIONS(2868), - [anon_sym_u32] = ACTIONS(2868), - [anon_sym_i32] = ACTIONS(2868), - [anon_sym_u64] = ACTIONS(2868), - [anon_sym_i64] = ACTIONS(2868), - [anon_sym_u128] = ACTIONS(2868), - [anon_sym_i128] = ACTIONS(2868), - [anon_sym_isize] = ACTIONS(2868), - [anon_sym_usize] = ACTIONS(2868), - [anon_sym_f32] = ACTIONS(2868), - [anon_sym_f64] = ACTIONS(2868), - [anon_sym_bool] = ACTIONS(2868), - [anon_sym_str] = ACTIONS(2868), - [anon_sym_char] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2866), - [anon_sym_COLON_COLON] = ACTIONS(2866), - [anon_sym_BANG] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2866), - [anon_sym_POUND] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2866), - [anon_sym_PIPE] = ACTIONS(2866), - [anon_sym_SQUOTE] = ACTIONS(2868), - [anon_sym_async] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_default] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_impl] = ACTIONS(2868), - [anon_sym_let] = ACTIONS(2868), - [anon_sym_loop] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_mod] = ACTIONS(2868), - [anon_sym_pub] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_static] = ACTIONS(2868), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_trait] = ACTIONS(2868), - [anon_sym_type] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_use] = ACTIONS(2868), - [anon_sym_while] = ACTIONS(2868), - [anon_sym_extern] = ACTIONS(2868), - [anon_sym_DOT_DOT] = ACTIONS(2866), - [anon_sym_yield] = ACTIONS(2868), - [anon_sym_move] = ACTIONS(2868), - [anon_sym_try] = ACTIONS(2868), - [sym_integer_literal] = ACTIONS(2866), - [aux_sym_string_literal_token1] = ACTIONS(2866), - [sym_char_literal] = ACTIONS(2866), - [anon_sym_true] = ACTIONS(2868), - [anon_sym_false] = ACTIONS(2868), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2868), - [sym_super] = ACTIONS(2868), - [sym_crate] = ACTIONS(2868), - [sym_metavariable] = ACTIONS(2866), - [sym_raw_string_literal] = ACTIONS(2866), - [sym_float_literal] = ACTIONS(2866), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2946), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(2948), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [772] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2681), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [ts_builtin_sym_end] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2872), - [anon_sym_SEMI] = ACTIONS(2870), - [anon_sym_macro_rules_BANG] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_RBRACE] = ACTIONS(2870), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_u8] = ACTIONS(2872), - [anon_sym_i8] = ACTIONS(2872), - [anon_sym_u16] = ACTIONS(2872), - [anon_sym_i16] = ACTIONS(2872), - [anon_sym_u32] = ACTIONS(2872), - [anon_sym_i32] = ACTIONS(2872), - [anon_sym_u64] = ACTIONS(2872), - [anon_sym_i64] = ACTIONS(2872), - [anon_sym_u128] = ACTIONS(2872), - [anon_sym_i128] = ACTIONS(2872), - [anon_sym_isize] = ACTIONS(2872), - [anon_sym_usize] = ACTIONS(2872), - [anon_sym_f32] = ACTIONS(2872), - [anon_sym_f64] = ACTIONS(2872), - [anon_sym_bool] = ACTIONS(2872), - [anon_sym_str] = ACTIONS(2872), - [anon_sym_char] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2870), - [anon_sym_COLON_COLON] = ACTIONS(2870), - [anon_sym_BANG] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2870), - [anon_sym_POUND] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2870), - [anon_sym_SQUOTE] = ACTIONS(2872), - [anon_sym_async] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_default] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_impl] = ACTIONS(2872), - [anon_sym_let] = ACTIONS(2872), - [anon_sym_loop] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_mod] = ACTIONS(2872), - [anon_sym_pub] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_static] = ACTIONS(2872), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_trait] = ACTIONS(2872), - [anon_sym_type] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_use] = ACTIONS(2872), - [anon_sym_while] = ACTIONS(2872), - [anon_sym_extern] = ACTIONS(2872), - [anon_sym_DOT_DOT] = ACTIONS(2870), - [anon_sym_yield] = ACTIONS(2872), - [anon_sym_move] = ACTIONS(2872), - [anon_sym_try] = ACTIONS(2872), - [sym_integer_literal] = ACTIONS(2870), - [aux_sym_string_literal_token1] = ACTIONS(2870), - [sym_char_literal] = ACTIONS(2870), - [anon_sym_true] = ACTIONS(2872), - [anon_sym_false] = ACTIONS(2872), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2872), - [sym_super] = ACTIONS(2872), - [sym_crate] = ACTIONS(2872), - [sym_metavariable] = ACTIONS(2870), - [sym_raw_string_literal] = ACTIONS(2870), - [sym_float_literal] = ACTIONS(2870), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_RBRACK] = ACTIONS(1221), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(1225), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [773] = { + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2533), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [ts_builtin_sym_end] = ACTIONS(2874), - [sym_identifier] = ACTIONS(2876), - [anon_sym_SEMI] = ACTIONS(2874), - [anon_sym_macro_rules_BANG] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_RBRACE] = ACTIONS(2874), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_u8] = ACTIONS(2876), - [anon_sym_i8] = ACTIONS(2876), - [anon_sym_u16] = ACTIONS(2876), - [anon_sym_i16] = ACTIONS(2876), - [anon_sym_u32] = ACTIONS(2876), - [anon_sym_i32] = ACTIONS(2876), - [anon_sym_u64] = ACTIONS(2876), - [anon_sym_i64] = ACTIONS(2876), - [anon_sym_u128] = ACTIONS(2876), - [anon_sym_i128] = ACTIONS(2876), - [anon_sym_isize] = ACTIONS(2876), - [anon_sym_usize] = ACTIONS(2876), - [anon_sym_f32] = ACTIONS(2876), - [anon_sym_f64] = ACTIONS(2876), - [anon_sym_bool] = ACTIONS(2876), - [anon_sym_str] = ACTIONS(2876), - [anon_sym_char] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_COLON_COLON] = ACTIONS(2874), - [anon_sym_BANG] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2874), - [anon_sym_POUND] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2874), - [anon_sym_PIPE] = ACTIONS(2874), - [anon_sym_SQUOTE] = ACTIONS(2876), - [anon_sym_async] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_impl] = ACTIONS(2876), - [anon_sym_let] = ACTIONS(2876), - [anon_sym_loop] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_mod] = ACTIONS(2876), - [anon_sym_pub] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_static] = ACTIONS(2876), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_trait] = ACTIONS(2876), - [anon_sym_type] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_use] = ACTIONS(2876), - [anon_sym_while] = ACTIONS(2876), - [anon_sym_extern] = ACTIONS(2876), - [anon_sym_DOT_DOT] = ACTIONS(2874), - [anon_sym_yield] = ACTIONS(2876), - [anon_sym_move] = ACTIONS(2876), - [anon_sym_try] = ACTIONS(2876), - [sym_integer_literal] = ACTIONS(2874), - [aux_sym_string_literal_token1] = ACTIONS(2874), - [sym_char_literal] = ACTIONS(2874), - [anon_sym_true] = ACTIONS(2876), - [anon_sym_false] = ACTIONS(2876), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2876), - [sym_super] = ACTIONS(2876), - [sym_crate] = ACTIONS(2876), - [sym_metavariable] = ACTIONS(2874), - [sym_raw_string_literal] = ACTIONS(2874), - [sym_float_literal] = ACTIONS(2874), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COMMA] = ACTIONS(2952), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [774] = { + [sym_parameter] = STATE(2818), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2449), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [ts_builtin_sym_end] = ACTIONS(2878), - [sym_identifier] = ACTIONS(2880), - [anon_sym_SEMI] = ACTIONS(2878), - [anon_sym_macro_rules_BANG] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_RBRACE] = ACTIONS(2878), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_u8] = ACTIONS(2880), - [anon_sym_i8] = ACTIONS(2880), - [anon_sym_u16] = ACTIONS(2880), - [anon_sym_i16] = ACTIONS(2880), - [anon_sym_u32] = ACTIONS(2880), - [anon_sym_i32] = ACTIONS(2880), - [anon_sym_u64] = ACTIONS(2880), - [anon_sym_i64] = ACTIONS(2880), - [anon_sym_u128] = ACTIONS(2880), - [anon_sym_i128] = ACTIONS(2880), - [anon_sym_isize] = ACTIONS(2880), - [anon_sym_usize] = ACTIONS(2880), - [anon_sym_f32] = ACTIONS(2880), - [anon_sym_f64] = ACTIONS(2880), - [anon_sym_bool] = ACTIONS(2880), - [anon_sym_str] = ACTIONS(2880), - [anon_sym_char] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2878), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), [anon_sym_COLON_COLON] = ACTIONS(2878), - [anon_sym_BANG] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2878), - [anon_sym_POUND] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2878), - [anon_sym_SQUOTE] = ACTIONS(2880), - [anon_sym_async] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_default] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_impl] = ACTIONS(2880), - [anon_sym_let] = ACTIONS(2880), - [anon_sym_loop] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_mod] = ACTIONS(2880), - [anon_sym_pub] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_static] = ACTIONS(2880), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_trait] = ACTIONS(2880), - [anon_sym_type] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_use] = ACTIONS(2880), - [anon_sym_while] = ACTIONS(2880), - [anon_sym_extern] = ACTIONS(2880), - [anon_sym_DOT_DOT] = ACTIONS(2878), - [anon_sym_yield] = ACTIONS(2880), - [anon_sym_move] = ACTIONS(2880), - [anon_sym_try] = ACTIONS(2880), - [sym_integer_literal] = ACTIONS(2878), - [aux_sym_string_literal_token1] = ACTIONS(2878), - [sym_char_literal] = ACTIONS(2878), - [anon_sym_true] = ACTIONS(2880), - [anon_sym_false] = ACTIONS(2880), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2880), - [sym_super] = ACTIONS(2880), - [sym_crate] = ACTIONS(2880), - [sym_metavariable] = ACTIONS(2878), - [sym_raw_string_literal] = ACTIONS(2878), - [sym_float_literal] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(2954), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(2956), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2958), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [775] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym_closure_expression] = STATE(2882), - [sym_closure_parameters] = STATE(131), - [sym__pattern] = STATE(2636), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2886), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1187), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1197), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [776] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym_closure_expression] = STATE(2853), - [sym_closure_parameters] = STATE(131), - [sym__pattern] = STATE(2651), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2904), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(2906), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1197), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_RBRACK] = ACTIONS(2962), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [777] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym_closure_expression] = STATE(3104), - [sym_closure_parameters] = STATE(131), - [sym__pattern] = STATE(2885), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1197), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [778] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym_closure_expression] = STATE(3104), - [sym_closure_parameters] = STATE(131), - [sym__pattern] = STATE(2885), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1197), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2966), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [779] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym_closure_expression] = STATE(3104), - [sym_closure_parameters] = STATE(131), - [sym__pattern] = STATE(2885), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2912), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1197), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_RBRACK] = ACTIONS(2968), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [780] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym_closure_expression] = STATE(3104), - [sym_closure_parameters] = STATE(131), - [sym__pattern] = STATE(2885), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_parameter] = STATE(2818), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2596), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2914), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1197), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(2954), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(2956), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2958), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [781] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym_closure_expression] = STATE(3104), - [sym_closure_parameters] = STATE(131), - [sym__pattern] = STATE(2885), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(33), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_static] = ACTIONS(1191), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [anon_sym_move] = ACTIONS(1197), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2970), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [782] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(921), - [sym__type] = STATE(2678), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [aux_sym_enum_variant_list_repeat1] = STATE(792), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(2918), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COMMA] = ACTIONS(2920), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2972), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [783] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(883), - [sym__type] = STATE(2785), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [aux_sym_enum_variant_list_repeat1] = STATE(793), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(2930), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2974), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [784] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(883), - [sym__type] = STATE(2785), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [aux_sym_enum_variant_list_repeat1] = STATE(793), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(2932), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2976), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [785] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(883), - [sym__type] = STATE(2785), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [aux_sym_enum_variant_list_repeat1] = STATE(793), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(2934), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_RBRACK] = ACTIONS(2978), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [786] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(883), - [sym__type] = STATE(2785), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [aux_sym_enum_variant_list_repeat1] = STATE(793), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(2936), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2980), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [787] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(883), - [sym__type] = STATE(2785), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [aux_sym_enum_variant_list_repeat1] = STATE(793), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(2938), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_RBRACK] = ACTIONS(2982), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [788] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(883), - [sym__type] = STATE(2785), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_parameter] = STATE(3114), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2913), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [aux_sym_enum_variant_list_repeat1] = STATE(793), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(2940), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(2956), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2958), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [789] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2632), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2544), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_RBRACK] = ACTIONS(1390), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2984), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1048), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2986), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [790] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2672), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(2930), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2942), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(2944), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), }, [791] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(883), - [sym__type] = STATE(2785), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(2942), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [aux_sym_enum_variant_list_repeat1] = STATE(793), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), }, [792] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(879), - [sym__type] = STATE(2627), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2465), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [aux_sym_enum_variant_list_repeat1] = STATE(1452), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [793] = { - [sym_attribute_item] = STATE(1494), - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym_visibility_modifier] = STATE(984), - [sym__type] = STATE(2718), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3088), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [aux_sym_enum_variant_list_repeat1] = STATE(1452), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_POUND] = ACTIONS(2922), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_pub] = ACTIONS(2926), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(2928), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [794] = { - [sym_parameter] = STATE(2801), - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2511), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3049), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_PIPE] = ACTIONS(2946), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(2948), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2950), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [795] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2542), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3143), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(2954), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [796] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2653), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3275), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_RBRACK] = ACTIONS(2956), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COMMA] = ACTIONS(2958), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [797] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2642), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2745), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_RBRACK] = ACTIONS(2960), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [798] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2642), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2409), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_RBRACK] = ACTIONS(2962), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(2988), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [799] = { - [sym_parameter] = STATE(3105), - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2884), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3079), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(2948), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2950), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [800] = { - [sym_function_modifiers] = STATE(3307), - [sym_const_parameter] = STATE(2835), - [sym_constrained_type_parameter] = STATE(2538), - [sym_optional_type_parameter] = STATE(2835), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2778), - [sym_bracketed_type] = STATE(3280), - [sym_qualified_type] = STATE(3303), - [sym_lifetime] = STATE(2301), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2099), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2964), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(2968), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(2970), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [801] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2642), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2087), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_RBRACK] = ACTIONS(2972), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [802] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2642), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1668), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2974), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_PLUS] = ACTIONS(2996), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [sym_mutable_specifier] = ACTIONS(3020), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [803] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2642), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2437), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_RBRACK] = ACTIONS(2976), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(3026), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [804] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2642), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2978), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(3030), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [805] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2642), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3030), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2980), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [806] = { - [sym_attribute_item] = STATE(844), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(2932), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [aux_sym_enum_variant_list_repeat1] = STATE(806), - [sym_identifier] = ACTIONS(2982), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_LBRACK] = ACTIONS(546), - [anon_sym_RBRACK] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(546), - [anon_sym_u8] = ACTIONS(2982), - [anon_sym_i8] = ACTIONS(2982), - [anon_sym_u16] = ACTIONS(2982), - [anon_sym_i16] = ACTIONS(2982), - [anon_sym_u32] = ACTIONS(2982), - [anon_sym_i32] = ACTIONS(2982), - [anon_sym_u64] = ACTIONS(2982), - [anon_sym_i64] = ACTIONS(2982), - [anon_sym_u128] = ACTIONS(2982), - [anon_sym_i128] = ACTIONS(2982), - [anon_sym_isize] = ACTIONS(2982), - [anon_sym_usize] = ACTIONS(2982), - [anon_sym_f32] = ACTIONS(2982), - [anon_sym_f64] = ACTIONS(2982), - [anon_sym_bool] = ACTIONS(2982), - [anon_sym_str] = ACTIONS(2982), - [anon_sym_char] = ACTIONS(2982), - [anon_sym__] = ACTIONS(2982), - [anon_sym_DASH] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(546), - [anon_sym_COLON_COLON] = ACTIONS(546), - [anon_sym_BANG] = ACTIONS(546), - [anon_sym_AMP] = ACTIONS(546), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(546), - [anon_sym_PIPE] = ACTIONS(546), - [anon_sym_SQUOTE] = ACTIONS(2982), - [anon_sym_async] = ACTIONS(2982), - [anon_sym_break] = ACTIONS(2982), - [anon_sym_const] = ACTIONS(2982), - [anon_sym_continue] = ACTIONS(2982), - [anon_sym_default] = ACTIONS(2982), - [anon_sym_for] = ACTIONS(2982), - [anon_sym_if] = ACTIONS(2982), - [anon_sym_loop] = ACTIONS(2982), - [anon_sym_match] = ACTIONS(2982), - [anon_sym_return] = ACTIONS(2982), - [anon_sym_static] = ACTIONS(2982), - [anon_sym_union] = ACTIONS(2982), - [anon_sym_unsafe] = ACTIONS(2982), - [anon_sym_while] = ACTIONS(2982), - [anon_sym_ref] = ACTIONS(2982), - [sym_mutable_specifier] = ACTIONS(2982), - [anon_sym_DOT_DOT] = ACTIONS(546), - [anon_sym_yield] = ACTIONS(2982), - [anon_sym_move] = ACTIONS(2982), - [anon_sym_try] = ACTIONS(2982), - [sym_integer_literal] = ACTIONS(546), - [aux_sym_string_literal_token1] = ACTIONS(546), - [sym_char_literal] = ACTIONS(546), - [anon_sym_true] = ACTIONS(2982), - [anon_sym_false] = ACTIONS(2982), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2982), - [sym_super] = ACTIONS(2982), - [sym_crate] = ACTIONS(2982), - [sym_metavariable] = ACTIONS(546), - [sym_raw_string_literal] = ACTIONS(546), - [sym_float_literal] = ACTIONS(546), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), }, [807] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2642), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(2946), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_RPAREN] = ACTIONS(2984), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), }, [808] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2084), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2068), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [809] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2701), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3032), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [810] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2725), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(3032), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3034), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [811] = { - [sym_function_modifiers] = STATE(3307), - [sym_higher_ranked_trait_bound] = STATE(2177), - [sym_removed_trait_bound] = STATE(2177), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2173), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2174), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(2954), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), }, [812] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2642), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(2929), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(3036), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), }, [813] = { - [sym_function_modifiers] = STATE(3307), - [sym_higher_ranked_trait_bound] = STATE(2177), - [sym_removed_trait_bound] = STATE(2177), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2173), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2172), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(3019), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_PLUS] = ACTIONS(3028), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(3038), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [814] = { - [sym_function_modifiers] = STATE(3307), - [sym_higher_ranked_trait_bound] = STATE(2177), - [sym_removed_trait_bound] = STATE(2177), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2175), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2174), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2077), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [815] = { - [sym_function_modifiers] = STATE(3307), - [sym_higher_ranked_trait_bound] = STATE(2152), - [sym_removed_trait_bound] = STATE(2152), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2151), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(2150), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2689), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_QMARK] = ACTIONS(2986), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(2988), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3040), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [816] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2943), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3036), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [817] = { - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_const_block] = STATE(2719), - [sym__pattern] = STATE(2859), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2914), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [818] = { - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_const_block] = STATE(2719), - [sym__pattern] = STATE(2769), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2063), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [819] = { - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_const_block] = STATE(2719), - [sym__pattern] = STATE(2768), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2064), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(2990), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [820] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2047), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3273), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(2992), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [821] = { - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_const_block] = STATE(2719), - [sym__pattern] = STATE(2832), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2396), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [822] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2382), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2547), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [823] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2392), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1197), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(2994), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [sym_mutable_specifier] = ACTIONS(3072), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [824] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2086), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2824), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [825] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2995), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(3033), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(1140), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [826] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3197), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3296), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3131), + [sym_macro_invocation] = STATE(2100), + [sym_scoped_identifier] = STATE(1929), + [sym_scoped_type_identifier] = STATE(2814), + [sym_const_block] = STATE(2100), + [sym__pattern] = STATE(2086), + [sym_tuple_pattern] = STATE(2100), + [sym_slice_pattern] = STATE(2100), + [sym_tuple_struct_pattern] = STATE(2100), + [sym_struct_pattern] = STATE(2100), + [sym_remaining_field_pattern] = STATE(2100), + [sym_mut_pattern] = STATE(2100), + [sym_range_pattern] = STATE(2100), + [sym_ref_pattern] = STATE(2100), + [sym_captured_pattern] = STATE(2100), + [sym_reference_pattern] = STATE(2100), + [sym_or_pattern] = STATE(2100), + [sym__literal_pattern] = STATE(1993), + [sym_negative_literal] = STATE(1997), + [sym_string_literal] = STATE(1997), + [sym_boolean_literal] = STATE(1997), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), + [sym_identifier] = ACTIONS(2866), + [anon_sym_LPAREN] = ACTIONS(2868), + [anon_sym_LBRACK] = ACTIONS(2872), + [anon_sym_u8] = ACTIONS(2874), + [anon_sym_i8] = ACTIONS(2874), + [anon_sym_u16] = ACTIONS(2874), + [anon_sym_i16] = ACTIONS(2874), + [anon_sym_u32] = ACTIONS(2874), + [anon_sym_i32] = ACTIONS(2874), + [anon_sym_u64] = ACTIONS(2874), + [anon_sym_i64] = ACTIONS(2874), + [anon_sym_u128] = ACTIONS(2874), + [anon_sym_i128] = ACTIONS(2874), + [anon_sym_isize] = ACTIONS(2874), + [anon_sym_usize] = ACTIONS(2874), + [anon_sym_f32] = ACTIONS(2874), + [anon_sym_f64] = ACTIONS(2874), + [anon_sym_bool] = ACTIONS(2874), + [anon_sym_str] = ACTIONS(2874), + [anon_sym_char] = ACTIONS(2874), + [anon_sym__] = ACTIONS(1130), + [anon_sym_DASH] = ACTIONS(1008), + [anon_sym_COLON_COLON] = ACTIONS(2878), + [anon_sym_AMP] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_const] = ACTIONS(2882), + [anon_sym_default] = ACTIONS(2884), + [anon_sym_union] = ACTIONS(2884), + [anon_sym_ref] = ACTIONS(1040), + [sym_mutable_specifier] = ACTIONS(3078), + [anon_sym_DOT_DOT] = ACTIONS(1142), + [sym_integer_literal] = ACTIONS(1050), + [aux_sym_string_literal_token1] = ACTIONS(1052), + [sym_char_literal] = ACTIONS(1050), + [anon_sym_true] = ACTIONS(1054), + [anon_sym_false] = ACTIONS(1054), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_self] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_crate] = ACTIONS(2886), + [sym_metavariable] = ACTIONS(2888), + [sym_raw_string_literal] = ACTIONS(1050), + [sym_float_literal] = ACTIONS(1050), }, [827] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2614), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_bracketed_type] = STATE(3483), + [sym_generic_type] = STATE(3287), + [sym_generic_type_with_turbofish] = STATE(3122), + [sym_macro_invocation] = STATE(2916), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2727), + [sym_const_block] = STATE(2916), + [sym__pattern] = STATE(2951), + [sym_tuple_pattern] = STATE(2916), + [sym_slice_pattern] = STATE(2916), + [sym_tuple_struct_pattern] = STATE(2916), + [sym_struct_pattern] = STATE(2916), + [sym_remaining_field_pattern] = STATE(2916), + [sym_mut_pattern] = STATE(2916), + [sym_range_pattern] = STATE(2916), + [sym_ref_pattern] = STATE(2916), + [sym_captured_pattern] = STATE(2916), + [sym_reference_pattern] = STATE(2916), + [sym_or_pattern] = STATE(2916), + [sym__literal_pattern] = STATE(2347), + [sym_negative_literal] = STATE(2338), + [sym_string_literal] = STATE(2338), + [sym_boolean_literal] = STATE(2338), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2996), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [sym_identifier] = ACTIONS(1580), + [anon_sym_LPAREN] = ACTIONS(1582), + [anon_sym_LBRACK] = ACTIONS(1584), + [anon_sym_u8] = ACTIONS(1588), + [anon_sym_i8] = ACTIONS(1588), + [anon_sym_u16] = ACTIONS(1588), + [anon_sym_i16] = ACTIONS(1588), + [anon_sym_u32] = ACTIONS(1588), + [anon_sym_i32] = ACTIONS(1588), + [anon_sym_u64] = ACTIONS(1588), + [anon_sym_i64] = ACTIONS(1588), + [anon_sym_u128] = ACTIONS(1588), + [anon_sym_i128] = ACTIONS(1588), + [anon_sym_isize] = ACTIONS(1588), + [anon_sym_usize] = ACTIONS(1588), + [anon_sym_f32] = ACTIONS(1588), + [anon_sym_f64] = ACTIONS(1588), + [anon_sym_bool] = ACTIONS(1588), + [anon_sym_str] = ACTIONS(1588), + [anon_sym_char] = ACTIONS(1588), + [anon_sym__] = ACTIONS(1590), + [anon_sym_DASH] = ACTIONS(1592), + [anon_sym_COLON_COLON] = ACTIONS(1594), + [anon_sym_AMP] = ACTIONS(1596), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_PIPE] = ACTIONS(1600), + [anon_sym_const] = ACTIONS(1602), + [anon_sym_default] = ACTIONS(1604), + [anon_sym_union] = ACTIONS(1604), + [anon_sym_ref] = ACTIONS(1606), + [sym_mutable_specifier] = ACTIONS(1608), + [anon_sym_DOT_DOT] = ACTIONS(1610), + [sym_integer_literal] = ACTIONS(1612), + [aux_sym_string_literal_token1] = ACTIONS(1614), + [sym_char_literal] = ACTIONS(1612), + [anon_sym_true] = ACTIONS(1616), + [anon_sym_false] = ACTIONS(1616), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1618), + [sym_super] = ACTIONS(1618), + [sym_crate] = ACTIONS(1618), + [sym_metavariable] = ACTIONS(1620), + [sym_raw_string_literal] = ACTIONS(1612), + [sym_float_literal] = ACTIONS(1612), }, [828] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2061), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_type_parameters] = STATE(941), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2289), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(2274), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(2116), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3080), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [829] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2991), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(804), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(3086), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [830] = { - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_const_block] = STATE(2719), - [sym__pattern] = STATE(2776), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2781), + [sym_bracketed_type] = STATE(3453), + [sym_qualified_type] = STATE(3444), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [831] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3161), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2899), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(3088), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [832] = { - [sym_bracketed_type] = STATE(3438), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3439), - [sym_macro_invocation] = STATE(2719), - [sym_scoped_identifier] = STATE(2129), - [sym_scoped_type_identifier] = STATE(2794), - [sym_const_block] = STATE(2719), - [sym__pattern] = STATE(2827), - [sym_tuple_pattern] = STATE(2719), - [sym_slice_pattern] = STATE(2719), - [sym_tuple_struct_pattern] = STATE(2719), - [sym_struct_pattern] = STATE(2719), - [sym_remaining_field_pattern] = STATE(2719), - [sym_mut_pattern] = STATE(2719), - [sym_range_pattern] = STATE(2719), - [sym_ref_pattern] = STATE(2719), - [sym_captured_pattern] = STATE(2719), - [sym_reference_pattern] = STATE(2719), - [sym_or_pattern] = STATE(2719), - [sym__literal_pattern] = STATE(2305), - [sym_negative_literal] = STATE(2302), - [sym_string_literal] = STATE(2302), - [sym_boolean_literal] = STATE(2302), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2552), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(832), [sym_block_comment] = STATE(832), - [sym_identifier] = ACTIONS(1544), - [anon_sym_LPAREN] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_u8] = ACTIONS(1552), - [anon_sym_i8] = ACTIONS(1552), - [anon_sym_u16] = ACTIONS(1552), - [anon_sym_i16] = ACTIONS(1552), - [anon_sym_u32] = ACTIONS(1552), - [anon_sym_i32] = ACTIONS(1552), - [anon_sym_u64] = ACTIONS(1552), - [anon_sym_i64] = ACTIONS(1552), - [anon_sym_u128] = ACTIONS(1552), - [anon_sym_i128] = ACTIONS(1552), - [anon_sym_isize] = ACTIONS(1552), - [anon_sym_usize] = ACTIONS(1552), - [anon_sym_f32] = ACTIONS(1552), - [anon_sym_f64] = ACTIONS(1552), - [anon_sym_bool] = ACTIONS(1552), - [anon_sym_str] = ACTIONS(1552), - [anon_sym_char] = ACTIONS(1552), - [anon_sym__] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1556), - [anon_sym_COLON_COLON] = ACTIONS(1558), - [anon_sym_AMP] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1564), - [anon_sym_union] = ACTIONS(1564), - [anon_sym_ref] = ACTIONS(1568), - [sym_mutable_specifier] = ACTIONS(1570), - [anon_sym_DOT_DOT] = ACTIONS(1572), - [sym_integer_literal] = ACTIONS(1576), - [aux_sym_string_literal_token1] = ACTIONS(1578), - [sym_char_literal] = ACTIONS(1576), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(1582), - [sym_metavariable] = ACTIONS(1584), - [sym_raw_string_literal] = ACTIONS(1576), - [sym_float_literal] = ACTIONS(1576), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3090), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [833] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2614), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1108), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(823), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2998), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [sym_mutable_specifier] = ACTIONS(3092), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [834] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3236), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_higher_ranked_trait_bound] = STATE(2141), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2137), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2133), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [835] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3047), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3096), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [836] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2990), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_higher_ranked_trait_bound] = STATE(2195), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2197), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2202), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [837] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2998), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2899), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [838] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3004), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_type_parameters] = STATE(895), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2334), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(2306), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(2136), [sym_line_comment] = STATE(838), [sym_block_comment] = STATE(838), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [839] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2089), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2659), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(839), [sym_block_comment] = STATE(839), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(3104), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [840] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2397), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2899), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(840), [sym_block_comment] = STATE(840), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(3000), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [841] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2075), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(3038), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(813), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(841), [sym_block_comment] = STATE(841), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [sym_mutable_specifier] = ACTIONS(3108), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [842] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(3193), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2899), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(842), [sym_block_comment] = STATE(842), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + }, + [843] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2899), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_line_comment] = STATE(843), + [sym_block_comment] = STATE(843), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + }, + [844] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2899), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_line_comment] = STATE(844), + [sym_block_comment] = STATE(844), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(3114), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + }, + [845] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_type_parameters] = STATE(858), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2300), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(2297), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(2142), + [sym_line_comment] = STATE(845), + [sym_block_comment] = STATE(845), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(3118), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + }, + [846] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2660), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_line_comment] = STATE(846), + [sym_block_comment] = STATE(846), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(3120), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, - [843] = { - [sym_bracketed_type] = STATE(3257), - [sym_generic_type] = STATE(3245), - [sym_generic_type_with_turbofish] = STATE(3260), - [sym_macro_invocation] = STATE(2050), - [sym_scoped_identifier] = STATE(1936), - [sym_scoped_type_identifier] = STATE(2804), - [sym_const_block] = STATE(2050), - [sym__pattern] = STATE(2399), - [sym_tuple_pattern] = STATE(2050), - [sym_slice_pattern] = STATE(2050), - [sym_tuple_struct_pattern] = STATE(2050), - [sym_struct_pattern] = STATE(2050), - [sym_remaining_field_pattern] = STATE(2050), - [sym_mut_pattern] = STATE(2050), - [sym_range_pattern] = STATE(2050), - [sym_ref_pattern] = STATE(2050), - [sym_captured_pattern] = STATE(2050), - [sym_reference_pattern] = STATE(2050), - [sym_or_pattern] = STATE(2050), - [sym__literal_pattern] = STATE(2002), - [sym_negative_literal] = STATE(2007), - [sym_string_literal] = STATE(2007), - [sym_boolean_literal] = STATE(2007), - [sym_line_comment] = STATE(843), - [sym_block_comment] = STATE(843), - [sym_identifier] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2888), - [anon_sym_u8] = ACTIONS(2890), - [anon_sym_i8] = ACTIONS(2890), - [anon_sym_u16] = ACTIONS(2890), - [anon_sym_i16] = ACTIONS(2890), - [anon_sym_u32] = ACTIONS(2890), - [anon_sym_i32] = ACTIONS(2890), - [anon_sym_u64] = ACTIONS(2890), - [anon_sym_i64] = ACTIONS(2890), - [anon_sym_u128] = ACTIONS(2890), - [anon_sym_i128] = ACTIONS(2890), - [anon_sym_isize] = ACTIONS(2890), - [anon_sym_usize] = ACTIONS(2890), - [anon_sym_f32] = ACTIONS(2890), - [anon_sym_f64] = ACTIONS(2890), - [anon_sym_bool] = ACTIONS(2890), - [anon_sym_str] = ACTIONS(2890), - [anon_sym_char] = ACTIONS(2890), - [anon_sym__] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1032), - [anon_sym_COLON_COLON] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2894), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_const] = ACTIONS(2896), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_union] = ACTIONS(2898), - [anon_sym_ref] = ACTIONS(1062), - [sym_mutable_specifier] = ACTIONS(1193), - [anon_sym_DOT_DOT] = ACTIONS(1195), - [sym_integer_literal] = ACTIONS(1072), - [aux_sym_string_literal_token1] = ACTIONS(1074), - [sym_char_literal] = ACTIONS(1072), - [anon_sym_true] = ACTIONS(1076), - [anon_sym_false] = ACTIONS(1076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2900), - [sym_super] = ACTIONS(2900), - [sym_crate] = ACTIONS(2900), - [sym_metavariable] = ACTIONS(2902), - [sym_raw_string_literal] = ACTIONS(1072), - [sym_float_literal] = ACTIONS(1072), + [847] = { + [sym_function_modifiers] = STATE(3448), + [sym_higher_ranked_trait_bound] = STATE(2195), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2208), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2202), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_line_comment] = STATE(847), + [sym_block_comment] = STATE(847), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, - [844] = { - [sym_line_comment] = STATE(844), - [sym_block_comment] = STATE(844), - [sym_identifier] = ACTIONS(3002), - [anon_sym_LPAREN] = ACTIONS(3004), - [anon_sym_LBRACK] = ACTIONS(3004), - [anon_sym_RBRACK] = ACTIONS(3004), - [anon_sym_LBRACE] = ACTIONS(3004), - [anon_sym_STAR] = ACTIONS(3004), + [848] = { + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2513), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), + [sym_line_comment] = STATE(848), + [sym_block_comment] = STATE(848), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_RPAREN] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), + }, + [849] = { + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1751), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(802), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), + [sym_line_comment] = STATE(849), + [sym_block_comment] = STATE(849), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), [anon_sym_u8] = ACTIONS(3002), [anon_sym_i8] = ACTIONS(3002), [anon_sym_u16] = ACTIONS(3002), @@ -99947,11027 +99255,10386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(3002), [anon_sym_str] = ACTIONS(3002), [anon_sym_char] = ACTIONS(3002), - [anon_sym__] = ACTIONS(3002), - [anon_sym_DASH] = ACTIONS(3004), - [anon_sym_COMMA] = ACTIONS(3004), [anon_sym_COLON_COLON] = ACTIONS(3004), - [anon_sym_BANG] = ACTIONS(3004), - [anon_sym_AMP] = ACTIONS(3004), - [anon_sym_POUND] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(3004), - [anon_sym_PIPE] = ACTIONS(3004), - [anon_sym_SQUOTE] = ACTIONS(3002), - [anon_sym_async] = ACTIONS(3002), - [anon_sym_break] = ACTIONS(3002), - [anon_sym_const] = ACTIONS(3002), - [anon_sym_continue] = ACTIONS(3002), - [anon_sym_default] = ACTIONS(3002), - [anon_sym_for] = ACTIONS(3002), - [anon_sym_if] = ACTIONS(3002), - [anon_sym_loop] = ACTIONS(3002), - [anon_sym_match] = ACTIONS(3002), - [anon_sym_return] = ACTIONS(3002), - [anon_sym_static] = ACTIONS(3002), - [anon_sym_union] = ACTIONS(3002), - [anon_sym_unsafe] = ACTIONS(3002), - [anon_sym_while] = ACTIONS(3002), - [anon_sym_ref] = ACTIONS(3002), - [sym_mutable_specifier] = ACTIONS(3002), - [anon_sym_DOT_DOT] = ACTIONS(3004), - [anon_sym_yield] = ACTIONS(3002), - [anon_sym_move] = ACTIONS(3002), - [anon_sym_try] = ACTIONS(3002), - [sym_integer_literal] = ACTIONS(3004), - [aux_sym_string_literal_token1] = ACTIONS(3004), - [sym_char_literal] = ACTIONS(3004), - [anon_sym_true] = ACTIONS(3002), - [anon_sym_false] = ACTIONS(3002), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3002), - [sym_super] = ACTIONS(3002), - [sym_crate] = ACTIONS(3002), - [sym_metavariable] = ACTIONS(3004), - [sym_raw_string_literal] = ACTIONS(3004), - [sym_float_literal] = ACTIONS(3004), - }, - [845] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3191), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_line_comment] = STATE(845), - [sym_block_comment] = STATE(845), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(3008), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - }, - [846] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1981), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_line_comment] = STATE(846), - [sym_block_comment] = STATE(846), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(3010), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3012), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - }, - [847] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1248), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), - [sym_line_comment] = STATE(847), - [sym_block_comment] = STATE(847), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3020), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [sym_mutable_specifier] = ACTIONS(3042), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), - }, - [848] = { - [sym_line_comment] = STATE(848), - [sym_block_comment] = STATE(848), - [sym_identifier] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_RBRACK] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_u8] = ACTIONS(2184), - [anon_sym_i8] = ACTIONS(2184), - [anon_sym_u16] = ACTIONS(2184), - [anon_sym_i16] = ACTIONS(2184), - [anon_sym_u32] = ACTIONS(2184), - [anon_sym_i32] = ACTIONS(2184), - [anon_sym_u64] = ACTIONS(2184), - [anon_sym_i64] = ACTIONS(2184), - [anon_sym_u128] = ACTIONS(2184), - [anon_sym_i128] = ACTIONS(2184), - [anon_sym_isize] = ACTIONS(2184), - [anon_sym_usize] = ACTIONS(2184), - [anon_sym_f32] = ACTIONS(2184), - [anon_sym_f64] = ACTIONS(2184), - [anon_sym_bool] = ACTIONS(2184), - [anon_sym_str] = ACTIONS(2184), - [anon_sym_char] = ACTIONS(2184), - [anon_sym__] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_COMMA] = ACTIONS(2182), - [anon_sym_COLON_COLON] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_AMP] = ACTIONS(2182), - [anon_sym_POUND] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_PIPE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2184), - [anon_sym_async] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_loop] = ACTIONS(2184), - [anon_sym_match] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_union] = ACTIONS(2184), - [anon_sym_unsafe] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_ref] = ACTIONS(2184), - [sym_mutable_specifier] = ACTIONS(2184), - [anon_sym_DOT_DOT] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2184), - [anon_sym_move] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [sym_integer_literal] = ACTIONS(2182), - [aux_sym_string_literal_token1] = ACTIONS(2182), - [sym_char_literal] = ACTIONS(2182), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [sym_mutable_specifier] = ACTIONS(3124), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2184), - [sym_super] = ACTIONS(2184), - [sym_crate] = ACTIONS(2184), - [sym_metavariable] = ACTIONS(2182), - [sym_raw_string_literal] = ACTIONS(2182), - [sym_float_literal] = ACTIONS(2182), - }, - [849] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1981), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_line_comment] = STATE(849), - [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_PLUS] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(3048), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [850] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1654), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), + [sym_function_modifiers] = STATE(3448), + [sym_higher_ranked_trait_bound] = STATE(2195), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2208), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(2212), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [sym_mutable_specifier] = ACTIONS(3078), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [851] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2847), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_type_parameters] = STATE(990), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2365), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(2367), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(2161), [sym_line_comment] = STATE(851), [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(3084), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(3084), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [852] = { - [sym_function_modifiers] = STATE(3307), - [sym_type_parameters] = STATE(930), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2327), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(2297), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(2146), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2659), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(852), [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3086), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [853] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2630), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2846), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(853), [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(3092), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [854] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3121), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(845), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2280), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(854), [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(3094), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [855] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2847), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1668), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(855), [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [856] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2778), - [sym_bracketed_type] = STATE(3280), - [sym_qualified_type] = STATE(3303), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1212), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(856), [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [857] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2847), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1696), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(857), [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [858] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2847), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2342), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(2343), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(2132), [sym_line_comment] = STATE(858), [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [859] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1374), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(847), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2181), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(859), [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [sym_mutable_specifier] = ACTIONS(3102), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [860] = { - [sym_function_modifiers] = STATE(3307), - [sym_type_parameters] = STATE(948), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2341), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(2340), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(2148), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2496), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(860), [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3104), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [861] = { - [sym_function_modifiers] = STATE(3307), - [sym_type_parameters] = STATE(880), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2358), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(2286), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(2121), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2188), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(861), [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3108), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(3110), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [862] = { - [sym_function_modifiers] = STATE(3307), - [sym_type_parameters] = STATE(872), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2347), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(2346), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(2145), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2311), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(862), [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3112), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(3114), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(3090), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [863] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2597), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2296), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(863), [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(3116), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [864] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2847), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1114), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(864), [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [865] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(849), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2298), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(865), [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [sym_mutable_specifier] = ACTIONS(3120), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [866] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2847), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2299), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(866), [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(3122), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [867] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1731), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(850), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2966), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(867), [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [sym_mutable_specifier] = ACTIONS(3124), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [868] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2654), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2301), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(868), [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_RPAREN] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [869] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2317), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2302), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(869), [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [870] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2296), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2193), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(870), [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [871] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2156), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1703), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(871), [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [872] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2323), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(2321), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(2136), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2851), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(872), [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [873] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2713), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2531), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(873), [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [874] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2447), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2919), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(874), [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [875] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2161), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2537), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(875), [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [876] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2944), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2400), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(876), [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [877] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2685), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2902), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(877), [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [878] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2783), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2173), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(878), [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [879] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2500), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2541), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(879), [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [880] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2277), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(2284), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(2133), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2322), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(880), [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [881] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2375), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2739), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(881), [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [882] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2307), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2323), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(882), [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [883] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2718), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2326), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(883), [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [884] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1240), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2328), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(884), [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [885] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2772), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2207), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(885), [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [886] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2202), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1104), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(886), [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [887] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2324), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2369), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(887), [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [888] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2298), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2284), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(888), [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [889] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2299), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2467), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(889), [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [890] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2331), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2686), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(890), [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [891] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2326), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2281), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(891), [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [892] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2334), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2842), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(892), [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [893] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2335), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2275), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(893), [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [894] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2650), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2836), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(894), [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [895] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2831), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2353), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(2314), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(2138), [sym_line_comment] = STATE(895), [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [896] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2330), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2575), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(896), [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [897] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2739), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1962), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(897), [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [898] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2638), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2383), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(898), [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [899] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2329), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1963), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(899), [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [900] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2788), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(3003), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(900), [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [901] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2857), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1682), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(901), [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [902] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2319), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2812), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(902), [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [903] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2669), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2169), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(903), [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [904] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2313), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2600), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(904), [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [905] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2665), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2617), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(905), [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [906] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2708), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2356), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(906), [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [907] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2626), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2513), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(907), [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [908] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2923), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2357), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(908), [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [909] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2569), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1749), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(909), [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [910] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1716), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2552), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(910), [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [911] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2201), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1957), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(1974), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(911), [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2896), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [912] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3186), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2780), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(912), [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [913] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3191), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(3136), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(913), [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [914] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1963), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(1967), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1128), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(914), [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [915] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2378), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1957), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(915), [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [916] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1972), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2355), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(916), [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [917] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1248), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2179), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(917), [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [918] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1963), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2776), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(918), [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [919] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2159), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2382), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(919), [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [920] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2647), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2187), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(920), [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [921] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2627), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2182), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(921), [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [922] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1250), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(922), [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [923] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2291), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(3019), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(923), [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [924] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2874), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2646), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(924), [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [925] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2744), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2185), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(925), [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [926] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2371), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1956), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(926), [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [927] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2439), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2787), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(927), [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [928] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2945), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2536), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(928), [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [929] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3194), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1976), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(929), [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [930] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2339), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(2289), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(2122), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1759), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(930), [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [931] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2934), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2345), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(931), [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [932] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2654), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1197), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(932), [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [933] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2168), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2660), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(933), [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [934] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2922), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2625), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(934), [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [935] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1159), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2921), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(935), [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [936] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1963), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(1967), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1957), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(1974), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(936), [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2966), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [937] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1157), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2346), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(937), [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [938] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1694), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2937), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(938), [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [939] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2644), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2184), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(939), [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [940] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2629), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2801), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(940), [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [941] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2213), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2331), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(2287), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(2123), [sym_line_comment] = STATE(941), [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [942] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2272), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1975), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(942), [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [943] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1151), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1309), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(943), [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [944] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2274), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1086), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(944), [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [945] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1139), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2278), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(945), [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [946] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2287), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1774), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(946), [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [947] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1686), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1981), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(947), [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [948] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2310), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(2314), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(2097), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1312), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(948), [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [949] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2936), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2764), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(949), [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [950] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2917), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1960), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(950), [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [951] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3201), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1710), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(951), [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [952] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1684), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1976), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(952), [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3142), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [953] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2356), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2709), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(953), [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [954] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1128), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2293), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(954), [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [955] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2276), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1969), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(955), [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [956] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2924), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1776), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(956), [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [957] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2280), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1442), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(957), [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [958] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2279), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2871), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(958), [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [959] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2214), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2350), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(959), [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [960] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2281), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2591), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(960), [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [961] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2355), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2837), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(961), [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [962] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1987), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2899), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(962), [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [963] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1683), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2318), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(963), [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [964] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1977), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1311), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(964), [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [965] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2319), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(965), [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [966] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1972), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1652), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(966), [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3144), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [967] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1971), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2292), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(967), [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [968] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2283), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1455), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(968), [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [969] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2285), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1369), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(969), [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [970] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2204), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2481), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(970), [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [971] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2633), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1437), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(971), [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [972] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1966), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1657), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(972), [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [973] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2742), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(3050), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(973), [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [974] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2847), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3297), + [sym_removed_trait_bound] = STATE(1221), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1429), + [sym_bracketed_type] = STATE(3466), + [sym_lifetime] = STATE(3414), + [sym_array_type] = STATE(1221), + [sym_for_lifetimes] = STATE(1620), + [sym_function_type] = STATE(1221), + [sym_tuple_type] = STATE(1221), + [sym_unit_type] = STATE(1221), + [sym_generic_type] = STATE(1067), + [sym_generic_type_with_turbofish] = STATE(3439), + [sym_bounded_type] = STATE(1221), + [sym_reference_type] = STATE(1221), + [sym_pointer_type] = STATE(1221), + [sym_never_type] = STATE(1221), + [sym_abstract_type] = STATE(1221), + [sym_dynamic_type] = STATE(1221), + [sym_macro_invocation] = STATE(1221), + [sym_scoped_identifier] = STATE(3283), + [sym_scoped_type_identifier] = STATE(1012), [sym_line_comment] = STATE(974), [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(3044), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3050), + [anon_sym_QMARK] = ACTIONS(3052), + [anon_sym_u8] = ACTIONS(3054), + [anon_sym_i8] = ACTIONS(3054), + [anon_sym_u16] = ACTIONS(3054), + [anon_sym_i16] = ACTIONS(3054), + [anon_sym_u32] = ACTIONS(3054), + [anon_sym_i32] = ACTIONS(3054), + [anon_sym_u64] = ACTIONS(3054), + [anon_sym_i64] = ACTIONS(3054), + [anon_sym_u128] = ACTIONS(3054), + [anon_sym_i128] = ACTIONS(3054), + [anon_sym_isize] = ACTIONS(3054), + [anon_sym_usize] = ACTIONS(3054), + [anon_sym_f32] = ACTIONS(3054), + [anon_sym_f64] = ACTIONS(3054), + [anon_sym_bool] = ACTIONS(3054), + [anon_sym_str] = ACTIONS(3054), + [anon_sym_char] = ACTIONS(3054), + [anon_sym_COLON_COLON] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(3058), + [anon_sym_AMP] = ACTIONS(3060), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3062), + [anon_sym_fn] = ACTIONS(3064), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3066), + [anon_sym_union] = ACTIONS(3068), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3070), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_crate] = ACTIONS(3074), + [sym_metavariable] = ACTIONS(3076), }, [975] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2295), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2330), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(975), [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [976] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2278), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1688), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(976), [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [977] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1437), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(3004), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(977), [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [978] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1666), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2628), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(978), [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [979] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2598), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2427), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(979), [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [980] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2417), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1955), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(980), [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [981] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1156), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2752), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(981), [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [982] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2197), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), [sym_line_comment] = STATE(982), [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_RBRACK] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2202), + [anon_sym_u8] = ACTIONS(2204), + [anon_sym_i8] = ACTIONS(2204), + [anon_sym_u16] = ACTIONS(2204), + [anon_sym_i16] = ACTIONS(2204), + [anon_sym_u32] = ACTIONS(2204), + [anon_sym_i32] = ACTIONS(2204), + [anon_sym_u64] = ACTIONS(2204), + [anon_sym_i64] = ACTIONS(2204), + [anon_sym_u128] = ACTIONS(2204), + [anon_sym_i128] = ACTIONS(2204), + [anon_sym_isize] = ACTIONS(2204), + [anon_sym_usize] = ACTIONS(2204), + [anon_sym_f32] = ACTIONS(2204), + [anon_sym_f64] = ACTIONS(2204), + [anon_sym_bool] = ACTIONS(2204), + [anon_sym_str] = ACTIONS(2204), + [anon_sym_char] = ACTIONS(2204), + [anon_sym__] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2202), + [anon_sym_COMMA] = ACTIONS(2202), + [anon_sym_COLON_COLON] = ACTIONS(2202), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_POUND] = ACTIONS(2202), + [anon_sym_LT] = ACTIONS(2202), + [anon_sym_PIPE] = ACTIONS(2202), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_async] = ACTIONS(2204), + [anon_sym_break] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_continue] = ACTIONS(2204), + [anon_sym_default] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_loop] = ACTIONS(2204), + [anon_sym_match] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_union] = ACTIONS(2204), + [anon_sym_unsafe] = ACTIONS(2204), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_ref] = ACTIONS(2204), + [sym_mutable_specifier] = ACTIONS(2204), + [anon_sym_DOT_DOT] = ACTIONS(2202), + [anon_sym_yield] = ACTIONS(2204), + [anon_sym_move] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2204), + [sym_integer_literal] = ACTIONS(2202), + [aux_sym_string_literal_token1] = ACTIONS(2202), + [sym_char_literal] = ACTIONS(2202), + [anon_sym_true] = ACTIONS(2204), + [anon_sym_false] = ACTIONS(2204), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2204), + [sym_super] = ACTIONS(2204), + [sym_crate] = ACTIONS(2204), + [sym_metavariable] = ACTIONS(2202), + [sym_raw_string_literal] = ACTIONS(2202), + [sym_float_literal] = ACTIONS(2202), }, [983] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1155), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2332), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(983), [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [984] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2724), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2795), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(984), [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [985] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), [sym__type] = STATE(1660), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(985), [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [986] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2492), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2604), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(986), [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [987] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2956), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(987), [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [988] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2209), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1971), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(988), [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [989] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2196), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1978), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(989), [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [990] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2194), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2276), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(2279), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(2121), [sym_line_comment] = STATE(990), [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [991] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1659), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1977), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(991), [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [992] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2793), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(3123), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(992), [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [993] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1654), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2200), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(993), [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [994] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1982), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3437), + [sym_removed_trait_bound] = STATE(1790), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(1659), + [sym_bracketed_type] = STATE(3490), + [sym_lifetime] = STATE(3529), + [sym_array_type] = STATE(1790), + [sym_for_lifetimes] = STATE(1571), + [sym_function_type] = STATE(1790), + [sym_tuple_type] = STATE(1790), + [sym_unit_type] = STATE(1790), + [sym_generic_type] = STATE(1569), + [sym_generic_type_with_turbofish] = STATE(3480), + [sym_bounded_type] = STATE(1790), + [sym_reference_type] = STATE(1790), + [sym_pointer_type] = STATE(1790), + [sym_never_type] = STATE(1790), + [sym_abstract_type] = STATE(1790), + [sym_dynamic_type] = STATE(1790), + [sym_macro_invocation] = STATE(1790), + [sym_scoped_identifier] = STATE(3125), + [sym_scoped_type_identifier] = STATE(1525), [sym_line_comment] = STATE(994), [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2990), + [anon_sym_LPAREN] = ACTIONS(2992), + [anon_sym_LBRACK] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(2998), + [anon_sym_QMARK] = ACTIONS(3000), + [anon_sym_u8] = ACTIONS(3002), + [anon_sym_i8] = ACTIONS(3002), + [anon_sym_u16] = ACTIONS(3002), + [anon_sym_i16] = ACTIONS(3002), + [anon_sym_u32] = ACTIONS(3002), + [anon_sym_i32] = ACTIONS(3002), + [anon_sym_u64] = ACTIONS(3002), + [anon_sym_i64] = ACTIONS(3002), + [anon_sym_u128] = ACTIONS(3002), + [anon_sym_i128] = ACTIONS(3002), + [anon_sym_isize] = ACTIONS(3002), + [anon_sym_usize] = ACTIONS(3002), + [anon_sym_f32] = ACTIONS(3002), + [anon_sym_f64] = ACTIONS(3002), + [anon_sym_bool] = ACTIONS(3002), + [anon_sym_str] = ACTIONS(3002), + [anon_sym_char] = ACTIONS(3002), + [anon_sym_COLON_COLON] = ACTIONS(3004), + [anon_sym_BANG] = ACTIONS(3006), + [anon_sym_AMP] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(3010), + [anon_sym_fn] = ACTIONS(3012), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(3014), + [anon_sym_union] = ACTIONS(3016), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(3018), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3022), + [sym_super] = ACTIONS(3022), + [sym_crate] = ACTIONS(3022), + [sym_metavariable] = ACTIONS(3024), }, [995] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2660), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_function_modifiers] = STATE(3448), + [sym_removed_trait_bound] = STATE(1965), + [sym_extern_modifier] = STATE(2366), + [sym__type] = STATE(2387), + [sym_bracketed_type] = STATE(3453), + [sym_lifetime] = STATE(3441), + [sym_array_type] = STATE(1965), + [sym_for_lifetimes] = STATE(1575), + [sym_function_type] = STATE(1965), + [sym_tuple_type] = STATE(1965), + [sym_unit_type] = STATE(1965), + [sym_generic_type] = STATE(1927), + [sym_generic_type_with_turbofish] = STATE(3438), + [sym_bounded_type] = STATE(1965), + [sym_reference_type] = STATE(1965), + [sym_pointer_type] = STATE(1965), + [sym_never_type] = STATE(1965), + [sym_abstract_type] = STATE(1965), + [sym_dynamic_type] = STATE(1965), + [sym_macro_invocation] = STATE(1965), + [sym_scoped_identifier] = STATE(3126), + [sym_scoped_type_identifier] = STATE(1901), [sym_line_comment] = STATE(995), [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_function_modifiers_repeat1] = STATE(2178), + [sym_identifier] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(1528), + [anon_sym_LBRACK] = ACTIONS(1530), + [anon_sym_STAR] = ACTIONS(1000), + [anon_sym_QMARK] = ACTIONS(1002), + [anon_sym_u8] = ACTIONS(1534), + [anon_sym_i8] = ACTIONS(1534), + [anon_sym_u16] = ACTIONS(1534), + [anon_sym_i16] = ACTIONS(1534), + [anon_sym_u32] = ACTIONS(1534), + [anon_sym_i32] = ACTIONS(1534), + [anon_sym_u64] = ACTIONS(1534), + [anon_sym_i64] = ACTIONS(1534), + [anon_sym_u128] = ACTIONS(1534), + [anon_sym_i128] = ACTIONS(1534), + [anon_sym_isize] = ACTIONS(1534), + [anon_sym_usize] = ACTIONS(1534), + [anon_sym_f32] = ACTIONS(1534), + [anon_sym_f64] = ACTIONS(1534), + [anon_sym_bool] = ACTIONS(1534), + [anon_sym_str] = ACTIONS(1534), + [anon_sym_char] = ACTIONS(1534), + [anon_sym_COLON_COLON] = ACTIONS(1536), + [anon_sym_BANG] = ACTIONS(1014), + [anon_sym_AMP] = ACTIONS(1538), + [anon_sym_LT] = ACTIONS(31), + [anon_sym_SQUOTE] = ACTIONS(2914), + [anon_sym_async] = ACTIONS(1024), + [anon_sym_const] = ACTIONS(1024), + [anon_sym_default] = ACTIONS(1544), + [anon_sym_fn] = ACTIONS(1030), + [anon_sym_for] = ACTIONS(1032), + [anon_sym_impl] = ACTIONS(1034), + [anon_sym_union] = ACTIONS(1546), + [anon_sym_unsafe] = ACTIONS(1024), + [anon_sym_extern] = ACTIONS(1038), + [anon_sym_dyn] = ACTIONS(1044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1550), + [sym_super] = ACTIONS(1550), + [sym_crate] = ACTIONS(1550), + [sym_metavariable] = ACTIONS(1552), }, [996] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1968), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), + [sym_attribute_item] = STATE(997), [sym_line_comment] = STATE(996), [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [aux_sym_enum_variant_list_repeat1] = STATE(996), + [sym_identifier] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(530), + [anon_sym_LBRACK] = ACTIONS(530), + [anon_sym_RBRACK] = ACTIONS(530), + [anon_sym_LBRACE] = ACTIONS(530), + [anon_sym_STAR] = ACTIONS(530), + [anon_sym_u8] = ACTIONS(3148), + [anon_sym_i8] = ACTIONS(3148), + [anon_sym_u16] = ACTIONS(3148), + [anon_sym_i16] = ACTIONS(3148), + [anon_sym_u32] = ACTIONS(3148), + [anon_sym_i32] = ACTIONS(3148), + [anon_sym_u64] = ACTIONS(3148), + [anon_sym_i64] = ACTIONS(3148), + [anon_sym_u128] = ACTIONS(3148), + [anon_sym_i128] = ACTIONS(3148), + [anon_sym_isize] = ACTIONS(3148), + [anon_sym_usize] = ACTIONS(3148), + [anon_sym_f32] = ACTIONS(3148), + [anon_sym_f64] = ACTIONS(3148), + [anon_sym_bool] = ACTIONS(3148), + [anon_sym_str] = ACTIONS(3148), + [anon_sym_char] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(530), + [anon_sym_COMMA] = ACTIONS(530), + [anon_sym_COLON_COLON] = ACTIONS(530), + [anon_sym_BANG] = ACTIONS(530), + [anon_sym_AMP] = ACTIONS(530), + [anon_sym_POUND] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(530), + [anon_sym_PIPE] = ACTIONS(530), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_async] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_default] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_loop] = ACTIONS(3148), + [anon_sym_match] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_union] = ACTIONS(3148), + [anon_sym_unsafe] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_DOT_DOT] = ACTIONS(530), + [anon_sym_yield] = ACTIONS(3148), + [anon_sym_move] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [sym_integer_literal] = ACTIONS(530), + [aux_sym_string_literal_token1] = ACTIONS(530), + [sym_char_literal] = ACTIONS(530), + [anon_sym_true] = ACTIONS(3148), + [anon_sym_false] = ACTIONS(3148), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3148), + [sym_super] = ACTIONS(3148), + [sym_crate] = ACTIONS(3148), + [sym_metavariable] = ACTIONS(530), + [sym_raw_string_literal] = ACTIONS(530), + [sym_float_literal] = ACTIONS(530), }, [997] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2939), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), [sym_line_comment] = STATE(997), [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - }, - [998] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1657), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), - [sym_line_comment] = STATE(998), - [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), - }, - [999] = { - [sym_function_modifiers] = STATE(3258), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1274), - [sym_bracketed_type] = STATE(3423), - [sym_lifetime] = STATE(3362), - [sym_array_type] = STATE(1446), - [sym_for_lifetimes] = STATE(1693), - [sym_function_type] = STATE(1446), - [sym_tuple_type] = STATE(1446), - [sym_unit_type] = STATE(1446), - [sym_generic_type] = STATE(1073), - [sym_generic_type_with_turbofish] = STATE(3424), - [sym_bounded_type] = STATE(1446), - [sym_reference_type] = STATE(1446), - [sym_pointer_type] = STATE(1446), - [sym_empty_type] = STATE(1446), - [sym_abstract_type] = STATE(1446), - [sym_dynamic_type] = STATE(1446), - [sym_macro_invocation] = STATE(1446), - [sym_scoped_identifier] = STATE(3228), - [sym_scoped_type_identifier] = STATE(1021), - [sym_line_comment] = STATE(999), - [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3014), - [anon_sym_LPAREN] = ACTIONS(3016), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_STAR] = ACTIONS(3022), - [anon_sym_u8] = ACTIONS(3024), - [anon_sym_i8] = ACTIONS(3024), - [anon_sym_u16] = ACTIONS(3024), - [anon_sym_i16] = ACTIONS(3024), - [anon_sym_u32] = ACTIONS(3024), - [anon_sym_i32] = ACTIONS(3024), - [anon_sym_u64] = ACTIONS(3024), - [anon_sym_i64] = ACTIONS(3024), - [anon_sym_u128] = ACTIONS(3024), - [anon_sym_i128] = ACTIONS(3024), - [anon_sym_isize] = ACTIONS(3024), - [anon_sym_usize] = ACTIONS(3024), - [anon_sym_f32] = ACTIONS(3024), - [anon_sym_f64] = ACTIONS(3024), - [anon_sym_bool] = ACTIONS(3024), - [anon_sym_str] = ACTIONS(3024), - [anon_sym_char] = ACTIONS(3024), - [anon_sym_COLON_COLON] = ACTIONS(3026), - [anon_sym_BANG] = ACTIONS(3028), - [anon_sym_AMP] = ACTIONS(3030), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3032), - [anon_sym_fn] = ACTIONS(3034), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3036), - [anon_sym_union] = ACTIONS(3038), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3040), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3044), - [sym_super] = ACTIONS(3044), - [sym_crate] = ACTIONS(3044), - [sym_metavariable] = ACTIONS(3046), - }, - [1000] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1637), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), - [sym_line_comment] = STATE(1000), - [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), - }, - [1001] = { - [sym_function_modifiers] = STATE(3396), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1631), - [sym_bracketed_type] = STATE(3448), - [sym_lifetime] = STATE(3484), - [sym_array_type] = STATE(1599), - [sym_for_lifetimes] = STATE(1695), - [sym_function_type] = STATE(1599), - [sym_tuple_type] = STATE(1599), - [sym_unit_type] = STATE(1599), - [sym_generic_type] = STATE(1548), - [sym_generic_type_with_turbofish] = STATE(3449), - [sym_bounded_type] = STATE(1599), - [sym_reference_type] = STATE(1599), - [sym_pointer_type] = STATE(1599), - [sym_empty_type] = STATE(1599), - [sym_abstract_type] = STATE(1599), - [sym_dynamic_type] = STATE(1599), - [sym_macro_invocation] = STATE(1599), - [sym_scoped_identifier] = STATE(3073), - [sym_scoped_type_identifier] = STATE(1493), - [sym_line_comment] = STATE(1001), - [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(3050), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_LBRACK] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3058), - [anon_sym_u8] = ACTIONS(3060), - [anon_sym_i8] = ACTIONS(3060), - [anon_sym_u16] = ACTIONS(3060), - [anon_sym_i16] = ACTIONS(3060), - [anon_sym_u32] = ACTIONS(3060), - [anon_sym_i32] = ACTIONS(3060), - [anon_sym_u64] = ACTIONS(3060), - [anon_sym_i64] = ACTIONS(3060), - [anon_sym_u128] = ACTIONS(3060), - [anon_sym_i128] = ACTIONS(3060), - [anon_sym_isize] = ACTIONS(3060), - [anon_sym_usize] = ACTIONS(3060), - [anon_sym_f32] = ACTIONS(3060), - [anon_sym_f64] = ACTIONS(3060), - [anon_sym_bool] = ACTIONS(3060), - [anon_sym_str] = ACTIONS(3060), - [anon_sym_char] = ACTIONS(3060), - [anon_sym_COLON_COLON] = ACTIONS(3062), - [anon_sym_BANG] = ACTIONS(3064), - [anon_sym_AMP] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_fn] = ACTIONS(3070), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(3072), - [anon_sym_union] = ACTIONS(3074), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(3076), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3080), - [sym_super] = ACTIONS(3080), - [sym_crate] = ACTIONS(3080), - [sym_metavariable] = ACTIONS(3082), - }, - [1002] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(2182), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_line_comment] = STATE(1002), - [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - }, - [1003] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1981), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_line_comment] = STATE(1003), - [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - }, - [1004] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(3241), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_line_comment] = STATE(1004), - [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), - }, - [1005] = { - [sym_function_modifiers] = STATE(3307), - [sym_extern_modifier] = STATE(2318), - [sym__type] = STATE(1970), - [sym_bracketed_type] = STATE(3280), - [sym_lifetime] = STATE(3302), - [sym_array_type] = STATE(1980), - [sym_for_lifetimes] = STATE(1732), - [sym_function_type] = STATE(1980), - [sym_tuple_type] = STATE(1980), - [sym_unit_type] = STATE(1980), - [sym_generic_type] = STATE(1939), - [sym_generic_type_with_turbofish] = STATE(3296), - [sym_bounded_type] = STATE(1980), - [sym_reference_type] = STATE(1980), - [sym_pointer_type] = STATE(1980), - [sym_empty_type] = STATE(1980), - [sym_abstract_type] = STATE(1980), - [sym_dynamic_type] = STATE(1980), - [sym_macro_invocation] = STATE(1980), - [sym_scoped_identifier] = STATE(3187), - [sym_scoped_type_identifier] = STATE(1915), - [sym_line_comment] = STATE(1005), - [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2165), - [sym_identifier] = ACTIONS(2916), - [anon_sym_LPAREN] = ACTIONS(1602), - [anon_sym_LBRACK] = ACTIONS(1604), - [anon_sym_STAR] = ACTIONS(1026), - [anon_sym_u8] = ACTIONS(1608), - [anon_sym_i8] = ACTIONS(1608), - [anon_sym_u16] = ACTIONS(1608), - [anon_sym_i16] = ACTIONS(1608), - [anon_sym_u32] = ACTIONS(1608), - [anon_sym_i32] = ACTIONS(1608), - [anon_sym_u64] = ACTIONS(1608), - [anon_sym_i64] = ACTIONS(1608), - [anon_sym_u128] = ACTIONS(1608), - [anon_sym_i128] = ACTIONS(1608), - [anon_sym_isize] = ACTIONS(1608), - [anon_sym_usize] = ACTIONS(1608), - [anon_sym_f32] = ACTIONS(1608), - [anon_sym_f64] = ACTIONS(1608), - [anon_sym_bool] = ACTIONS(1608), - [anon_sym_str] = ACTIONS(1608), - [anon_sym_char] = ACTIONS(1608), - [anon_sym_COLON_COLON] = ACTIONS(1610), - [anon_sym_BANG] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1612), - [anon_sym_LT] = ACTIONS(31), - [anon_sym_SQUOTE] = ACTIONS(2924), - [anon_sym_async] = ACTIONS(1046), - [anon_sym_const] = ACTIONS(1046), - [anon_sym_default] = ACTIONS(1618), - [anon_sym_fn] = ACTIONS(1052), - [anon_sym_for] = ACTIONS(1054), - [anon_sym_impl] = ACTIONS(1056), - [anon_sym_union] = ACTIONS(1620), - [anon_sym_unsafe] = ACTIONS(1046), - [anon_sym_extern] = ACTIONS(1060), - [anon_sym_dyn] = ACTIONS(1066), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1624), - [sym_super] = ACTIONS(1624), - [sym_crate] = ACTIONS(1624), - [sym_metavariable] = ACTIONS(1626), + [sym_identifier] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_RBRACK] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(3152), + [anon_sym_u8] = ACTIONS(3150), + [anon_sym_i8] = ACTIONS(3150), + [anon_sym_u16] = ACTIONS(3150), + [anon_sym_i16] = ACTIONS(3150), + [anon_sym_u32] = ACTIONS(3150), + [anon_sym_i32] = ACTIONS(3150), + [anon_sym_u64] = ACTIONS(3150), + [anon_sym_i64] = ACTIONS(3150), + [anon_sym_u128] = ACTIONS(3150), + [anon_sym_i128] = ACTIONS(3150), + [anon_sym_isize] = ACTIONS(3150), + [anon_sym_usize] = ACTIONS(3150), + [anon_sym_f32] = ACTIONS(3150), + [anon_sym_f64] = ACTIONS(3150), + [anon_sym_bool] = ACTIONS(3150), + [anon_sym_str] = ACTIONS(3150), + [anon_sym_char] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_COMMA] = ACTIONS(3152), + [anon_sym_COLON_COLON] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_AMP] = ACTIONS(3152), + [anon_sym_POUND] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3152), + [anon_sym_PIPE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_loop] = ACTIONS(3150), + [anon_sym_match] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_union] = ACTIONS(3150), + [anon_sym_unsafe] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_DOT_DOT] = ACTIONS(3152), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_move] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [sym_integer_literal] = ACTIONS(3152), + [aux_sym_string_literal_token1] = ACTIONS(3152), + [sym_char_literal] = ACTIONS(3152), + [anon_sym_true] = ACTIONS(3150), + [anon_sym_false] = ACTIONS(3150), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_crate] = ACTIONS(3150), + [sym_metavariable] = ACTIONS(3152), + [sym_raw_string_literal] = ACTIONS(3152), + [sym_float_literal] = ACTIONS(3152), }, }; @@ -110977,80 +109644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1006), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3148), 17, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_DASH_GT, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3146), 43, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_DASH, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_break, - anon_sym_const, - anon_sym_continue, - anon_sym_default, - anon_sym_for, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_static, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_yield, - anon_sym_move, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [75] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1007), 2, + STATE(998), 2, sym_line_comment, sym_block_comment, - ACTIONS(1540), 17, + ACTIONS(3156), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -111068,7 +109665,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1538), 43, + ACTIONS(3154), 43, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111112,15 +109709,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [150] = 5, + [75] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1008), 2, + STATE(999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3152), 17, + ACTIONS(1520), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -111138,7 +109735,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3150), 43, + ACTIONS(1518), 43, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111182,15 +109779,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [225] = 5, + [150] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1009), 2, + STATE(1000), 2, sym_line_comment, sym_block_comment, - ACTIONS(752), 18, + ACTIONS(734), 18, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -111209,7 +109806,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3154), 41, + ACTIONS(3158), 41, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111251,31 +109848,33 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [299] = 5, + [224] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1010), 2, + STATE(1001), 2, sym_line_comment, sym_block_comment, - ACTIONS(2182), 15, + ACTIONS(2202), 17, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, + anon_sym_QMARK, anon_sym_DASH, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_AMP, anon_sym_LT, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, sym_integer_literal, aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2184), 38, + ACTIONS(2204), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111314,15 +109913,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [367] = 5, + [294] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1011), 2, + STATE(1002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3158), 19, + ACTIONS(3162), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111332,6 +109931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_PLUS, anon_sym_STAR, + anon_sym_QMARK, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, @@ -111342,7 +109942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3156), 34, + ACTIONS(3160), 34, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111377,27 +109977,179 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [435] = 11, + [363] = 20, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1008), 1, + anon_sym_DASH, + ACTIONS(1052), 1, + aux_sym_string_literal_token1, + ACTIONS(1646), 1, + anon_sym_COLON_COLON, + ACTIONS(3164), 1, + sym_identifier, + ACTIONS(3174), 1, + sym_metavariable, + STATE(2062), 1, + sym_scoped_identifier, + STATE(2069), 1, + sym__literal_pattern, + STATE(3313), 1, + sym_generic_type_with_turbofish, + STATE(3383), 1, + sym_bracketed_type, + ACTIONS(1054), 2, + anon_sym_true, + anon_sym_false, + STATE(1003), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3168), 3, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + ACTIONS(3172), 3, + sym_self, + sym_super, + sym_crate, + STATE(1997), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(1050), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3166), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3170), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [459] = 20, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1008), 1, + anon_sym_DASH, + ACTIONS(1052), 1, + aux_sym_string_literal_token1, + ACTIONS(1646), 1, + anon_sym_COLON_COLON, + ACTIONS(3176), 1, + sym_identifier, + ACTIONS(3186), 1, + sym_metavariable, + STATE(2051), 1, + sym_scoped_identifier, + STATE(2084), 1, + sym__literal_pattern, + STATE(3313), 1, + sym_generic_type_with_turbofish, + STATE(3383), 1, + sym_bracketed_type, + ACTIONS(1054), 2, + anon_sym_true, + anon_sym_false, + STATE(1004), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3180), 3, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + ACTIONS(3184), 3, + sym_self, + sym_super, + sym_crate, + STATE(1997), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(1050), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3178), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3182), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [555] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3190), 1, anon_sym_LPAREN, - ACTIONS(3166), 1, + ACTIONS(3194), 1, anon_sym_COLON_COLON, - ACTIONS(3168), 1, + ACTIONS(3196), 1, anon_sym_BANG, - ACTIONS(3170), 1, + ACTIONS(3198), 1, anon_sym_LT2, - STATE(1071), 1, - sym_parameters, - STATE(1076), 1, + STATE(1075), 1, sym_type_arguments, - STATE(1012), 2, + STATE(1076), 1, + sym_parameters, + STATE(1005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3164), 17, + ACTIONS(3192), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -111415,7 +110167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3160), 27, + ACTIONS(3188), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -111443,25 +110195,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [512] = 10, + [632] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3190), 1, anon_sym_LPAREN, - ACTIONS(3170), 1, + ACTIONS(3198), 1, anon_sym_LT2, - ACTIONS(3176), 1, + ACTIONS(3204), 1, anon_sym_COLON_COLON, - STATE(1071), 1, - sym_parameters, - STATE(1076), 1, + STATE(1075), 1, sym_type_arguments, - STATE(1013), 2, + STATE(1076), 1, + sym_parameters, + STATE(1006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3174), 17, + ACTIONS(3202), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -111479,7 +110231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3172), 27, + ACTIONS(3200), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -111507,25 +110259,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [586] = 10, + [706] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3190), 1, anon_sym_LPAREN, - ACTIONS(3170), 1, + ACTIONS(3198), 1, anon_sym_LT2, - ACTIONS(3176), 1, + ACTIONS(3204), 1, anon_sym_COLON_COLON, - STATE(1071), 1, - sym_parameters, - STATE(1076), 1, + STATE(1075), 1, sym_type_arguments, - STATE(1014), 2, + STATE(1076), 1, + sym_parameters, + STATE(1007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3180), 17, + ACTIONS(3208), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -111543,7 +110295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3178), 27, + ACTIONS(3206), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -111571,25 +110323,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [660] = 10, + [780] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3190), 1, anon_sym_LPAREN, - ACTIONS(3170), 1, + ACTIONS(3198), 1, anon_sym_LT2, - ACTIONS(3176), 1, + ACTIONS(3204), 1, anon_sym_COLON_COLON, - STATE(1071), 1, - sym_parameters, - STATE(1076), 1, + STATE(1075), 1, sym_type_arguments, - STATE(1015), 2, + STATE(1076), 1, + sym_parameters, + STATE(1008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3184), 17, + ACTIONS(3212), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -111607,7 +110359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3182), 27, + ACTIONS(3210), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -111635,81 +110387,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [734] = 5, + [854] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1016), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(886), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3218), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - anon_sym_PIPE, - sym_metavariable, - ACTIONS(888), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [797] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - anon_sym_LPAREN, - ACTIONS(3170), 1, - anon_sym_LT2, - STATE(1068), 1, - sym_type_arguments, - STATE(1070), 1, - sym_parameters, - STATE(1017), 2, + ACTIONS(3220), 1, + anon_sym_BANG, + STATE(1009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3188), 17, + ACTIONS(3216), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -111727,8 +110417,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3186), 27, + ACTIONS(3214), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -111740,6 +110431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111755,139 +110447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [868] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1018), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(876), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - anon_sym_PIPE, - sym_metavariable, - ACTIONS(878), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [931] = 5, + [921] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1019), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(896), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, + ACTIONS(3226), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - anon_sym_PIPE, - sym_metavariable, - ACTIONS(898), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [994] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - anon_sym_LPAREN, - ACTIONS(3170), 1, - anon_sym_LT2, - STATE(1068), 1, - sym_type_arguments, - STATE(1070), 1, - sym_parameters, - STATE(1020), 2, + ACTIONS(3228), 1, + anon_sym_BANG, + STATE(1010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3192), 17, + ACTIONS(3224), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -111905,8 +110477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3190), 27, + ACTIONS(3222), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -111918,6 +110491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111933,23 +110507,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [1065] = 9, + [988] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3190), 1, anon_sym_LPAREN, - ACTIONS(3170), 1, + ACTIONS(3198), 1, anon_sym_LT2, - STATE(1068), 1, + STATE(1066), 1, sym_type_arguments, - STATE(1070), 1, + STATE(1069), 1, sym_parameters, - STATE(1021), 2, + STATE(1011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3196), 17, + ACTIONS(3232), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -111967,7 +110541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3194), 27, + ACTIONS(3230), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -111995,19 +110569,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [1136] = 7, + [1059] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3202), 1, - anon_sym_COLON_COLON, - ACTIONS(3204), 1, - anon_sym_BANG, - STATE(1022), 2, + ACTIONS(3190), 1, + anon_sym_LPAREN, + ACTIONS(3198), 1, + anon_sym_LT2, + STATE(1066), 1, + sym_type_arguments, + STATE(1069), 1, + sym_parameters, + STATE(1012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3200), 17, + ACTIONS(3236), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112025,9 +110603,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3198), 29, + ACTIONS(3234), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112039,7 +110616,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112055,19 +110631,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [1203] = 7, + [1130] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3210), 1, + ACTIONS(3242), 1, anon_sym_COLON_COLON, - ACTIONS(3212), 1, + ACTIONS(3244), 1, anon_sym_BANG, - STATE(1023), 2, + STATE(1013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3208), 17, + ACTIONS(3240), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112085,7 +110661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3206), 29, + ACTIONS(3238), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112115,15 +110691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [1270] = 5, + [1197] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1024), 2, + STATE(1014), 2, sym_line_comment, sym_block_comment, - ACTIONS(998), 9, + ACTIONS(878), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112133,7 +110709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, sym_metavariable, - ACTIONS(1000), 39, + ACTIONS(880), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112173,15 +110749,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1333] = 5, + [1260] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1025), 2, + STATE(1015), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(984), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + anon_sym_PIPE, + sym_metavariable, + ACTIONS(986), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1323] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1016), 2, sym_line_comment, sym_block_comment, - ACTIONS(978), 9, + ACTIONS(868), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112191,7 +110825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, sym_metavariable, - ACTIONS(980), 39, + ACTIONS(870), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112231,23 +110865,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1396] = 9, + [1386] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3190), 1, anon_sym_LPAREN, - ACTIONS(3170), 1, + ACTIONS(3198), 1, anon_sym_LT2, - STATE(1068), 1, + STATE(1066), 1, sym_type_arguments, - STATE(1070), 1, + STATE(1069), 1, sym_parameters, - STATE(1026), 2, + STATE(1017), 2, sym_line_comment, sym_block_comment, - ACTIONS(3216), 17, + ACTIONS(3248), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112265,7 +110899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3214), 27, + ACTIONS(3246), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -112293,15 +110927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [1467] = 5, + [1457] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1027), 2, + STATE(1018), 2, sym_line_comment, sym_block_comment, - ACTIONS(994), 9, + ACTIONS(854), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112311,7 +110945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, sym_metavariable, - ACTIONS(996), 39, + ACTIONS(856), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112351,15 +110985,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1530] = 5, + [1520] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1028), 2, + STATE(1019), 2, sym_line_comment, sym_block_comment, - ACTIONS(882), 9, + ACTIONS(850), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112369,7 +111003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, sym_metavariable, - ACTIONS(884), 39, + ACTIONS(852), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112409,15 +111043,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1593] = 5, + [1583] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1029), 2, + STATE(1020), 2, sym_line_comment, sym_block_comment, - ACTIONS(890), 9, + ACTIONS(988), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112427,7 +111061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, sym_metavariable, - ACTIONS(892), 39, + ACTIONS(990), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112467,15 +111101,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1656] = 5, + [1646] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1030), 2, + STATE(1021), 2, sym_line_comment, sym_block_comment, - ACTIONS(908), 9, + ACTIONS(864), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112485,7 +111119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_PIPE, sym_metavariable, - ACTIONS(910), 39, + ACTIONS(866), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112525,19 +111159,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1719] = 7, + [1709] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3222), 1, + ACTIONS(3254), 1, anon_sym_COLON_COLON, - ACTIONS(3224), 1, + ACTIONS(3256), 1, anon_sym_BANG, - STATE(1031), 2, + STATE(1022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3220), 17, + ACTIONS(3252), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112555,7 +111189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3218), 29, + ACTIONS(3250), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112585,19 +111219,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [1786] = 7, + [1776] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3230), 1, + STATE(1023), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(888), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_COLON_COLON, - ACTIONS(3232), 1, - anon_sym_BANG, - STATE(1032), 2, + anon_sym_POUND, + anon_sym_LT, + anon_sym_PIPE, + sym_metavariable, + ACTIONS(890), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1839] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3228), 17, + ACTIONS(858), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + anon_sym_PIPE, + sym_metavariable, + ACTIONS(860), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1902] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3190), 1, + anon_sym_LPAREN, + ACTIONS(3198), 1, + anon_sym_LT2, + STATE(1066), 1, + sym_type_arguments, + STATE(1069), 1, + sym_parameters, + STATE(1025), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3260), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112615,9 +111369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LT_LT_EQ, - ACTIONS(3226), 29, + ACTIONS(3258), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112629,7 +111382,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112645,17 +111397,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [1853] = 6, + [1973] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3238), 1, - anon_sym_RBRACE, - STATE(1033), 2, + ACTIONS(3266), 1, + anon_sym_POUND, + STATE(1461), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1026), 3, sym_line_comment, sym_block_comment, - ACTIONS(3236), 15, + aux_sym_match_arm_repeat1, + ACTIONS(3264), 14, sym_raw_string_literal, sym_float_literal, anon_sym_LPAREN, @@ -112663,7 +111419,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_COLON_COLON, anon_sym_AMP, - anon_sym_POUND, anon_sym_LT, anon_sym_PIPE, anon_sym_DOT_DOT, @@ -112671,7 +111426,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3234), 31, + ACTIONS(3262), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112692,26 +111447,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_static, anon_sym_union, anon_sym_ref, sym_mutable_specifier, - anon_sym_move, anon_sym_true, anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [1917] = 5, + [2039] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1034), 2, + STATE(1027), 2, sym_line_comment, sym_block_comment, - ACTIONS(2292), 9, + ACTIONS(1972), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112721,7 +111474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2294), 38, + ACTIONS(1974), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112760,15 +111513,190 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1979] = 5, + [2101] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1035), 2, + STATE(1028), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2242), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2244), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2163] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1029), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2286), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2288), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2225] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3196), 1, + anon_sym_BANG, + ACTIONS(3269), 1, + anon_sym_LBRACE, + ACTIONS(3271), 1, + anon_sym_COLON_COLON, + STATE(1396), 1, + sym_field_initializer_list, + STATE(1030), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(906), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(904), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [2295] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1031), 2, sym_line_comment, sym_block_comment, - ACTIONS(2770), 9, + ACTIONS(2162), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112778,7 +111706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2772), 38, + ACTIONS(2164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112817,15 +111745,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2041] = 5, + [2357] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1036), 2, + STATE(1032), 2, sym_line_comment, sym_block_comment, - ACTIONS(1905), 9, + ACTIONS(2186), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -112835,7 +111763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1907), 38, + ACTIONS(2188), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112874,15 +111802,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2103] = 5, + [2419] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1037), 2, + STATE(1033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3212), 16, + ACTIONS(3220), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112899,7 +111827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3210), 31, + ACTIONS(3218), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112931,15 +111859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [2165] = 5, + [2481] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1038), 2, + STATE(1034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3204), 16, + ACTIONS(3244), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -112956,7 +111884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3202), 31, + ACTIONS(3242), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112988,78 +111916,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [2227] = 5, + [2543] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1039), 2, + ACTIONS(3277), 1, + anon_sym_COLON_COLON, + ACTIONS(3279), 1, + anon_sym_BANG, + STATE(1035), 2, sym_line_comment, sym_block_comment, - ACTIONS(1869), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(1871), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, + ACTIONS(3281), 6, anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, anon_sym_unsafe, - anon_sym_use, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2289] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1040), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3232), 16, + ACTIONS(3275), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -113067,23 +111948,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_as, anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 31, + ACTIONS(3273), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -113102,89 +111976,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [2351] = 6, + [2611] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3244), 1, - anon_sym_RBRACE, - STATE(1041), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3242), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3240), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_static, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2415] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3250), 1, - anon_sym_COLON_COLON, - ACTIONS(3252), 1, - anon_sym_BANG, - STATE(1042), 2, + STATE(1036), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3248), 16, + ACTIONS(3228), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -113192,16 +111998,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_as, anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3246), 23, + ACTIONS(3226), 31, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -113220,15 +112033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [2483] = 5, + [2673] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1043), 2, + STATE(1037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3224), 16, + ACTIONS(3256), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113245,7 +112058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3222), 31, + ACTIONS(3254), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113277,80 +112090,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [2545] = 5, + [2735] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1044), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2596), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2598), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [2607] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3168), 1, - anon_sym_BANG, - ACTIONS(3256), 1, - anon_sym_LBRACE, - ACTIONS(3258), 1, - anon_sym_COLON_COLON, - STATE(1324), 1, - sym_field_initializer_list, - STATE(1045), 2, + ACTIONS(3287), 1, + anon_sym_DASH_GT, + STATE(1038), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(3285), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113366,15 +112116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 28, + ACTIONS(3283), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -113395,17 +112147,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [2677] = 6, + [2798] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3260), 1, - anon_sym_COLON_COLON, - STATE(1046), 2, + ACTIONS(3293), 1, + anon_sym_DASH_GT, + STATE(1039), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(3291), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113421,7 +112173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 30, + ACTIONS(3289), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113452,64 +112204,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [2740] = 24, + [2861] = 27, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1604), 1, - anon_sym_LBRACK, - ACTIONS(3262), 1, + ACTIONS(1038), 1, + anon_sym_extern, + ACTIONS(3000), 1, + anon_sym_QMARK, + ACTIONS(3012), 1, + anon_sym_fn, + ACTIONS(3295), 1, sym_identifier, - ACTIONS(3266), 1, + ACTIONS(3297), 1, anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_STAR, - ACTIONS(3272), 1, + ACTIONS(3301), 1, anon_sym_COLON_COLON, - ACTIONS(3274), 1, - anon_sym_AMP, - ACTIONS(3276), 1, - anon_sym_SQUOTE, - ACTIONS(3280), 1, + ACTIONS(3303), 1, + anon_sym_default, + ACTIONS(3305), 1, anon_sym_for, - ACTIONS(3284), 1, + ACTIONS(3307), 1, + anon_sym_union, + ACTIONS(3311), 1, sym_metavariable, - STATE(2510), 1, - sym_where_predicate, - STATE(2604), 1, + STATE(1516), 1, sym_scoped_type_identifier, - STATE(2941), 1, + STATE(1571), 1, + sym_for_lifetimes, + STATE(1621), 1, sym_generic_type, - STATE(3380), 1, + STATE(2178), 1, + aux_sym_function_modifiers_repeat1, + STATE(2366), 1, + sym_extern_modifier, + STATE(3437), 1, + sym_function_modifiers, + STATE(3450), 1, sym_scoped_identifier, - STATE(3395), 1, - sym_bracketed_type, - STATE(3398), 1, + STATE(3484), 1, sym_generic_type_with_turbofish, - ACTIONS(3264), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3278), 2, - anon_sym_default, - anon_sym_union, - STATE(1047), 2, + STATE(3491), 1, + sym_bracketed_type, + STATE(1040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3282), 3, + ACTIONS(1024), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3309), 3, sym_self, sym_super, sym_crate, - STATE(3029), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, + STATE(1728), 3, + sym_removed_trait_bound, + sym_function_type, sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3270), 17, + ACTIONS(3299), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113527,15 +112282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2839] = 5, + [2966] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1048), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(1435), 1, + sym_label, + STATE(1041), 2, sym_line_comment, sym_block_comment, - ACTIONS(3288), 15, + ACTIONS(3315), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113551,7 +112310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3286), 31, + ACTIONS(3313), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113560,7 +112319,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [3031] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3321), 1, + anon_sym_LPAREN, + STATE(1381), 1, + sym_arguments, + STATE(1042), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3319), 29, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, @@ -113583,15 +112398,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [2900] = 5, + [3096] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1049), 2, + ACTIONS(3325), 1, + anon_sym_else, + STATE(1279), 1, + sym_else_clause, + STATE(1043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 15, + ACTIONS(694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113607,7 +112426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3290), 31, + ACTIONS(692), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113617,10 +112436,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -113639,15 +112456,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [2961] = 5, + [3161] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1050), 2, + ACTIONS(3327), 1, + anon_sym_COLON_COLON, + STATE(1044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3156), 15, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113663,7 +112482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3158), 31, + ACTIONS(904), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113671,7 +112490,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, @@ -113695,20 +112513,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3022] = 5, + [3224] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1051), 2, + ACTIONS(3329), 1, + anon_sym_LBRACE, + STATE(1045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3296), 15, + ACTIONS(3244), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -113719,18 +112540,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3294), 31, + ACTIONS(3242), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -113751,15 +112570,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3083] = 5, + [3287] = 27, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1052), 2, + ACTIONS(1002), 1, + anon_sym_QMARK, + ACTIONS(1030), 1, + anon_sym_fn, + ACTIONS(1038), 1, + anon_sym_extern, + ACTIONS(3331), 1, + sym_identifier, + ACTIONS(3333), 1, + anon_sym_LPAREN, + ACTIONS(3337), 1, + anon_sym_COLON_COLON, + ACTIONS(3339), 1, + anon_sym_default, + ACTIONS(3341), 1, + anon_sym_for, + ACTIONS(3343), 1, + anon_sym_union, + ACTIONS(3347), 1, + sym_metavariable, + STATE(1575), 1, + sym_for_lifetimes, + STATE(1904), 1, + sym_scoped_type_identifier, + STATE(1930), 1, + sym_generic_type, + STATE(2178), 1, + aux_sym_function_modifiers_repeat1, + STATE(2366), 1, + sym_extern_modifier, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, + sym_scoped_identifier, + STATE(3436), 1, + sym_bracketed_type, + STATE(3448), 1, + sym_function_modifiers, + STATE(1046), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1024), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3345), 3, + sym_self, + sym_super, + sym_crate, + STATE(1983), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3335), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [3392] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3353), 1, + anon_sym_DASH_GT, + STATE(1047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 15, + ACTIONS(3351), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113775,7 +112674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3298), 31, + ACTIONS(3349), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113785,7 +112684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -113807,17 +112705,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3144] = 6, + [3455] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3306), 1, - anon_sym_DASH_GT, - STATE(1053), 2, + ACTIONS(3355), 1, + anon_sym_COLON_COLON, + STATE(1048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3304), 15, + ACTIONS(3248), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113833,7 +112731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3302), 30, + ACTIONS(3246), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113864,17 +112762,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3207] = 6, + [3518] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3308), 1, - anon_sym_COLON_COLON, - STATE(1054), 2, + STATE(1049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3196), 15, + ACTIONS(1358), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113890,7 +112786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3194), 30, + ACTIONS(1360), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113898,6 +112794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, @@ -113921,15 +112818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3270] = 5, + [3579] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1055), 2, + STATE(1050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3312), 15, + ACTIONS(3359), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -113945,7 +112842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3310), 31, + ACTIONS(3357), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113954,8 +112851,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -113977,15 +112874,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3331] = 5, + [3640] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1056), 2, + STATE(1051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3316), 15, + ACTIONS(3363), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114001,7 +112898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3314), 31, + ACTIONS(3361), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114010,8 +112907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -114033,20 +112930,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3392] = 5, + [3701] = 27, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1057), 2, + ACTIONS(1038), 1, + anon_sym_extern, + ACTIONS(3052), 1, + anon_sym_QMARK, + ACTIONS(3064), 1, + anon_sym_fn, + ACTIONS(3365), 1, + sym_identifier, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3371), 1, + anon_sym_COLON_COLON, + ACTIONS(3373), 1, + anon_sym_default, + ACTIONS(3375), 1, + anon_sym_for, + ACTIONS(3377), 1, + anon_sym_union, + ACTIONS(3381), 1, + sym_metavariable, + STATE(1025), 1, + sym_scoped_type_identifier, + STATE(1079), 1, + sym_generic_type, + STATE(1620), 1, + sym_for_lifetimes, + STATE(2178), 1, + aux_sym_function_modifiers_repeat1, + STATE(2366), 1, + sym_extern_modifier, + STATE(3297), 1, + sym_function_modifiers, + STATE(3333), 1, + sym_scoped_identifier, + STATE(3467), 1, + sym_generic_type_with_turbofish, + STATE(3486), 1, + sym_bracketed_type, + STATE(1052), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1024), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3379), 3, + sym_self, + sym_super, + sym_crate, + STATE(1101), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3369), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [3806] = 27, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1032), 1, + anon_sym_for, + ACTIONS(1038), 1, + anon_sym_extern, + ACTIONS(3000), 1, + anon_sym_QMARK, + ACTIONS(3012), 1, + anon_sym_fn, + ACTIONS(3297), 1, + anon_sym_LPAREN, + ACTIONS(3301), 1, + anon_sym_COLON_COLON, + ACTIONS(3303), 1, + anon_sym_default, + ACTIONS(3307), 1, + anon_sym_union, + ACTIONS(3311), 1, + sym_metavariable, + ACTIONS(3383), 1, + sym_identifier, + STATE(1524), 1, + sym_scoped_type_identifier, + STATE(1571), 1, + sym_for_lifetimes, + STATE(1598), 1, + sym_generic_type, + STATE(2178), 1, + aux_sym_function_modifiers_repeat1, + STATE(2366), 1, + sym_extern_modifier, + STATE(3437), 1, + sym_function_modifiers, + STATE(3450), 1, + sym_scoped_identifier, + STATE(3484), 1, + sym_generic_type_with_turbofish, + STATE(3491), 1, + sym_bracketed_type, + STATE(1053), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1024), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3309), 3, + sym_self, + sym_super, + sym_crate, + STATE(1709), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3299), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [3911] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3385), 1, + anon_sym_LBRACE, + STATE(1054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3320), 15, + ACTIONS(3220), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -114057,18 +113113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3318), 31, + ACTIONS(3218), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_DASH_GT, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -114089,15 +113143,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3453] = 5, + [3974] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1058), 2, + STATE(1055), 2, sym_line_comment, sym_block_comment, - ACTIONS(1356), 15, + ACTIONS(3389), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114113,7 +113167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1358), 31, + ACTIONS(3387), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114121,9 +113175,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -114145,15 +113199,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3514] = 5, + [4035] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1059), 2, + STATE(1056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3324), 15, + ACTIONS(3393), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114169,7 +113223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3322), 31, + ACTIONS(3391), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114201,17 +113255,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3575] = 6, + [4096] = 24, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3330), 1, - anon_sym_DASH_GT, - STATE(1060), 2, + ACTIONS(1530), 1, + anon_sym_LBRACK, + ACTIONS(3333), 1, + anon_sym_LPAREN, + ACTIONS(3337), 1, + anon_sym_COLON_COLON, + ACTIONS(3347), 1, + sym_metavariable, + ACTIONS(3395), 1, + sym_identifier, + ACTIONS(3399), 1, + anon_sym_STAR, + ACTIONS(3403), 1, + anon_sym_AMP, + ACTIONS(3405), 1, + anon_sym_SQUOTE, + ACTIONS(3407), 1, + anon_sym_for, + STATE(2521), 1, + sym_scoped_type_identifier, + STATE(2662), 1, + sym_where_predicate, + STATE(2935), 1, + sym_generic_type, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, + sym_scoped_identifier, + STATE(3436), 1, + sym_bracketed_type, + ACTIONS(3343), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3397), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3328), 15, + ACTIONS(3345), 3, + sym_self, + sym_super, + sym_crate, + STATE(3087), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3401), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [4195] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1058), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3411), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114227,7 +113354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3326), 30, + ACTIONS(3409), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114236,6 +113363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, @@ -114258,17 +113386,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3638] = 6, + [4256] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - STATE(1061), 2, + STATE(1059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3192), 15, + ACTIONS(3415), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114284,7 +113410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3190), 30, + ACTIONS(3413), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114294,6 +113420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -114315,17 +113442,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3701] = 6, + [4317] = 24, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3338), 1, - anon_sym_DASH_GT, + ACTIONS(1530), 1, + anon_sym_LBRACK, + ACTIONS(3333), 1, + anon_sym_LPAREN, + ACTIONS(3337), 1, + anon_sym_COLON_COLON, + ACTIONS(3347), 1, + sym_metavariable, + ACTIONS(3395), 1, + sym_identifier, + ACTIONS(3399), 1, + anon_sym_STAR, + ACTIONS(3403), 1, + anon_sym_AMP, + ACTIONS(3405), 1, + anon_sym_SQUOTE, + ACTIONS(3407), 1, + anon_sym_for, + STATE(2521), 1, + sym_scoped_type_identifier, + STATE(2662), 1, + sym_where_predicate, + STATE(2935), 1, + sym_generic_type, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, + sym_scoped_identifier, + STATE(3436), 1, + sym_bracketed_type, + ACTIONS(3343), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3417), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1060), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3345), 3, + sym_self, + sym_super, + sym_crate, + STATE(3087), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3401), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [4416] = 27, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1002), 1, + anon_sym_QMARK, + ACTIONS(1030), 1, + anon_sym_fn, + ACTIONS(1032), 1, + anon_sym_for, + ACTIONS(1038), 1, + anon_sym_extern, + ACTIONS(3333), 1, + anon_sym_LPAREN, + ACTIONS(3337), 1, + anon_sym_COLON_COLON, + ACTIONS(3339), 1, + anon_sym_default, + ACTIONS(3343), 1, + anon_sym_union, + ACTIONS(3347), 1, + sym_metavariable, + ACTIONS(3419), 1, + sym_identifier, + STATE(1575), 1, + sym_for_lifetimes, + STATE(1903), 1, + sym_scoped_type_identifier, + STATE(1940), 1, + sym_generic_type, + STATE(2178), 1, + aux_sym_function_modifiers_repeat1, + STATE(2366), 1, + sym_extern_modifier, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, + sym_scoped_identifier, + STATE(3436), 1, + sym_bracketed_type, + STATE(3448), 1, + sym_function_modifiers, + STATE(1061), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1024), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3345), 3, + sym_self, + sym_super, + sym_crate, + STATE(1966), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3335), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [4521] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3421), 1, + anon_sym_COLON_COLON, STATE(1062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 15, + ACTIONS(3236), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114341,7 +113621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3334), 30, + ACTIONS(3234), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114372,23 +113652,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3764] = 6, + [4584] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3340), 1, - anon_sym_LBRACE, STATE(1063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3204), 16, + ACTIONS(3252), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -114397,27 +113674,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3202), 29, + anon_sym_LT_LT_EQ, + ACTIONS(3250), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -114427,19 +113707,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3827] = 6, + [4645] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3346), 1, - anon_sym_DASH_GT, + ACTIONS(3423), 1, + anon_sym_COLON_COLON, STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3344), 15, + ACTIONS(3236), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114455,7 +113734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3342), 30, + ACTIONS(3234), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114486,73 +113765,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [3890] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1065), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3350), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3348), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_static, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [3951] = 6, + [4708] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3356), 1, + ACTIONS(3429), 1, anon_sym_DASH_GT, - STATE(1066), 2, + STATE(1065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3354), 15, + ACTIONS(3427), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114568,7 +113791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3352), 30, + ACTIONS(3425), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114599,90 +113822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4014] = 24, - ACTIONS(31), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1604), 1, - anon_sym_LBRACK, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3266), 1, - anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_STAR, - ACTIONS(3272), 1, - anon_sym_COLON_COLON, - ACTIONS(3274), 1, - anon_sym_AMP, - ACTIONS(3276), 1, - anon_sym_SQUOTE, - ACTIONS(3280), 1, - anon_sym_for, - ACTIONS(3284), 1, - sym_metavariable, - STATE(2510), 1, - sym_where_predicate, - STATE(2604), 1, - sym_scoped_type_identifier, - STATE(2941), 1, - sym_generic_type, - STATE(3380), 1, - sym_scoped_identifier, - STATE(3395), 1, - sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - ACTIONS(3278), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3358), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3282), 3, - sym_self, - sym_super, - sym_crate, - STATE(3029), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3270), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [4113] = 5, + [4771] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1068), 2, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3362), 15, + ACTIONS(3433), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114698,7 +113846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3360), 31, + ACTIONS(3431), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114730,15 +113878,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4174] = 5, + [4832] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, + ACTIONS(3355), 1, + anon_sym_COLON_COLON, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3208), 17, + ACTIONS(3236), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114752,11 +113902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3206), 29, + ACTIONS(3234), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114770,12 +113918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -114785,18 +113933,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4235] = 6, + [4895] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3368), 1, + ACTIONS(3439), 1, anon_sym_DASH_GT, - STATE(1070), 2, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3366), 15, + ACTIONS(3437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114812,7 +113961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3364), 30, + ACTIONS(3435), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114843,17 +113992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4298] = 6, + [4958] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3374), 1, + ACTIONS(3445), 1, anon_sym_DASH_GT, - STATE(1071), 2, + STATE(1069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114869,7 +114018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3370), 30, + ACTIONS(3441), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114900,73 +114049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4361] = 5, + [5021] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1072), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3236), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_COLON_COLON, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3234), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_static, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4422] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - STATE(1073), 2, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3196), 15, + ACTIONS(3449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -114982,7 +114073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3194), 30, + ACTIONS(3447), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114991,6 +114082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, @@ -115013,17 +114105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4485] = 6, + [5082] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, - STATE(1074), 2, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3188), 15, + ACTIONS(3453), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115039,7 +114129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3186), 30, + ACTIONS(3451), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115049,6 +114139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -115070,20 +114161,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4548] = 5, + [5143] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1075), 2, + ACTIONS(3455), 1, + anon_sym_LBRACE, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3378), 15, + ACTIONS(3228), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -115094,18 +114188,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3376), 31, + ACTIONS(3226), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -115126,15 +114218,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4609] = 5, + [5206] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1076), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3382), 15, + ACTIONS(3459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115150,7 +114242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3380), 31, + ACTIONS(3457), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115182,71 +114274,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4670] = 5, + [5267] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1077), 2, + ACTIONS(3461), 1, + anon_sym_LBRACE, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3242), 15, - sym_raw_string_literal, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3256), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - anon_sym_COLON_COLON, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_DOT, anon_sym_AMP, - anon_sym_POUND, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3240), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_static, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_move, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4731] = 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3254), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [5330] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1078), 2, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3386), 15, + ACTIONS(3465), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115262,7 +114355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3384), 31, + ACTIONS(3463), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115294,19 +114387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4792] = 7, + [5391] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3388), 1, - anon_sym_else, - STATE(1220), 1, - sym_else_clause, - STATE(1079), 2, + ACTIONS(3471), 1, + anon_sym_DASH_GT, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(728), 15, + ACTIONS(3469), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115322,7 +114413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(726), 29, + ACTIONS(3467), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115334,6 +114425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -115352,23 +114444,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4857] = 6, + [5454] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(1080), 2, + ACTIONS(3473), 1, + anon_sym_POUND, + STATE(1464), 1, + sym_attribute_item, + STATE(1077), 3, sym_line_comment, sym_block_comment, - ACTIONS(3224), 16, + aux_sym_enum_variant_list_repeat1, + ACTIONS(530), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3148), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_pub, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5519] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3355), 1, + anon_sym_COLON_COLON, + STATE(1078), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3232), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -115379,16 +114528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3222), 29, + ACTIONS(3230), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -115409,23 +114559,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4920] = 6, + [5582] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3392), 1, - anon_sym_LBRACE, - STATE(1081), 2, + ACTIONS(3355), 1, + anon_sym_COLON_COLON, + STATE(1079), 2, sym_line_comment, sym_block_comment, - ACTIONS(3232), 16, + ACTIONS(3260), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -115436,16 +114585,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 29, + ACTIONS(3258), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -115466,17 +114616,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [4983] = 6, + [5645] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3394), 1, - anon_sym_COLON_COLON, - STATE(1082), 2, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3196), 15, + ACTIONS(3478), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115492,7 +114640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3194), 30, + ACTIONS(3476), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115501,6 +114649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, @@ -115523,23 +114672,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [5046] = 6, + [5706] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3396), 1, + STATE(1081), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3160), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3162), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - STATE(1083), 2, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [5767] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3212), 16, + ACTIONS(3482), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -115550,16 +114752,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3210), 29, + ACTIONS(3480), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -115580,17 +114784,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [5109] = 6, + [5828] = 27, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1032), 1, + anon_sym_for, + ACTIONS(1038), 1, + anon_sym_extern, + ACTIONS(3052), 1, + anon_sym_QMARK, + ACTIONS(3064), 1, + anon_sym_fn, + ACTIONS(3367), 1, + anon_sym_LPAREN, + ACTIONS(3371), 1, + anon_sym_COLON_COLON, + ACTIONS(3373), 1, + anon_sym_default, + ACTIONS(3377), 1, + anon_sym_union, + ACTIONS(3381), 1, + sym_metavariable, + ACTIONS(3484), 1, + sym_identifier, + STATE(1017), 1, + sym_scoped_type_identifier, + STATE(1048), 1, + sym_generic_type, + STATE(1620), 1, + sym_for_lifetimes, + STATE(2178), 1, + aux_sym_function_modifiers_repeat1, + STATE(2366), 1, + sym_extern_modifier, + STATE(3297), 1, + sym_function_modifiers, + STATE(3333), 1, + sym_scoped_identifier, + STATE(3467), 1, + sym_generic_type_with_turbofish, + STATE(3486), 1, + sym_bracketed_type, + STATE(1083), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1024), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3379), 3, + sym_self, + sym_super, + sym_crate, + STATE(1456), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3369), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [5933] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3332), 1, - anon_sym_COLON_COLON, STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(3216), 15, + ACTIONS(3488), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115606,7 +114886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3214), 30, + ACTIONS(3486), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115616,6 +114896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -115637,7 +114918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [5172] = 5, + [5994] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -115645,7 +114926,62 @@ static const uint16_t ts_small_parse_table[] = { STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3400), 15, + ACTIONS(2344), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2346), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6054] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1086), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3492), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115661,7 +114997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 31, + ACTIONS(3490), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115671,7 +115007,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, @@ -115693,19 +115028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [5233] = 7, + [6114] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3404), 1, - anon_sym_LPAREN, - STATE(1339), 1, - sym_arguments, - STATE(1086), 2, + STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3406), 15, + ACTIONS(3496), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115721,8 +115052,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3402), 29, + ACTIONS(3494), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -115751,19 +115083,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [5298] = 7, + [6174] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(1287), 1, - sym_label, - STATE(1087), 2, + STATE(1088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3410), 15, + ACTIONS(3500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115779,7 +115107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3408), 29, + ACTIONS(3498), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115789,6 +115117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -115809,15 +115138,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [5363] = 5, + [6234] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1088), 2, + STATE(1089), 2, sym_line_comment, sym_block_comment, - ACTIONS(2706), 7, + ACTIONS(1790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115825,7 +115154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2708), 38, + ACTIONS(1792), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115864,15 +115193,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5423] = 5, + [6294] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1089), 2, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(1707), 7, + ACTIONS(1698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115880,7 +115209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1709), 38, + ACTIONS(1700), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115919,15 +115248,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5483] = 5, + [6354] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1090), 2, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(1476), 15, + ACTIONS(3232), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115943,7 +115272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1478), 30, + ACTIONS(3230), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115974,15 +115303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [5543] = 5, + [6414] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, + ACTIONS(3502), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1092), 2, sym_line_comment, sym_block_comment, - ACTIONS(934), 15, + ACTIONS(3500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -115998,17 +115330,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(932), 30, + ACTIONS(3498), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -116029,62 +115359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [5603] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1092), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1837), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(1839), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [5663] = 5, + [6476] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -116092,7 +115367,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1093), 2, sym_line_comment, sym_block_comment, - ACTIONS(2178), 7, + ACTIONS(2368), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116100,7 +115375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2180), 38, + ACTIONS(2370), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116139,7 +115414,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5723] = 5, + [6536] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -116147,54 +115422,54 @@ static const uint16_t ts_small_parse_table[] = { STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(2065), 7, + ACTIONS(1474), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1476), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2067), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [5783] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [6596] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -116202,7 +115477,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1095), 2, sym_line_comment, sym_block_comment, - ACTIONS(2214), 7, + ACTIONS(2024), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116210,7 +115485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2216), 38, + ACTIONS(2026), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116249,7 +115524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5843] = 5, + [6656] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -116257,7 +115532,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1096), 2, sym_line_comment, sym_block_comment, - ACTIONS(2232), 7, + ACTIONS(2008), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116265,7 +115540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2234), 38, + ACTIONS(2010), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116304,7 +115579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5903] = 5, + [6716] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -116312,7 +115587,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1097), 2, sym_line_comment, sym_block_comment, - ACTIONS(1937), 7, + ACTIONS(2036), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116320,7 +115595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1939), 38, + ACTIONS(2038), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116359,7 +115634,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5963] = 5, + [6776] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -116367,282 +115642,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(2328), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2330), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6023] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1099), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1833), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(1835), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6083] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1100), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1829), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(1831), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6143] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1101), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2244), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2246), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6203] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1102), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2264), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2266), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6263] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1103), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2268), 7, + ACTIONS(2246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116650,7 +115650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2270), 38, + ACTIONS(2248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116689,15 +115689,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6323] = 5, + [6836] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(1805), 7, + ACTIONS(2004), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116705,7 +115705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1807), 38, + ACTIONS(2006), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116744,15 +115744,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6383] = 5, + [6896] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1105), 2, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(1727), 7, + ACTIONS(1798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116760,7 +115760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1729), 38, + ACTIONS(1800), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116799,15 +115799,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6443] = 5, + [6956] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(3416), 15, + ACTIONS(3260), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -116823,7 +115823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3414), 30, + ACTIONS(3258), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -116854,15 +115854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [6503] = 5, + [7016] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1107), 2, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(2280), 7, + ACTIONS(2348), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116870,7 +115870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2282), 38, + ACTIONS(2350), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116909,15 +115909,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6563] = 5, + [7076] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(1723), 7, + ACTIONS(2340), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116925,7 +115925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1725), 38, + ACTIONS(2342), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116964,70 +115964,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6623] = 5, + [7136] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(1719), 7, + ACTIONS(3506), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3504), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(1721), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6683] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [7196] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(1897), 7, + ACTIONS(2048), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117035,7 +116035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1899), 38, + ACTIONS(2050), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117074,15 +116074,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6743] = 5, + [7256] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(1873), 7, + ACTIONS(3510), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3508), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [7316] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1107), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117090,7 +116145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1875), 38, + ACTIONS(2272), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117129,70 +116184,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6803] = 5, + [7376] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(1925), 7, + ACTIONS(3514), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3512), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [7436] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1109), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(950), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, - sym_metavariable, - ACTIONS(1927), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [6863] = 5, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(948), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [7496] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(2288), 7, + ACTIONS(2306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117200,7 +116310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2290), 38, + ACTIONS(2308), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117239,15 +116349,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6923] = 5, + [7556] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(1945), 7, + ACTIONS(2663), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117255,7 +116365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1947), 38, + ACTIONS(2665), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117294,15 +116404,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6983] = 5, + [7616] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(958), 15, + ACTIONS(3518), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -117318,7 +116428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(956), 30, + ACTIONS(3516), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117349,15 +116459,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [7043] = 5, + [7676] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(962), 15, + ACTIONS(2282), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2284), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7736] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1114), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3522), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -117373,7 +116538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(960), 30, + ACTIONS(3520), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117404,15 +116569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [7103] = 5, + [7796] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2356), 7, + ACTIONS(2278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117420,7 +116585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2358), 38, + ACTIONS(2280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117459,70 +116624,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7163] = 5, + [7856] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2360), 7, + ACTIONS(3526), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3524), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2362), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7223] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [7916] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(2368), 7, + ACTIONS(1830), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117530,7 +116695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2370), 38, + ACTIONS(1832), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117569,15 +116734,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7283] = 5, + [7976] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 7, + ACTIONS(2380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117585,7 +116750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2390), 38, + ACTIONS(2382), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117624,15 +116789,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7343] = 5, + [8036] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 7, + ACTIONS(2064), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117640,7 +116805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2394), 38, + ACTIONS(2066), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117679,15 +116844,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7403] = 5, + [8096] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2432), 7, + ACTIONS(1742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117695,7 +116860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2434), 38, + ACTIONS(1744), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117734,70 +116899,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7463] = 5, + [8156] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3420), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3418), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [7523] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(980), 15, + ACTIONS(866), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -117813,7 +116923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(978), 30, + ACTIONS(864), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -117844,15 +116954,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [7583] = 5, + [8216] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(1957), 7, + ACTIONS(1758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117860,7 +116970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1959), 38, + ACTIONS(1760), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117899,15 +117009,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7643] = 5, + [8276] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(2484), 7, + ACTIONS(1778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117915,7 +117025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2486), 38, + ACTIONS(1780), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117954,15 +117064,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7703] = 5, + [8336] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1124), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3528), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [8396] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(1965), 7, + ACTIONS(2068), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117970,7 +117135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1967), 38, + ACTIONS(2070), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118009,21 +117174,28 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7763] = 5, + [8456] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(3424), 15, + ACTIONS(3536), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -118033,18 +117205,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3422), 30, + ACTIONS(3532), 27, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -118064,15 +117233,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [7823] = 5, + [8524] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(1973), 7, + ACTIONS(2082), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118080,7 +117249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1975), 38, + ACTIONS(2084), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118119,15 +117288,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7883] = 5, + [8584] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1128), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3546), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3544), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [8644] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(2001), 7, + ACTIONS(2202), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118135,7 +117359,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2003), 38, + ACTIONS(2204), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118174,70 +117398,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7943] = 5, + [8704] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1130), 2, sym_line_comment, sym_block_comment, - ACTIONS(2073), 7, + ACTIONS(3550), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3548), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2075), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [8003] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [8764] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(2228), 7, + ACTIONS(2266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118245,7 +117469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2230), 38, + ACTIONS(2268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118284,15 +117508,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8063] = 5, + [8824] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(2248), 7, + ACTIONS(1794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118300,7 +117524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2250), 38, + ACTIONS(1796), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118339,15 +117563,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8123] = 5, + [8884] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2276), 7, + ACTIONS(1810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118355,7 +117579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2278), 38, + ACTIONS(1812), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118394,15 +117618,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8183] = 5, + [8944] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2312), 7, + ACTIONS(1750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118410,7 +117634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2314), 38, + ACTIONS(1752), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118449,15 +117673,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8243] = 5, + [9004] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2316), 7, + ACTIONS(2496), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118465,7 +117689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2318), 38, + ACTIONS(2498), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118504,15 +117728,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8303] = 5, + [9064] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1137), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2320), 7, + ACTIONS(2258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118520,7 +117744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2322), 38, + ACTIONS(2260), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118559,70 +117783,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8363] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1138), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(992), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(990), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [8423] = 5, + [9124] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(3428), 15, + ACTIONS(962), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -118638,7 +117807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3426), 30, + ACTIONS(960), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -118669,15 +117838,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [8483] = 5, + [9184] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2324), 7, + ACTIONS(2508), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118685,7 +117854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2326), 38, + ACTIONS(2510), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118724,15 +117893,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8543] = 5, + [9244] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2336), 7, + ACTIONS(2532), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118740,7 +117909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2338), 38, + ACTIONS(2534), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118779,15 +117948,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8603] = 5, + [9304] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2344), 7, + ACTIONS(1632), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118795,7 +117964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2346), 38, + ACTIONS(1634), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118834,15 +118003,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8663] = 5, + [9364] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(2348), 7, + ACTIONS(2552), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118850,7 +118019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2350), 38, + ACTIONS(2554), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118889,15 +118058,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8723] = 5, + [9424] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(2364), 7, + ACTIONS(2647), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118905,7 +118074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2366), 38, + ACTIONS(2649), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118944,70 +118113,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8783] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1145), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3216), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3214), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [8843] = 5, + [9484] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(2412), 7, + ACTIONS(3554), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119015,7 +118129,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2414), 38, + ACTIONS(3552), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119054,180 +118168,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8903] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1147), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3406), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3402), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [8963] = 5, + [9544] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(898), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(896), 30, + ACTIONS(2651), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [9023] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1149), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(984), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(982), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [9083] = 5, + sym_metavariable, + ACTIONS(2653), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9604] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(2528), 7, + ACTIONS(2655), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119235,7 +118239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2530), 38, + ACTIONS(2657), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119274,70 +118278,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9143] = 5, + [9664] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(3432), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3430), 30, + ACTIONS(2659), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [9203] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2661), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9724] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(2560), 7, + ACTIONS(2667), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119345,7 +118349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2562), 38, + ACTIONS(2669), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119384,70 +118388,73 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9263] = 5, + [9784] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3434), 30, + ACTIONS(2763), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [9323] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2765), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9844] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + ACTIONS(3556), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(3440), 15, + ACTIONS(3500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119463,17 +118470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3438), 30, + ACTIONS(3498), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -119494,70 +118499,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9383] = 5, + [9906] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3442), 30, + ACTIONS(2214), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [9443] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2216), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9966] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(3448), 15, + ACTIONS(978), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119573,7 +118578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3446), 30, + ACTIONS(976), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119604,15 +118609,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9503] = 5, + [10026] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 15, + ACTIONS(890), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119628,7 +118633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3450), 30, + ACTIONS(888), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119659,70 +118664,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9563] = 5, + [10086] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(3456), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3454), 30, + ACTIONS(2671), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [9623] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2673), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10146] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(3460), 15, + ACTIONS(3560), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119738,7 +118743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3458), 30, + ACTIONS(3558), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119769,15 +118774,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9683] = 5, + [10206] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(3464), 15, + ACTIONS(3564), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -119793,7 +118798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3462), 30, + ACTIONS(3562), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119824,180 +118829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [9743] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1161), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2722), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2724), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [9803] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1162), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2862), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2864), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [9863] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1163), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2818), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2820), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [9923] = 5, + [10266] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(2830), 7, + ACTIONS(2675), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120005,7 +118845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2832), 38, + ACTIONS(2677), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120044,125 +118884,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9983] = 5, + [10326] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2842), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(1482), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, - sym_metavariable, - ACTIONS(2844), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10043] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1166), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2544), 7, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1484), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2546), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [10103] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [10386] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2532), 7, + ACTIONS(2679), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120170,7 +118955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2534), 38, + ACTIONS(2681), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120209,15 +118994,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10163] = 5, + [10446] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(2850), 7, + ACTIONS(2683), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120225,7 +119010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2852), 38, + ACTIONS(2685), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120264,15 +119049,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10223] = 5, + [10506] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(2878), 7, + ACTIONS(2695), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120280,7 +119065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2880), 38, + ACTIONS(2697), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120319,15 +119104,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10283] = 5, + [10566] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(2874), 7, + ACTIONS(2699), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120335,7 +119120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2876), 38, + ACTIONS(2701), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120374,15 +119159,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10343] = 5, + [10626] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1162), 2, sym_line_comment, sym_block_comment, - ACTIONS(2858), 7, + ACTIONS(2130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120390,7 +119175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2860), 38, + ACTIONS(2132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120429,15 +119214,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10403] = 5, + [10686] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(2822), 7, + ACTIONS(2703), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120445,7 +119230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2824), 38, + ACTIONS(2705), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120484,15 +119269,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10463] = 5, + [10746] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(2814), 7, + ACTIONS(2707), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120500,7 +119285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2816), 38, + ACTIONS(2709), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120539,70 +119324,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10523] = 5, + [10806] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(1004), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(2731), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1002), 30, + sym_metavariable, + ACTIONS(2733), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10866] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1166), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2735), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [10583] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2737), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10926] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(1921), 7, + ACTIONS(2743), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120610,7 +119450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1923), 38, + ACTIONS(2745), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120649,15 +119489,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10643] = 5, + [10986] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(2794), 7, + ACTIONS(2779), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120665,7 +119505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2796), 38, + ACTIONS(2781), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120704,15 +119544,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10703] = 5, + [11046] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(1933), 7, + ACTIONS(2783), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120720,7 +119560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1935), 38, + ACTIONS(2785), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120759,70 +119599,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10763] = 5, + [11106] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(3468), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(1826), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3466), 30, + sym_metavariable, + ACTIONS(1828), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11166] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1171), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1912), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [10823] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1914), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11226] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2009), 7, + ACTIONS(1746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120830,7 +119725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2011), 38, + ACTIONS(1748), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120869,15 +119764,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10883] = 5, + [11286] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(2017), 7, + ACTIONS(2488), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120885,7 +119780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2019), 38, + ACTIONS(2490), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120924,125 +119819,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10943] = 5, + [11346] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(3472), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3470), 30, + ACTIONS(1814), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [11003] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1182), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3476), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3474), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [11063] = 5, + sym_metavariable, + ACTIONS(1816), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11406] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2750), 7, + ACTIONS(2170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121050,7 +119890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2752), 38, + ACTIONS(2172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121089,15 +119929,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11123] = 5, + [11466] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2037), 7, + ACTIONS(2326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121105,7 +119945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2039), 38, + ACTIONS(2328), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121144,15 +119984,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11183] = 5, + [11526] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2678), 7, + ACTIONS(1916), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121160,7 +120000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2680), 38, + ACTIONS(1918), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121199,15 +120039,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11243] = 5, + [11586] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1178), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(982), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(980), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [11646] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2041), 7, + ACTIONS(2146), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121215,7 +120110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2043), 38, + ACTIONS(2148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121254,15 +120149,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11303] = 5, + [11706] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2077), 7, + ACTIONS(2078), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121270,7 +120165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2079), 38, + ACTIONS(2080), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121309,15 +120204,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11363] = 5, + [11766] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2632), 7, + ACTIONS(2110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121325,7 +120220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2634), 38, + ACTIONS(2112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121364,15 +120259,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11423] = 5, + [11826] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1182), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(860), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(858), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [11886] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2168), 7, + ACTIONS(2795), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121380,7 +120330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2170), 38, + ACTIONS(2797), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121419,15 +120369,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11483] = 5, + [11946] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1184), 2, sym_line_comment, sym_block_comment, - ACTIONS(2202), 7, + ACTIONS(2787), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121435,7 +120385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2204), 38, + ACTIONS(2789), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121474,15 +120424,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11543] = 5, + [12006] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2284), 7, + ACTIONS(2332), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121490,7 +120440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2286), 38, + ACTIONS(2334), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121529,15 +120479,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11603] = 5, + [12066] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2300), 7, + ACTIONS(2759), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121545,7 +120495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2302), 38, + ACTIONS(2761), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121584,290 +120534,510 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11663] = 5, + [12126] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1187), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(970), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(968), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12186] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1188), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(966), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(964), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12246] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1189), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(906), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(904), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12306] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1190), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3568), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3566), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12366] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(2592), 7, + ACTIONS(1454), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1456), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2594), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [11723] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12426] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2304), 7, + ACTIONS(958), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(956), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2306), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [11783] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12486] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1193), 2, sym_line_comment, sym_block_comment, - ACTIONS(2572), 7, + ACTIONS(3572), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3570), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2574), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [11843] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12546] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1194), 2, sym_line_comment, sym_block_comment, - ACTIONS(2416), 7, + ACTIONS(3576), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3574), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2418), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [11903] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12606] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(2440), 7, + ACTIONS(3580), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3578), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2442), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [11963] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12666] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1196), 2, sym_line_comment, sym_block_comment, - ACTIONS(2480), 7, + ACTIONS(2198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121875,7 +121045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2482), 38, + ACTIONS(2200), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121914,70 +121084,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12023] = 5, + [12726] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(3584), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3582), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2502), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12083] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12786] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1198), 2, sym_line_comment, sym_block_comment, - ACTIONS(2504), 7, + ACTIONS(2416), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121985,7 +121155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2506), 38, + ACTIONS(2418), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122024,15 +121194,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12143] = 5, + [12846] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1199), 2, sym_line_comment, sym_block_comment, - ACTIONS(2408), 7, + ACTIONS(918), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(916), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [12906] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1200), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2715), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122040,7 +121265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2410), 38, + ACTIONS(2717), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122079,15 +121304,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12203] = 5, + [12966] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2540), 7, + ACTIONS(2528), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122095,7 +121320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2542), 38, + ACTIONS(2530), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122134,15 +121359,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12263] = 5, + [13026] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1202), 2, sym_line_comment, sym_block_comment, - ACTIONS(2564), 7, + ACTIONS(2520), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122150,7 +121375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2566), 38, + ACTIONS(2522), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122189,7 +121414,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12323] = 5, + [13086] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1203), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(974), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(972), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [13146] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -122197,7 +121477,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2352), 7, + ACTIONS(2516), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122205,7 +121485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2354), 38, + ACTIONS(2518), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122244,7 +121524,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12383] = 5, + [13206] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -122252,7 +121532,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1205), 2, sym_line_comment, sym_block_comment, - ACTIONS(2568), 7, + ACTIONS(2074), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122260,7 +121540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2570), 38, + ACTIONS(2076), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122299,7 +121579,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12443] = 5, + [13266] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -122307,62 +121587,119 @@ static const uint16_t ts_small_parse_table[] = { STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2710), 7, + ACTIONS(910), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(908), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [13326] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3196), 1, + anon_sym_BANG, + ACTIONS(3586), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + STATE(1207), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(906), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, - sym_metavariable, - ACTIONS(2712), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12503] = 5, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(904), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [13390] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1208), 2, sym_line_comment, sym_block_comment, - ACTIONS(2714), 7, + ACTIONS(2504), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122370,7 +121707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2716), 38, + ACTIONS(2506), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122409,15 +121746,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12563] = 5, + [13450] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1209), 2, sym_line_comment, sym_block_comment, - ACTIONS(2718), 7, + ACTIONS(2500), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122425,7 +121762,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2720), 38, + ACTIONS(2502), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122464,15 +121801,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12623] = 5, + [13510] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1210), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3590), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3588), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [13570] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2746), 7, + ACTIONS(2440), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122480,7 +121872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2748), 38, + ACTIONS(2442), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122519,15 +121911,180 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12683] = 5, + [13630] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1212), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3592), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [13690] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1213), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3598), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3596), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [13750] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1214), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3602), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3600), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [13810] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(2612), 7, + ACTIONS(2492), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122535,7 +122092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2614), 38, + ACTIONS(2494), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122574,70 +122131,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12743] = 5, + [13870] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1216), 2, sym_line_comment, sym_block_comment, - ACTIONS(3480), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3478), 30, + ACTIONS(2060), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [12803] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2062), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13930] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(968), 15, + ACTIONS(3594), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -122653,7 +122210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(966), 30, + ACTIONS(3592), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122684,15 +122241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [12863] = 5, + [13990] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(2810), 7, + ACTIONS(2056), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122700,7 +122257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2812), 38, + ACTIONS(2058), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122739,15 +122296,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12923] = 5, + [14050] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(2802), 7, + ACTIONS(2364), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122755,7 +122312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2804), 38, + ACTIONS(2366), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122794,15 +122351,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12983] = 5, + [14110] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2798), 7, + ACTIONS(1722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122810,7 +122367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2800), 38, + ACTIONS(1724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122849,19 +122406,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13043] = 7, + [14170] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3250), 1, - anon_sym_COLON_COLON, - ACTIONS(3482), 1, - anon_sym_BANG, - STATE(1216), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(3248), 15, + ACTIONS(3236), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -122877,15 +122430,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3246), 28, + ACTIONS(3234), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -122906,15 +122461,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13107] = 5, + [14230] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1222), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(852), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(850), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [14290] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(2786), 7, + ACTIONS(2290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122922,7 +122532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2788), 38, + ACTIONS(2292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122961,15 +122571,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13167] = 5, + [14350] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2782), 7, + ACTIONS(2432), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122977,7 +122587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2784), 38, + ACTIONS(2434), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123016,70 +122626,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13227] = 5, + [14410] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(1008), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1006), 30, + ACTIONS(2322), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [13287] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2324), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14470] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(950), 15, + ACTIONS(3606), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -123095,7 +122705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(948), 30, + ACTIONS(3604), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123126,15 +122736,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [13347] = 5, + [14530] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(1809), 7, + ACTIONS(2484), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123142,7 +122752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1811), 38, + ACTIONS(2486), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123181,15 +122791,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13407] = 5, + [14590] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(1949), 7, + ACTIONS(2044), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123197,7 +122807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1951), 38, + ACTIONS(2046), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123236,23 +122846,33 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13467] = 5, + [14650] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + ACTIONS(3612), 1, + anon_sym_RBRACE, + STATE(1229), 2, sym_line_comment, sym_block_comment, - ACTIONS(2682), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3610), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_COLON_COLON, + anon_sym_AMP, anon_sym_POUND, anon_sym_LT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2684), 38, + ACTIONS(3608), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123270,36 +122890,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [13527] = 5, + [14712] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1230), 2, sym_line_comment, sym_block_comment, - ACTIONS(2053), 7, + ACTIONS(2480), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123307,7 +122918,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2055), 38, + ACTIONS(2482), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123346,15 +122957,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13587] = 5, + [14772] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1231), 2, sym_line_comment, sym_block_comment, - ACTIONS(2670), 7, + ACTIONS(2476), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123362,7 +122973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2672), 38, + ACTIONS(2478), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123401,15 +123012,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13647] = 5, + [14832] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2069), 7, + ACTIONS(2118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123417,7 +123028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2071), 38, + ACTIONS(2120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123456,70 +123067,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13707] = 5, + [14892] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(2658), 7, + ACTIONS(906), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(904), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2660), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [13767] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [14952] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2172), 7, + ACTIONS(2472), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123527,7 +123138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2174), 38, + ACTIONS(2474), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123566,15 +123177,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13827] = 5, + [15012] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1235), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(870), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(868), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [15072] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2654), 7, + ACTIONS(2122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123582,7 +123248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2656), 38, + ACTIONS(2124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123621,15 +123287,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13887] = 5, + [15132] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2584), 7, + ACTIONS(2040), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123637,7 +123303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2586), 38, + ACTIONS(2042), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123676,70 +123342,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13947] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1231), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1000), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(998), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [14007] = 5, + [15192] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1238), 2, sym_line_comment, sym_block_comment, - ACTIONS(2186), 7, + ACTIONS(2468), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123747,7 +123358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2188), 38, + ACTIONS(2470), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123786,15 +123397,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14067] = 5, + [15252] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1239), 2, sym_line_comment, sym_block_comment, - ACTIONS(2194), 7, + ACTIONS(2032), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123802,7 +123413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2196), 38, + ACTIONS(2034), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123841,15 +123452,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14127] = 5, + [15312] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2206), 7, + ACTIONS(2464), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123857,7 +123468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2208), 38, + ACTIONS(2466), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123896,15 +123507,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14187] = 5, + [15372] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1241), 2, sym_line_comment, sym_block_comment, - ACTIONS(2210), 7, + ACTIONS(2460), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123912,7 +123523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2212), 38, + ACTIONS(2462), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123951,15 +123562,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14247] = 5, + [15432] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1236), 2, + STATE(1242), 2, sym_line_comment, sym_block_comment, - ACTIONS(2218), 7, + ACTIONS(2388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123967,7 +123578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2220), 38, + ACTIONS(2390), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124006,15 +123617,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14307] = 5, + [15492] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(3486), 15, + ACTIONS(3323), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -124030,7 +123641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3484), 30, + ACTIONS(3319), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124061,15 +123672,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14367] = 5, + [15552] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1238), 2, + STATE(1244), 2, sym_line_comment, sym_block_comment, - ACTIONS(2222), 7, + ACTIONS(2452), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124077,7 +123688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2224), 38, + ACTIONS(2454), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124116,15 +123727,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14427] = 5, + [15612] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + STATE(1245), 2, sym_line_comment, sym_block_comment, - ACTIONS(2252), 7, + ACTIONS(2448), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124132,7 +123743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2254), 38, + ACTIONS(2450), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124171,15 +123782,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14487] = 5, + [15672] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1246), 2, sym_line_comment, sym_block_comment, - ACTIONS(3486), 15, + ACTIONS(894), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -124195,7 +123806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3484), 30, + ACTIONS(892), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124226,15 +123837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [14547] = 5, + [15732] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1247), 2, sym_line_comment, sym_block_comment, - ACTIONS(2296), 7, + ACTIONS(2028), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124242,7 +123853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2298), 38, + ACTIONS(2030), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124281,15 +123892,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14607] = 5, + [15792] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + STATE(1248), 2, sym_line_comment, sym_block_comment, - ACTIONS(2332), 7, + ACTIONS(2020), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124297,7 +123908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2334), 38, + ACTIONS(2022), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124336,15 +123947,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14667] = 5, + [15852] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1249), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 7, + ACTIONS(2012), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124352,7 +123963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2382), 38, + ACTIONS(2014), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124391,15 +124002,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14727] = 5, + [15912] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1250), 2, sym_line_comment, sym_block_comment, - ACTIONS(2384), 7, + ACTIONS(2392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124407,7 +124018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2386), 38, + ACTIONS(2394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124446,15 +124057,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14787] = 5, + [15972] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(2404), 7, + ACTIONS(2126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124462,7 +124073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2406), 38, + ACTIONS(2128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124501,23 +124112,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14847] = 5, + [16032] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1252), 2, sym_line_comment, sym_block_comment, - ACTIONS(2444), 7, + ACTIONS(3616), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_EQ, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2446), 38, + ACTIONS(3614), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124538,33 +124155,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [14907] = 5, + [16092] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(2508), 7, + ACTIONS(2000), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124572,7 +124183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2510), 38, + ACTIONS(2002), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124611,70 +124222,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14967] = 5, + [16152] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3490), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3488), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15027] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1254), 2, sym_line_comment, sym_block_comment, - ACTIONS(2512), 7, + ACTIONS(1932), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124682,7 +124238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2514), 38, + ACTIONS(1934), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124721,70 +124277,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15087] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1250), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3494), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3492), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [15147] = 5, + [16212] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(3498), 15, + ACTIONS(986), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -124800,7 +124301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3496), 30, + ACTIONS(984), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124831,70 +124332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15207] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1252), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2536), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2538), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15267] = 5, + [16272] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2600), 7, + ACTIONS(2106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124902,7 +124348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2602), 38, + ACTIONS(2108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124941,15 +124387,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15327] = 5, + [16332] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(2624), 7, + ACTIONS(1928), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124957,7 +124403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2626), 38, + ACTIONS(1930), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124996,15 +124442,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15387] = 5, + [16392] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(3502), 15, + ACTIONS(3620), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -125020,7 +124466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3500), 30, + ACTIONS(3618), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125051,15 +124497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15447] = 5, + [16452] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2674), 7, + ACTIONS(2687), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125067,7 +124513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2676), 38, + ACTIONS(2689), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125106,15 +124552,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15507] = 5, + [16512] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(2730), 7, + ACTIONS(2360), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125122,7 +124568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2732), 38, + ACTIONS(2362), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125161,15 +124607,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15567] = 5, + [16572] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(2766), 7, + ACTIONS(1908), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125177,7 +124623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2768), 38, + ACTIONS(1910), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125216,15 +124662,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15627] = 5, + [16632] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(2826), 7, + ACTIONS(2424), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125232,7 +124678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2828), 38, + ACTIONS(2426), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125271,15 +124717,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15687] = 5, + [16692] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(878), 15, + ACTIONS(3624), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -125295,7 +124741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(876), 30, + ACTIONS(3622), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125326,15 +124772,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15747] = 5, + [16752] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(2870), 7, + ACTIONS(2747), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125342,7 +124788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2872), 38, + ACTIONS(2749), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125381,15 +124827,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15807] = 5, + [16812] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(884), 15, + ACTIONS(3628), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -125405,7 +124851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(882), 30, + ACTIONS(3626), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125436,70 +124882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15867] = 5, + [16872] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2013), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2015), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15927] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1264), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(3632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -125515,7 +124906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 30, + ACTIONS(3630), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125546,15 +124937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [15987] = 5, + [16932] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(1981), 7, + ACTIONS(1904), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125562,7 +124953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1983), 38, + ACTIONS(1906), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125601,70 +124992,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16047] = 5, + [16992] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(3506), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3504), 30, + ACTIONS(1900), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16107] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1902), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17052] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1269), 2, sym_line_comment, sym_block_comment, - ACTIONS(2866), 7, + ACTIONS(2412), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125672,7 +125063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2868), 38, + ACTIONS(2414), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125711,81 +125102,80 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16167] = 5, + [17112] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3508), 30, + ACTIONS(2751), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16227] = 8, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2753), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17172] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - STATE(1269), 2, + ACTIONS(3277), 1, + anon_sym_COLON_COLON, + ACTIONS(3634), 1, + anon_sym_BANG, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(3516), 14, + ACTIONS(3275), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -125795,15 +125185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3512), 28, + ACTIONS(3273), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -125824,26 +125214,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16293] = 8, + [17236] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - STATE(1270), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(3524), 14, + ACTIONS(3638), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -125853,13 +125238,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3522), 28, + ACTIONS(3636), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, @@ -125882,70 +125269,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16359] = 5, + [17296] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1273), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3526), 30, + ACTIONS(2408), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16419] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2410), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17356] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1274), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 15, + ACTIONS(3642), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -125961,7 +125348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3530), 30, + ACTIONS(3640), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125992,15 +125379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16479] = 5, + [17416] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1275), 2, sym_line_comment, sym_block_comment, - ACTIONS(1458), 15, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -126016,7 +125403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1460), 30, + ACTIONS(904), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126047,70 +125434,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16539] = 5, + [17476] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(3536), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3534), 30, + ACTIONS(2775), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [16599] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2777), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17536] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(2742), 7, + ACTIONS(1884), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126118,7 +125505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2744), 38, + ACTIONS(1886), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126157,19 +125544,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16659] = 7, + [17596] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3168), 1, - anon_sym_BANG, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, - STATE(1276), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(3646), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -126185,15 +125568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 28, + ACTIONS(3644), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -126214,15 +125599,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [16723] = 5, + [17656] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(2734), 7, + ACTIONS(954), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(952), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [17716] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1280), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126230,7 +125670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2736), 38, + ACTIONS(1824), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126269,15 +125709,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16783] = 5, + [17776] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(2686), 7, + ACTIONS(2384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126285,7 +125725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2688), 38, + ACTIONS(2386), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126324,15 +125764,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16843] = 5, + [17836] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2646), 7, + ACTIONS(1734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126340,7 +125780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2648), 38, + ACTIONS(1736), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126379,15 +125819,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16903] = 5, + [17896] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2642), 7, + ACTIONS(1888), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126395,7 +125835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2644), 38, + ACTIONS(1890), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126434,15 +125874,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16963] = 5, + [17956] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(1825), 7, + ACTIONS(1690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126450,7 +125890,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1827), 38, + ACTIONS(1692), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126489,15 +125929,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17023] = 5, + [18016] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2636), 7, + ACTIONS(884), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(882), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [18076] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1286), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2336), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126505,7 +126000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2638), 38, + ACTIONS(2338), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126544,15 +126039,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17083] = 5, + [18136] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1287), 2, sym_line_comment, sym_block_comment, - ACTIONS(1821), 7, + ACTIONS(2318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126560,7 +126055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1823), 38, + ACTIONS(2320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126599,15 +126094,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17143] = 5, + [18196] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1288), 2, sym_line_comment, sym_block_comment, - ACTIONS(2628), 7, + ACTIONS(2314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126615,7 +126110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2630), 38, + ACTIONS(2316), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126654,15 +126149,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17203] = 5, + [18256] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(1731), 7, + ACTIONS(1976), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126670,7 +126165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1733), 38, + ACTIONS(1978), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126709,70 +126204,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17263] = 5, + [18316] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(910), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(2310), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(908), 30, + sym_metavariable, + ACTIONS(2312), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18376] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1291), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1872), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17323] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1874), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18436] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 15, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -126788,7 +126338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3540), 30, + ACTIONS(904), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126819,70 +126369,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17383] = 5, + [18496] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(1518), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(1988), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1520), 30, + sym_metavariable, + ACTIONS(1990), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18556] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1294), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2302), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [17443] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2304), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18616] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1295), 2, sym_line_comment, sym_block_comment, - ACTIONS(2620), 7, + ACTIONS(2262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126890,7 +126495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2622), 38, + ACTIONS(2264), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126929,15 +126534,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17503] = 5, + [18676] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(938), 15, + ACTIONS(914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -126953,7 +126558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(936), 30, + ACTIONS(912), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126984,70 +126589,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [17563] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1291), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2778), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2780), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17623] = 5, + [18736] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1297), 2, sym_line_comment, sym_block_comment, - ACTIONS(2616), 7, + ACTIONS(2238), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127055,7 +126605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2618), 38, + ACTIONS(2240), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127094,15 +126644,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17683] = 5, + [18796] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2025), 7, + ACTIONS(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127110,7 +126660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2027), 38, + ACTIONS(1856), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127149,15 +126699,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17743] = 5, + [18856] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1299), 2, sym_line_comment, sym_block_comment, - ACTIONS(1817), 7, + ACTIONS(2234), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127165,7 +126715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1819), 38, + ACTIONS(2236), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127204,15 +126754,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17803] = 5, + [18916] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(2226), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127220,7 +126770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2498), 38, + ACTIONS(2228), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127259,15 +126809,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17863] = 5, + [18976] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(1841), 7, + ACTIONS(2222), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127275,7 +126825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1843), 38, + ACTIONS(2224), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127314,15 +126864,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17923] = 5, + [19036] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, + ACTIONS(2218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127330,7 +126880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2494), 38, + ACTIONS(2220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127369,15 +126919,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17983] = 5, + [19096] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1303), 2, sym_line_comment, sym_block_comment, - ACTIONS(2476), 7, + ACTIONS(2210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127385,7 +126935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2478), 38, + ACTIONS(2212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127424,78 +126974,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18043] = 5, + [19156] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(3546), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3544), 30, + ACTIONS(3650), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18103] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1300), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1849), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1851), 38, + ACTIONS(3648), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127516,33 +127017,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [18163] = 5, + [19216] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(1889), 7, + ACTIONS(2206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127550,7 +127045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1891), 38, + ACTIONS(2208), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127589,23 +127084,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18223] = 5, + [19276] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(2472), 7, + ACTIONS(3654), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_EQ, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2474), 38, + ACTIONS(3652), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127626,33 +127127,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [18283] = 5, + [19336] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(1913), 7, + ACTIONS(1992), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127660,7 +127155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1915), 38, + ACTIONS(1994), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127699,15 +127194,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18343] = 5, + [19396] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(2464), 7, + ACTIONS(2444), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127715,7 +127210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2466), 38, + ACTIONS(2446), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127754,15 +127249,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18403] = 5, + [19456] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(3550), 15, + ACTIONS(3658), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -127778,7 +127273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3548), 30, + ACTIONS(3656), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127809,15 +127304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18463] = 5, + [19516] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(1793), 7, + ACTIONS(1702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127825,7 +127320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1795), 38, + ACTIONS(1704), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127864,15 +127359,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18523] = 5, + [19576] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 15, + ACTIONS(3662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -127888,7 +127383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3552), 30, + ACTIONS(3660), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127919,125 +127414,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18583] = 5, + [19636] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(1953), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3666), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, - sym_metavariable, - ACTIONS(1955), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18643] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1309), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2460), 7, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3664), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2462), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18703] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [19696] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(976), 15, + ACTIONS(3670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -128053,7 +127493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(974), 30, + ACTIONS(3668), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -128084,15 +127524,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [18763] = 5, + [19756] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(1961), 7, + ACTIONS(2194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128100,7 +127540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1963), 38, + ACTIONS(2196), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128139,15 +127579,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18823] = 5, + [19816] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(1985), 7, + ACTIONS(2190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128155,7 +127595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1987), 38, + ACTIONS(2192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128194,78 +127634,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18883] = 5, + [19876] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(3558), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3556), 30, + ACTIONS(3674), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [18943] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1314), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1989), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1991), 38, + ACTIONS(3672), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128286,33 +127677,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [19003] = 5, + [19936] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2456), 7, + ACTIONS(2182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128320,7 +127705,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2458), 38, + ACTIONS(2184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128359,15 +127744,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19063] = 5, + [19996] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(2452), 7, + ACTIONS(2178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128375,7 +127760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2454), 38, + ACTIONS(2180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128414,15 +127799,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19123] = 5, + [20056] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(2428), 7, + ACTIONS(2174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128430,7 +127815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2430), 38, + ACTIONS(2176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128469,15 +127854,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19183] = 5, + [20116] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1318), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(2420), 7, + ACTIONS(2166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128485,7 +127870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2422), 38, + ACTIONS(2168), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128524,15 +127909,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19243] = 5, + [20176] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(2400), 7, + ACTIONS(2158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128540,7 +127925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2402), 38, + ACTIONS(2160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128579,15 +127964,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19303] = 5, + [20236] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(2376), 7, + ACTIONS(2154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128595,7 +127980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2378), 38, + ACTIONS(2156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128634,15 +128019,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19363] = 5, + [20296] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(2029), 7, + ACTIONS(2356), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128650,7 +128035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2031), 38, + ACTIONS(2358), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128689,70 +128074,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19423] = 5, + [20356] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(996), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(994), 30, + ACTIONS(2150), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19483] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2152), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20416] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(1012), 15, + ACTIONS(3678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -128768,7 +128153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1010), 30, + ACTIONS(3676), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -128799,70 +128184,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19543] = 5, + [20476] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3560), 30, + ACTIONS(2134), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [19603] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2136), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20536] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(2340), 7, + ACTIONS(2114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128870,7 +128255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2342), 38, + ACTIONS(2116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128909,15 +128294,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19663] = 5, + [20596] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2272), 7, + ACTIONS(2102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128925,7 +128310,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2274), 38, + ACTIONS(2104), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20656] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1329), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3682), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3680), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128946,33 +128392,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [19723] = 5, + [20716] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(2260), 7, + ACTIONS(2098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128980,7 +128420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2262), 38, + ACTIONS(2100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129019,15 +128459,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19783] = 5, + [20776] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(2256), 7, + ACTIONS(2094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129035,7 +128475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2258), 38, + ACTIONS(2096), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129074,70 +128514,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19843] = 5, + [20836] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(2240), 7, + ACTIONS(3686), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3684), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2242), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19903] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [20896] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(3566), 15, + ACTIONS(3690), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -129153,7 +128593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3564), 30, + ACTIONS(3688), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129184,15 +128624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [19963] = 5, + [20956] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(2236), 7, + ACTIONS(2090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129200,7 +128640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2238), 38, + ACTIONS(2092), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129239,15 +128679,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20023] = 5, + [21016] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(2045), 7, + ACTIONS(2086), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129255,7 +128695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2047), 38, + ACTIONS(2088), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129294,70 +128734,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20083] = 5, + [21076] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(1929), 7, + ACTIONS(3694), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3692), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(1931), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20143] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [21136] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(1941), 7, + ACTIONS(2294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129365,7 +128805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1943), 38, + ACTIONS(2296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129404,15 +128844,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20203] = 5, + [21196] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(1917), 7, + ACTIONS(1996), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129420,7 +128860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1919), 38, + ACTIONS(1998), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129459,15 +128899,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20263] = 5, + [21256] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(1909), 7, + ACTIONS(1802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129475,7 +128915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1911), 38, + ACTIONS(1804), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129514,78 +128954,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20323] = 5, + [21316] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3568), 30, + ACTIONS(3698), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [20383] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1338), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1901), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1903), 38, + ACTIONS(3696), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129606,33 +128997,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [20443] = 5, + [21376] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(3574), 15, + ACTIONS(3702), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -129648,7 +129033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3572), 30, + ACTIONS(3700), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129679,117 +129064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20503] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1340), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1893), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(1895), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20563] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1341), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1885), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(1887), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20623] = 5, + [21436] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -129797,7 +129072,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1342), 2, sym_line_comment, sym_block_comment, - ACTIONS(1881), 7, + ACTIONS(1762), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129805,7 +129080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1883), 38, + ACTIONS(1764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129844,7 +129119,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20683] = 5, + [21496] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -129852,7 +129127,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(1877), 7, + ACTIONS(1980), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129860,7 +129135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1879), 38, + ACTIONS(1982), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129899,7 +129174,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20743] = 5, + [21556] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -129907,7 +129182,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(1865), 7, + ACTIONS(2719), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129915,7 +129190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1867), 38, + ACTIONS(2721), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129954,7 +129229,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20803] = 5, + [21616] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -129962,62 +129237,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(1857), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(1859), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20863] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1346), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3578), 15, + ACTIONS(898), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -130033,7 +129253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3576), 30, + ACTIONS(896), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130064,15 +129284,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20923] = 5, + [21676] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1347), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(3188), 15, + ACTIONS(856), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -130088,7 +129308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3186), 30, + ACTIONS(854), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130119,15 +129339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [20983] = 5, + [21736] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(1853), 7, + ACTIONS(1738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130135,7 +129355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1855), 38, + ACTIONS(1740), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130174,15 +129394,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21043] = 5, + [21796] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(1845), 7, + ACTIONS(1944), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130190,7 +129410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1847), 38, + ACTIONS(1946), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130229,15 +129449,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21103] = 5, + [21856] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(1739), 7, + ACTIONS(1940), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130245,7 +129465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1741), 38, + ACTIONS(1942), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130284,15 +129504,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21163] = 5, + [21916] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(1735), 7, + ACTIONS(1924), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130300,7 +129520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1737), 38, + ACTIONS(1926), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130339,15 +129559,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21223] = 5, + [21976] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + STATE(1351), 2, sym_line_comment, sym_block_comment, - ACTIONS(1715), 7, + ACTIONS(1896), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130355,7 +129575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1717), 38, + ACTIONS(1898), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130394,15 +129614,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21283] = 5, + [22036] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1353), 2, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(1797), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130410,7 +129630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1799), 38, + ACTIONS(1844), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130449,15 +129669,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21343] = 5, + [22096] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + STATE(1353), 2, sym_line_comment, sym_block_comment, - ACTIONS(1801), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130465,7 +129685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1803), 38, + ACTIONS(1840), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130504,21 +129724,26 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21403] = 5, + [22156] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + STATE(1354), 2, sym_line_comment, sym_block_comment, - ACTIONS(946), 15, + ACTIONS(3706), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -130528,15 +129753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(944), 30, + ACTIONS(3704), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, @@ -130559,15 +129782,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21463] = 5, + [22222] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2021), 7, + ACTIONS(2298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130575,7 +129798,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2023), 38, + ACTIONS(2300), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [22282] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1356), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3710), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3708), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130596,25 +129880,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [21523] = 5, + [22342] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -130622,7 +129900,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2033), 7, + ACTIONS(1834), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130630,7 +129908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2035), 38, + ACTIONS(1836), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130669,7 +129947,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21583] = 5, + [22402] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -130677,7 +129955,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2049), 7, + ACTIONS(1628), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130685,7 +129963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2051), 38, + ACTIONS(1630), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130724,7 +130002,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21643] = 5, + [22462] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -130732,7 +130010,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(2057), 7, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130740,7 +130018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2059), 38, + ACTIONS(1820), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130779,7 +130057,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21703] = 5, + [22522] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -130787,7 +130065,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2061), 7, + ACTIONS(1770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130795,7 +130073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2063), 38, + ACTIONS(1772), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130834,7 +130112,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21763] = 5, + [22582] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -130842,7 +130120,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1361), 2, sym_line_comment, sym_block_comment, - ACTIONS(2081), 7, + ACTIONS(1726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130850,7 +130128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2083), 38, + ACTIONS(1728), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130889,7 +130167,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21823] = 5, + [22642] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -130897,7 +130175,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(3192), 15, + ACTIONS(3714), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -130913,7 +130191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3190), 30, + ACTIONS(3712), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -130944,7 +130222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [21883] = 5, + [22702] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -130952,7 +130230,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2190), 7, + ACTIONS(1782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130960,7 +130238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2192), 38, + ACTIONS(1784), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130999,7 +130277,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21943] = 5, + [22762] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -131007,7 +130285,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2198), 7, + ACTIONS(1766), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131015,7 +130293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2200), 38, + ACTIONS(1768), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131054,7 +130332,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22003] = 5, + [22822] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -131062,54 +130340,54 @@ static const uint16_t ts_small_parse_table[] = { STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(2372), 7, + ACTIONS(3718), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3716), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2374), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22063] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [22882] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -131117,7 +130395,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1366), 2, sym_line_comment, sym_block_comment, - ACTIONS(2516), 7, + ACTIONS(1774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131125,7 +130403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2518), 38, + ACTIONS(1776), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131164,7 +130442,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22123] = 5, + [22942] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -131172,172 +130450,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2556), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2558), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22183] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1368), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2604), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2606), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22243] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1369), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2662), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2664), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22303] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1370), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2666), 7, + ACTIONS(1754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131345,7 +130458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2668), 38, + ACTIONS(1756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131384,15 +130497,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22363] = 5, + [23002] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2690), 7, + ACTIONS(2138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131400,7 +130513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2692), 38, + ACTIONS(2140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131439,7 +130552,175 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22423] = 5, + [23062] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1369), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3722), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3720), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23122] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1370), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(906), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(904), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23182] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + STATE(1371), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3726), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3724), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [23248] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -131447,7 +130728,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2694), 7, + ACTIONS(2052), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131455,7 +130736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2696), 38, + ACTIONS(2054), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131494,7 +130775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22483] = 5, + [23308] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -131502,7 +130783,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(2698), 7, + ACTIONS(2420), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131510,7 +130791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2700), 38, + ACTIONS(2422), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131549,7 +130830,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22543] = 5, + [23368] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -131557,7 +130838,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(3582), 15, + ACTIONS(3730), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -131573,7 +130854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 30, + ACTIONS(3728), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131604,7 +130885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [22603] = 5, + [23428] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -131612,7 +130893,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2726), 7, + ACTIONS(2436), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131620,7 +130901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2728), 38, + ACTIONS(2438), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131659,7 +130940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22663] = 5, + [23488] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -131667,7 +130948,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2774), 7, + ACTIONS(2396), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131675,7 +130956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2776), 38, + ACTIONS(2398), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131714,23 +130995,33 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22723] = 5, + [23548] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3736), 1, + anon_sym_RBRACE, STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(2790), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3734), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_COLON_COLON, + anon_sym_AMP, anon_sym_POUND, anon_sym_LT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2792), 38, + ACTIONS(3732), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131748,28 +131039,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [22783] = 5, + [23610] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -131777,7 +131059,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(2806), 7, + ACTIONS(1786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131785,7 +131067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2808), 38, + ACTIONS(1788), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131824,7 +131106,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22843] = 5, + [23670] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -131832,117 +131114,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(3586), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3584), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22903] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1380), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3590), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3588), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [22963] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1381), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2834), 7, + ACTIONS(2456), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131950,7 +131122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2836), 38, + ACTIONS(2458), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131989,15 +131161,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23023] = 5, + [23730] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(2838), 7, + ACTIONS(2142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132005,7 +131177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2840), 38, + ACTIONS(2144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132044,15 +131216,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23083] = 5, + [23790] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(3740), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -132068,7 +131240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 30, + ACTIONS(3738), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132099,15 +131271,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23143] = 5, + [23850] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1382), 2, sym_line_comment, sym_block_comment, - ACTIONS(3594), 15, + ACTIONS(3744), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -132123,7 +131295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3592), 30, + ACTIONS(3742), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132154,15 +131326,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23203] = 5, + [23910] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(1861), 7, + ACTIONS(1806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132170,7 +131342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1863), 38, + ACTIONS(1808), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132209,15 +131381,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23263] = 5, + [23970] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(1813), 7, + ACTIONS(2254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132225,7 +131397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1815), 38, + ACTIONS(2256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132264,21 +131436,26 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23323] = 5, + [24030] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(3748), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -132288,15 +131465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 30, + ACTIONS(3746), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, @@ -132319,125 +131494,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23383] = 5, + [24096] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(3598), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3596), 30, + ACTIONS(2230), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23443] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2232), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24156] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(892), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(890), 30, + ACTIONS(2799), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23503] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2801), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24216] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(3602), 15, + ACTIONS(3752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -132453,7 +131628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3600), 30, + ACTIONS(3750), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132484,15 +131659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23563] = 5, + [24276] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(3606), 15, + ACTIONS(990), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -132508,7 +131683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3604), 30, + ACTIONS(988), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132539,15 +131714,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [23623] = 5, + [24336] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(2308), 7, + ACTIONS(2791), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132555,7 +131730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2310), 38, + ACTIONS(2793), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132594,15 +131769,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23683] = 5, + [24396] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(2396), 7, + ACTIONS(1686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132610,7 +131785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2398), 38, + ACTIONS(1688), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132649,15 +131824,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23743] = 5, + [24456] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(2762), 7, + ACTIONS(1694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132665,7 +131840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2764), 38, + ACTIONS(1696), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132704,15 +131879,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23803] = 5, + [24516] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1393), 2, sym_line_comment, sym_block_comment, - ACTIONS(2854), 7, + ACTIONS(1706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132720,7 +131895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2856), 38, + ACTIONS(1708), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132759,183 +131934,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23863] = 8, + [24576] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - STATE(1396), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(3610), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3608), 28, + ACTIONS(2771), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23929] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1397), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3614), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3612), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [23989] = 5, + sym_metavariable, + ACTIONS(2773), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24636] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3616), 30, + ACTIONS(2767), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24049] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2769), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24696] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(3622), 15, + ACTIONS(3756), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -132951,7 +132068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3620), 30, + ACTIONS(3754), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -132982,15 +132099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [24109] = 5, + [24756] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(1711), 7, + ACTIONS(2755), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132998,7 +132115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1713), 38, + ACTIONS(2757), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133037,15 +132154,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24169] = 5, + [24816] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(2520), 7, + ACTIONS(2739), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133053,7 +132170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2522), 38, + ACTIONS(2741), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133092,15 +132209,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24229] = 5, + [24876] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2488), 7, + ACTIONS(2723), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133108,7 +132225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2490), 38, + ACTIONS(2725), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133147,23 +132264,84 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24289] = 5, + [24936] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(2436), 7, + ACTIONS(1442), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1444), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [24996] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1401), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3760), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_EQ, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2438), 38, + ACTIONS(3758), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133184,33 +132362,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [24349] = 5, + [25056] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(2758), 7, + ACTIONS(2016), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133218,7 +132390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2760), 38, + ACTIONS(2018), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133257,15 +132429,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24409] = 5, + [25116] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(2552), 7, + ACTIONS(1710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133273,7 +132445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2554), 38, + ACTIONS(1712), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133312,15 +132484,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24469] = 5, + [25176] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(2524), 7, + ACTIONS(2711), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133328,7 +132500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2526), 38, + ACTIONS(2713), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133367,15 +132539,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24529] = 5, + [25236] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(2580), 7, + ACTIONS(2376), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133383,7 +132555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2582), 38, + ACTIONS(2378), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133422,70 +132594,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24589] = 5, + [25296] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2588), 7, + ACTIONS(3764), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3762), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_LT, - sym_metavariable, - ACTIONS(2590), 38, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24649] = 5, + anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [25356] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(2702), 7, + ACTIONS(2691), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133493,7 +132665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2704), 38, + ACTIONS(2693), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133532,15 +132704,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24709] = 5, + [25416] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(2738), 7, + ACTIONS(1718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133548,7 +132720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2740), 38, + ACTIONS(1720), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133587,15 +132759,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24769] = 5, + [25476] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(2846), 7, + ACTIONS(2643), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133603,7 +132775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2848), 38, + ACTIONS(2645), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133642,70 +132814,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24829] = 5, + [25536] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3626), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3624), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [24889] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(2448), 7, + ACTIONS(2556), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133713,7 +132830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2450), 38, + ACTIONS(2558), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133752,15 +132869,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24949] = 5, + [25596] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(2424), 7, + ACTIONS(2548), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133768,7 +132885,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2426), 38, + ACTIONS(2550), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133807,15 +132924,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25009] = 5, + [25656] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(1969), 7, + ACTIONS(2544), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133823,7 +132940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1971), 38, + ACTIONS(2546), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133862,15 +132979,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25069] = 5, + [25716] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + STATE(1413), 2, sym_line_comment, sym_block_comment, - ACTIONS(2548), 7, + ACTIONS(2540), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133878,7 +132995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2550), 38, + ACTIONS(2542), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133917,15 +133034,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25129] = 5, + [25776] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(2754), 7, + ACTIONS(2536), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133933,7 +133050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2756), 38, + ACTIONS(2538), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133972,15 +133089,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25189] = 5, + [25836] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1418), 2, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(2608), 7, + ACTIONS(2524), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133988,7 +133105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2610), 38, + ACTIONS(2526), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134027,15 +133144,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25249] = 5, + [25896] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1419), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(2650), 7, + ACTIONS(2512), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134043,7 +133160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2652), 38, + ACTIONS(2514), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134082,15 +133199,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25309] = 5, + [25956] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1420), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(972), 15, + ACTIONS(876), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134106,7 +133223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(970), 30, + ACTIONS(874), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134137,125 +133254,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25369] = 5, + [26016] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(990), 30, + ACTIONS(1984), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25429] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1422), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(954), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(952), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25489] = 5, + sym_metavariable, + ACTIONS(1986), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26076] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(1997), 7, + ACTIONS(1730), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134263,7 +133325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1999), 38, + ACTIONS(1732), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134302,15 +133364,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25549] = 5, + [26136] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(1993), 7, + ACTIONS(2428), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134318,7 +133380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1995), 38, + ACTIONS(2430), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134357,70 +133419,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25609] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1425), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(942), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(940), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25669] = 5, + [26196] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(1977), 7, + ACTIONS(2404), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134428,7 +133435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(1979), 38, + ACTIONS(2406), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134467,15 +133474,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25729] = 5, + [26256] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(2005), 7, + ACTIONS(1846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134483,7 +133490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2007), 38, + ACTIONS(1848), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134522,15 +133529,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25789] = 5, + [26316] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1428), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(906), 15, + ACTIONS(3768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134546,7 +133553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(904), 30, + ACTIONS(3766), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134577,15 +133584,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25849] = 5, + [26376] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1429), 2, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(946), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134601,7 +133608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3628), 30, + ACTIONS(944), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134632,70 +133639,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [25909] = 5, + [26436] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(1502), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(2372), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1504), 30, + sym_metavariable, + ACTIONS(2374), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26496] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1426), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1850), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [25969] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1852), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26556] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1431), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(3634), 15, + ACTIONS(1858), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1860), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26616] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1428), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3772), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134711,7 +133828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3632), 30, + ACTIONS(3770), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134742,18 +133859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26029] = 6, + [26676] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3638), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1432), 2, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(3640), 15, + ACTIONS(3776), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134769,15 +133883,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3636), 28, + ACTIONS(3774), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -134798,15 +133914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26091] = 5, + [26736] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(3644), 7, + ACTIONS(2400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134814,7 +133930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(3642), 38, + ACTIONS(2402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134853,15 +133969,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26151] = 5, + [26796] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(2182), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134869,7 +133985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_LT, sym_metavariable, - ACTIONS(2184), 38, + ACTIONS(1864), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134908,28 +134024,21 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26211] = 9, + [26856] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - STATE(1435), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 14, + ACTIONS(880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -134939,15 +134048,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3646), 27, + ACTIONS(878), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -134967,15 +134079,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26279] = 5, + [26916] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1433), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1866), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1868), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [26976] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1434), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1876), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1878), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27036] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(3654), 15, + ACTIONS(3780), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -134991,7 +134213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3652), 30, + ACTIONS(3778), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135022,7 +134244,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26339] = 5, + [27096] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1436), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2250), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2252), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27156] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -135030,7 +134307,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, + ACTIONS(3784), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -135046,7 +134323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3656), 30, + ACTIONS(3782), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135077,18 +134354,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26399] = 6, + [27216] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3660), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(3640), 15, + ACTIONS(1880), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1882), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27276] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1439), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1714), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1716), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27336] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1440), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -135104,15 +134488,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3636), 28, + ACTIONS(3786), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -135133,15 +134519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26461] = 5, + [27396] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(3640), 15, + ACTIONS(3792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -135157,7 +134543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3636), 30, + ACTIONS(3790), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135188,15 +134574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26521] = 5, + [27456] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3664), 15, + ACTIONS(3796), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -135212,7 +134598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3662), 30, + ACTIONS(3794), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135243,15 +134629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26581] = 5, + [27516] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(902), 15, + ACTIONS(3800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -135267,7 +134653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(900), 30, + ACTIONS(3798), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135298,303 +134684,463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [26641] = 5, + [27576] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(3668), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(1892), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3666), 30, + sym_metavariable, + ACTIONS(1894), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27636] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1445), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2352), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(2354), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27696] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1446), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1968), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1970), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27756] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1447), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3804), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_COMMA, + anon_sym_EQ, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26701] = 5, + sym_metavariable, + ACTIONS(3802), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27816] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1448), 2, sym_line_comment, sym_block_comment, - ACTIONS(888), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(886), 30, + ACTIONS(1920), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26761] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1922), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27876] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3670), 30, + ACTIONS(1936), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26821] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1938), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27936] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3676), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3674), 30, + ACTIONS(1948), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26881] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1950), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [27996] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3196), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3194), 30, + ACTIONS(1952), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [26941] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1954), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28056] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(3680), 12, + ACTIONS(1964), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, + anon_sym_POUND, anon_sym_LT, - anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3678), 32, + ACTIONS(1966), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135615,40 +135161,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [27000] = 5, + [28116] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 12, + ACTIONS(1956), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, + anon_sym_POUND, anon_sym_LT, - anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3682), 32, + ACTIONS(1958), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135669,29 +135216,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_where, + anon_sym_use, anon_sym_extern, - anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [27059] = 6, + [28176] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3250), 1, + STATE(1454), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1960), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_COLON_COLON, - STATE(1449), 2, + anon_sym_POUND, + anon_sym_LT, + sym_metavariable, + ACTIONS(1962), 38, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28236] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3248), 15, + ACTIONS(3808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -135707,15 +135313,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3246), 28, + ACTIONS(3806), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, anon_sym_DOT_DOT_DOT, @@ -135736,27 +135344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27120] = 11, + [28296] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, - anon_sym_LPAREN, - ACTIONS(3688), 1, - anon_sym_COLON_COLON, - ACTIONS(3690), 1, - anon_sym_BANG, - ACTIONS(3692), 1, - anon_sym_LT2, - STATE(1587), 1, - sym_type_arguments, - STATE(1588), 1, - sym_parameters, - STATE(1450), 2, + STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3164), 17, + ACTIONS(3248), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -135770,22 +135366,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3160), 21, + ACTIONS(3246), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -135795,62 +135397,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27191] = 23, + [28356] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1457), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3812), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_EQ, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3810), 32, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28416] = 23, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1604), 1, + ACTIONS(1530), 1, anon_sym_LBRACK, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3266), 1, + ACTIONS(3333), 1, anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_STAR, - ACTIONS(3272), 1, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - ACTIONS(3274), 1, + ACTIONS(3347), 1, + sym_metavariable, + ACTIONS(3395), 1, + sym_identifier, + ACTIONS(3399), 1, + anon_sym_STAR, + ACTIONS(3403), 1, anon_sym_AMP, - ACTIONS(3276), 1, + ACTIONS(3405), 1, anon_sym_SQUOTE, - ACTIONS(3280), 1, + ACTIONS(3407), 1, anon_sym_for, - ACTIONS(3284), 1, - sym_metavariable, - STATE(2448), 1, - sym_where_predicate, - STATE(2604), 1, + STATE(2521), 1, sym_scoped_type_identifier, - STATE(2941), 1, + STATE(2662), 1, + sym_where_predicate, + STATE(2935), 1, sym_generic_type, - STATE(3380), 1, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, sym_scoped_identifier, - STATE(3395), 1, + STATE(3436), 1, sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - ACTIONS(3278), 2, + ACTIONS(3343), 2, anon_sym_default, anon_sym_union, - STATE(1451), 2, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3282), 3, + ACTIONS(3345), 3, sym_self, sym_super, sym_crate, - STATE(3029), 6, + STATE(3087), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3270), 17, + ACTIONS(3401), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135868,30 +135526,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [27286] = 7, + [28511] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3694), 1, - anon_sym_POUND, - STATE(1494), 1, - sym_attribute_item, - STATE(1452), 3, + STATE(1459), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(546), 9, + ACTIONS(2202), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, + anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_AMP, + anon_sym_POUND, anon_sym_LT, anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(2982), 32, + ACTIONS(2204), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135924,17 +135580,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27349] = 6, + [28570] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3697), 1, + ACTIONS(3277), 1, anon_sym_COLON_COLON, - STATE(1453), 2, + STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(3275), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -135950,7 +135606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 28, + ACTIONS(3273), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135979,28 +135635,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [27410] = 5, + [28631] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3701), 12, - anon_sym_SEMI, + ACTIONS(3816), 15, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, anon_sym_COLON_COLON, - anon_sym_BANG, anon_sym_AMP, + anon_sym_POUND, anon_sym_LT, - anon_sym_SQUOTE, + anon_sym_PIPE, + anon_sym_DOT_DOT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(3699), 32, + ACTIONS(3814), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136018,43 +135677,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [27469] = 5, + [28690] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3705), 12, - anon_sym_SEMI, + ACTIONS(3820), 15, + sym_raw_string_literal, + sym_float_literal, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_EQ, + anon_sym_DASH, anon_sym_COLON_COLON, - anon_sym_BANG, anon_sym_AMP, + anon_sym_POUND, anon_sym_LT, - anon_sym_SQUOTE, + anon_sym_PIPE, + anon_sym_DOT_DOT, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(3703), 32, + ACTIONS(3818), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136072,76 +135731,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [27528] = 23, + [28749] = 23, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1604), 1, + ACTIONS(1530), 1, anon_sym_LBRACK, - ACTIONS(3262), 1, - sym_identifier, - ACTIONS(3266), 1, + ACTIONS(3333), 1, anon_sym_LPAREN, - ACTIONS(3268), 1, - anon_sym_STAR, - ACTIONS(3272), 1, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - ACTIONS(3274), 1, + ACTIONS(3347), 1, + sym_metavariable, + ACTIONS(3395), 1, + sym_identifier, + ACTIONS(3399), 1, + anon_sym_STAR, + ACTIONS(3403), 1, anon_sym_AMP, - ACTIONS(3276), 1, + ACTIONS(3405), 1, anon_sym_SQUOTE, - ACTIONS(3280), 1, + ACTIONS(3407), 1, anon_sym_for, - ACTIONS(3284), 1, - sym_metavariable, - STATE(2510), 1, + STATE(2442), 1, sym_where_predicate, - STATE(2604), 1, + STATE(2521), 1, sym_scoped_type_identifier, - STATE(2941), 1, + STATE(2935), 1, sym_generic_type, - STATE(3380), 1, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, sym_scoped_identifier, - STATE(3395), 1, + STATE(3436), 1, sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - ACTIONS(3278), 2, + ACTIONS(3343), 2, anon_sym_default, anon_sym_union, - STATE(1456), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3282), 3, + ACTIONS(3345), 3, sym_self, sym_super, sym_crate, - STATE(3029), 6, + STATE(3087), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3270), 17, + ACTIONS(3401), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136159,28 +135815,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [27623] = 5, + [28844] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3709), 12, - anon_sym_SEMI, + ACTIONS(3152), 12, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR, - anon_sym_EQ, + anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_AMP, + anon_sym_POUND, anon_sym_LT, anon_sym_SQUOTE, + sym_integer_literal, sym_metavariable, - ACTIONS(3707), 32, + ACTIONS(3150), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136204,37 +135860,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_for, anon_sym_impl, + anon_sym_pub, anon_sym_union, anon_sym_unsafe, - anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [27682] = 5, + [28903] = 20, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3713), 12, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1592), 1, + anon_sym_DASH, + ACTIONS(1614), 1, + aux_sym_string_literal_token1, + ACTIONS(3168), 1, + anon_sym_if, + ACTIONS(3822), 1, + sym_identifier, + ACTIONS(3826), 1, anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, + ACTIONS(3830), 1, sym_metavariable, - ACTIONS(3711), 32, + STATE(2516), 1, + sym_scoped_identifier, + STATE(2939), 1, + sym__literal_pattern, + STATE(3432), 1, + sym_bracketed_type, + STATE(3445), 1, + sym_generic_type_with_turbofish, + ACTIONS(1616), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3166), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1465), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3828), 3, + sym_self, + sym_super, + sym_crate, + STATE(2338), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(1612), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3824), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136249,423 +135933,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_usize, anon_sym_f32, anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_where, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [27741] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, - anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3648), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1459), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3646), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - 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_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27823] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1460), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 9, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3646), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27893] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, - anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1461), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3646), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [27969] = 19, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, - anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3733), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - STATE(1462), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3731), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28055] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3686), 1, - anon_sym_LPAREN, - ACTIONS(3692), 1, - anon_sym_LT2, - ACTIONS(3739), 1, - anon_sym_COLON_COLON, - STATE(1587), 1, - sym_type_arguments, - STATE(1588), 1, - sym_parameters, - STATE(1463), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3180), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3178), 21, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [28123] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(337), 1, - anon_sym_EQ, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, - anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3743), 1, - anon_sym_DOT_DOT, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1464), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(331), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28213] = 10, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [28992] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, - anon_sym_LPAREN, - ACTIONS(3692), 1, - anon_sym_LT2, - ACTIONS(3739), 1, + ACTIONS(3832), 1, anon_sym_COLON_COLON, - STATE(1587), 1, - sym_type_arguments, - STATE(1588), 1, - sym_parameters, - STATE(1465), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3174), 17, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -136679,22 +135962,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3172), 21, + ACTIONS(904), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_QMARK, + anon_sym_COMMA, anon_sym_as, - anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -136704,399 +135991,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28281] = 21, + [29053] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + STATE(1467), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2372), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, + anon_sym_DASH, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3743), 1, anon_sym_DOT_DOT, - ACTIONS(3747), 1, - anon_sym_EQ, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1466), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3745), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28371] = 19, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(2374), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29112] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + STATE(1468), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3734), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, + anon_sym_DASH, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(371), 2, - anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1467), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(369), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28457] = 21, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3732), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29171] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + STATE(1469), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3610), 15, + sym_raw_string_literal, + sym_float_literal, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, + anon_sym_DASH, + anon_sym_COLON_COLON, anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, + anon_sym_POUND, + anon_sym_LT, anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3743), 1, anon_sym_DOT_DOT, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3608), 29, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [29230] = 20, + ACTIONS(31), 1, anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1468), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3749), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28547] = 18, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, - anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3648), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3715), 2, - anon_sym_PLUS, + ACTIONS(1592), 1, anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1469), 2, + ACTIONS(1614), 1, + aux_sym_string_literal_token1, + ACTIONS(3180), 1, + anon_sym_if, + ACTIONS(3826), 1, + anon_sym_COLON_COLON, + ACTIONS(3834), 1, + sym_identifier, + ACTIONS(3840), 1, + sym_metavariable, + STATE(2507), 1, + sym_scoped_identifier, + STATE(2947), 1, + sym__literal_pattern, + STATE(3432), 1, + sym_bracketed_type, + STATE(3445), 1, + sym_generic_type_with_turbofish, + ACTIONS(1616), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3178), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3646), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - 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_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28631] = 21, + ACTIONS(3838), 3, + sym_self, + sym_super, + sym_crate, + STATE(2338), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(1612), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3836), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [29319] = 25, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, - anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3743), 1, - anon_sym_DOT_DOT, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1470), 2, + ACTIONS(1038), 1, + anon_sym_extern, + ACTIONS(3012), 1, + anon_sym_fn, + ACTIONS(3301), 1, + anon_sym_COLON_COLON, + ACTIONS(3303), 1, + anon_sym_default, + ACTIONS(3307), 1, + anon_sym_union, + ACTIONS(3311), 1, + sym_metavariable, + ACTIONS(3842), 1, + sym_identifier, + ACTIONS(3844), 1, + anon_sym_for, + STATE(1518), 1, + sym_scoped_type_identifier, + STATE(1570), 1, + sym_generic_type, + STATE(1571), 1, + sym_for_lifetimes, + STATE(2178), 1, + aux_sym_function_modifiers_repeat1, + STATE(2366), 1, + sym_extern_modifier, + STATE(3437), 1, + sym_function_modifiers, + STATE(3450), 1, + sym_scoped_identifier, + STATE(3484), 1, + sym_generic_type_with_turbofish, + STATE(3491), 1, + sym_bracketed_type, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3753), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [28721] = 21, + STATE(1800), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1024), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3309), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3299), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [29417] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3862), 1, + anon_sym_DOT_DOT, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3743), 1, - anon_sym_DOT_DOT, - ACTIONS(3759), 1, - anon_sym_EQ, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, + ACTIONS(3860), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1471), 2, + ACTIONS(3870), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3757), 17, + ACTIONS(3630), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137104,6 +136356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137114,58 +136367,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28811] = 22, + [29509] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(337), 1, + anon_sym_EQ, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3862), 1, + anon_sym_DOT_DOT, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3743), 1, - anon_sym_DOT_DOT, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, + ACTIONS(3860), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1472), 2, + ACTIONS(3870), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3620), 7, + ACTIONS(331), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137173,7 +136426,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137184,58 +136436,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28903] = 22, + [29599] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3862), 1, + anon_sym_DOT_DOT, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3743), 1, - anon_sym_DOT_DOT, - ACTIONS(3761), 1, + ACTIONS(3876), 1, anon_sym_EQ, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, + ACTIONS(3860), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1473), 2, + ACTIONS(3870), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3604), 7, + ACTIONS(3874), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137243,7 +136495,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137254,39 +136505,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [28995] = 10, + [29689] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - STATE(1474), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3862), 1, anon_sym_DOT_DOT, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3880), 1, + anon_sym_EQ, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3860), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3646), 25, + STATE(1475), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3878), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137294,14 +136564,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137312,53 +136574,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29063] = 9, + [29779] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, - anon_sym_BANG, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(3767), 1, - anon_sym_COLON_COLON, - STATE(1685), 1, - sym_field_initializer_list, - STATE(1475), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(992), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3862), 1, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(990), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3864), 1, anon_sym_AMP_AMP, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, + ACTIONS(3884), 1, + anon_sym_EQ, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3860), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3870), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1476), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3882), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137369,54 +136643,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29129] = 10, + [29869] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, - anon_sym_LPAREN, - ACTIONS(3692), 1, - anon_sym_LT2, - ACTIONS(3739), 1, - anon_sym_COLON_COLON, - STATE(1587), 1, - sym_type_arguments, - STATE(1588), 1, - sym_parameters, - STATE(1476), 2, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3184), 17, - anon_sym_PLUS, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, + anon_sym_PERCENT, + ACTIONS(3536), 9, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3182), 21, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3532), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -137426,59 +136700,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29197] = 21, + [29939] = 18, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3743), 1, - anon_sym_DOT_DOT, - ACTIONS(3771), 1, + ACTIONS(3536), 2, anon_sym_EQ, - ACTIONS(3715), 2, + anon_sym_DOT_DOT, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1477), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3769), 17, + ACTIONS(3532), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137486,6 +136755,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137496,44 +136768,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29287] = 15, + [30023] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3715), 2, + ACTIONS(3536), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3729), 2, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1478), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(3646), 25, + ACTIONS(3868), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3532), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137545,10 +136823,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137559,42 +136833,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29365] = 13, + [30105] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3715), 2, + ACTIONS(3854), 1, + anon_sym_CARET, + ACTIONS(3858), 1, + anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3729), 2, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1479), 2, + ACTIONS(3888), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 6, - anon_sym_EQ, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3646), 25, + ACTIONS(3868), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3886), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137604,12 +136890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137620,23 +136900,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29439] = 9, + [30191] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3256), 1, - anon_sym_LBRACE, - ACTIONS(3258), 1, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(3892), 1, anon_sym_COLON_COLON, - ACTIONS(3773), 1, + ACTIONS(3894), 1, anon_sym_BANG, - STATE(1324), 1, - sym_field_initializer_list, - STATE(1480), 2, + ACTIONS(3896), 1, + anon_sym_LT2, + STATE(1595), 1, + sym_parameters, + STATE(1600), 1, + sym_type_arguments, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(3192), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -137650,13 +136934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 24, - anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_LT_LT_EQ, + ACTIONS(3188), 20, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, anon_sym_DOT_DOT_DOT, @@ -137665,7 +136949,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -137675,113 +136958,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29505] = 22, + [30261] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3743), 1, - anon_sym_DOT_DOT, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3741), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1481), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3624), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3763), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [29597] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 7, + ACTIONS(3536), 5, anon_sym_EQ, - anon_sym_AMP, - anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3646), 25, + ACTIONS(3532), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -137807,61 +137021,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29669] = 25, + [30337] = 25, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1054), 1, - anon_sym_for, - ACTIONS(1060), 1, + ACTIONS(1038), 1, anon_sym_extern, - ACTIONS(3034), 1, + ACTIONS(3064), 1, anon_sym_fn, - ACTIONS(3775), 1, - sym_identifier, - ACTIONS(3779), 1, + ACTIONS(3371), 1, anon_sym_COLON_COLON, - ACTIONS(3781), 1, + ACTIONS(3373), 1, anon_sym_default, - ACTIONS(3783), 1, + ACTIONS(3377), 1, anon_sym_union, - ACTIONS(3787), 1, + ACTIONS(3381), 1, sym_metavariable, - STATE(1017), 1, + ACTIONS(3898), 1, + sym_identifier, + ACTIONS(3900), 1, + anon_sym_for, + STATE(1011), 1, sym_scoped_type_identifier, - STATE(1074), 1, + STATE(1078), 1, sym_generic_type, - STATE(1347), 1, - sym_function_type, - STATE(1693), 1, + STATE(1620), 1, sym_for_lifetimes, - STATE(2165), 1, + STATE(2178), 1, aux_sym_function_modifiers_repeat1, - STATE(2318), 1, + STATE(2366), 1, sym_extern_modifier, - STATE(3258), 1, + STATE(3297), 1, sym_function_modifiers, - STATE(3293), 1, + STATE(3333), 1, sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, - STATE(3442), 1, + STATE(3467), 1, sym_generic_type_with_turbofish, + STATE(3486), 1, + sym_bracketed_type, + STATE(1091), 2, + sym_higher_ranked_trait_bound, + sym_function_type, STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(1046), 3, + ACTIONS(1024), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3785), 3, + ACTIONS(3379), 3, sym_self, sym_super, sym_crate, - ACTIONS(3777), 17, + ACTIONS(3369), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137879,105 +137094,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [29766] = 7, + [30435] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3222), 1, - anon_sym_COLON_COLON, - ACTIONS(3224), 1, - anon_sym_BANG, - STATE(1484), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3220), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(371), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - anon_sym_LT_EQ, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3218), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [29827] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3202), 1, - anon_sym_COLON_COLON, - ACTIONS(3204), 1, - anon_sym_BANG, - STATE(1485), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3200), 17, - anon_sym_PLUS, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, + ACTIONS(3868), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3198), 23, + anon_sym_GT_EQ, + ACTIONS(369), 19, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137986,162 +137159,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29888] = 9, + [30521] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, - anon_sym_LPAREN, - ACTIONS(3692), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1584), 1, - sym_parameters, - STATE(1486), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3216), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3862), 1, anon_sym_DOT_DOT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3214), 21, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3864), 1, anon_sym_AMP_AMP, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [29953] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3230), 1, - anon_sym_COLON_COLON, - ACTIONS(3232), 1, - anon_sym_BANG, - STATE(1487), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3228), 17, + ACTIONS(3846), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3226), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3860), 2, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_GT_GT_EQ, - [30014] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3210), 1, - anon_sym_COLON_COLON, - ACTIONS(3212), 1, - anon_sym_BANG, - STATE(1488), 2, + ACTIONS(3870), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3208), 17, - anon_sym_PLUS, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3206), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_LT2, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3728), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138150,53 +137229,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30075] = 9, + [30613] = 15, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, - anon_sym_LPAREN, - ACTIONS(3692), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1584), 1, - sym_parameters, - STATE(1489), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3188), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_EQ, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3186), 21, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + STATE(1486), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3536), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(3532), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -138206,124 +137292,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30140] = 25, - ACTIONS(31), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1060), 1, - anon_sym_extern, - ACTIONS(3034), 1, - anon_sym_fn, - ACTIONS(3779), 1, - anon_sym_COLON_COLON, - ACTIONS(3781), 1, - anon_sym_default, - ACTIONS(3783), 1, - anon_sym_union, - ACTIONS(3787), 1, - sym_metavariable, - ACTIONS(3789), 1, - sym_identifier, - ACTIONS(3791), 1, - anon_sym_for, - STATE(1020), 1, - sym_scoped_type_identifier, - STATE(1061), 1, - sym_generic_type, - STATE(1362), 1, - sym_function_type, - STATE(1693), 1, - sym_for_lifetimes, - STATE(2165), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(3258), 1, - sym_function_modifiers, - STATE(3293), 1, - sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, - STATE(3442), 1, - sym_generic_type_with_turbofish, - STATE(1490), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1046), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3785), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3777), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [30237] = 8, + [30691] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3168), 1, - anon_sym_BANG, - ACTIONS(3793), 1, - anon_sym_COLON_COLON, - STATE(1324), 1, - sym_field_initializer_list, - STATE(1491), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(992), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3862), 1, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(990), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3864), 1, anon_sym_AMP_AMP, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, + ACTIONS(3904), 1, + anon_sym_EQ, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3860), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3870), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1487), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3902), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138334,41 +137363,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30300] = 6, + [30781] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3390), 1, - anon_sym_LBRACE, - STATE(1492), 2, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3852), 1, + anon_sym_AMP, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3870), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3224), 16, - anon_sym_PLUS, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_DOT, - anon_sym_AMP, anon_sym_PERCENT, + ACTIONS(3536), 6, + anon_sym_EQ, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3222), 25, + ACTIONS(3532), 25, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_if, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -138387,52 +137424,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30359] = 9, + [30855] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, - anon_sym_LPAREN, - ACTIONS(3692), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1584), 1, - sym_parameters, - STATE(1493), 2, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3870), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(3196), 17, - anon_sym_PLUS, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, + anon_sym_PERCENT, + ACTIONS(3536), 7, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3194), 21, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3532), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -138442,466 +137482,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30424] = 5, + [30927] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3004), 10, - anon_sym_LPAREN, + ACTIONS(3534), 1, anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANG, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3002), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [30481] = 25, - ACTIONS(31), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1054), 1, - anon_sym_for, - ACTIONS(1060), 1, - anon_sym_extern, - ACTIONS(3034), 1, - anon_sym_fn, - ACTIONS(3779), 1, - anon_sym_COLON_COLON, - ACTIONS(3781), 1, - anon_sym_default, - ACTIONS(3783), 1, - anon_sym_union, - ACTIONS(3787), 1, - sym_metavariable, - ACTIONS(3795), 1, - sym_identifier, - STATE(1026), 1, - sym_scoped_type_identifier, - STATE(1084), 1, - sym_generic_type, - STATE(1145), 1, - sym_function_type, - STATE(1693), 1, - sym_for_lifetimes, - STATE(2165), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(3258), 1, - sym_function_modifiers, - STATE(3293), 1, - sym_scoped_identifier, - STATE(3441), 1, - sym_bracketed_type, - STATE(3442), 1, - sym_generic_type_with_turbofish, - STATE(1495), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1046), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3785), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3777), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [30578] = 25, - ACTIONS(31), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1060), 1, - anon_sym_extern, - ACTIONS(3070), 1, - anon_sym_fn, - ACTIONS(3797), 1, - sym_identifier, - ACTIONS(3801), 1, - anon_sym_COLON_COLON, - ACTIONS(3803), 1, - anon_sym_default, - ACTIONS(3805), 1, - anon_sym_for, - ACTIONS(3807), 1, - anon_sym_union, - ACTIONS(3811), 1, - sym_metavariable, - STATE(1500), 1, - sym_scoped_type_identifier, - STATE(1580), 1, - sym_generic_type, - STATE(1616), 1, - sym_function_type, - STATE(1695), 1, - sym_for_lifetimes, - STATE(2165), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(3396), 1, - sym_function_modifiers, - STATE(3407), 1, - sym_scoped_identifier, - STATE(3450), 1, - sym_bracketed_type, - STATE(3451), 1, - sym_generic_type_with_turbofish, - STATE(1496), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1046), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3809), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3799), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [30675] = 25, - ACTIONS(31), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1054), 1, - anon_sym_for, - ACTIONS(1060), 1, - anon_sym_extern, - ACTIONS(3070), 1, - anon_sym_fn, - ACTIONS(3801), 1, - anon_sym_COLON_COLON, - ACTIONS(3803), 1, - anon_sym_default, - ACTIONS(3807), 1, - anon_sym_union, - ACTIONS(3811), 1, - sym_metavariable, - ACTIONS(3813), 1, - sym_identifier, - STATE(1489), 1, - sym_scoped_type_identifier, - STATE(1557), 1, - sym_generic_type, - STATE(1618), 1, - sym_function_type, - STATE(1695), 1, - sym_for_lifetimes, - STATE(2165), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(3396), 1, - sym_function_modifiers, - STATE(3407), 1, - sym_scoped_identifier, - STATE(3450), 1, - sym_bracketed_type, - STATE(3451), 1, - sym_generic_type_with_turbofish, - STATE(1497), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1046), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3809), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3799), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [30772] = 25, - ACTIONS(31), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1054), 1, - anon_sym_for, - ACTIONS(1060), 1, - anon_sym_extern, - ACTIONS(3070), 1, - anon_sym_fn, - ACTIONS(3801), 1, - anon_sym_COLON_COLON, - ACTIONS(3803), 1, - anon_sym_default, - ACTIONS(3807), 1, - anon_sym_union, - ACTIONS(3811), 1, - sym_metavariable, - ACTIONS(3815), 1, - sym_identifier, - STATE(1486), 1, - sym_scoped_type_identifier, - STATE(1540), 1, - sym_generic_type, - STATE(1658), 1, - sym_function_type, - STATE(1695), 1, - sym_for_lifetimes, - STATE(2165), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(3396), 1, - sym_function_modifiers, - STATE(3407), 1, - sym_scoped_identifier, - STATE(3450), 1, - sym_bracketed_type, - STATE(3451), 1, - sym_generic_type_with_turbofish, - STATE(1498), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1046), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3809), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3799), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [30869] = 25, - ACTIONS(31), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1052), 1, - anon_sym_fn, - ACTIONS(1054), 1, - anon_sym_for, - ACTIONS(1060), 1, - anon_sym_extern, - ACTIONS(3272), 1, - anon_sym_COLON_COLON, - ACTIONS(3278), 1, - anon_sym_union, - ACTIONS(3284), 1, - sym_metavariable, - ACTIONS(3817), 1, - sym_identifier, - ACTIONS(3821), 1, - anon_sym_default, - STATE(1732), 1, - sym_for_lifetimes, - STATE(1914), 1, - sym_scoped_type_identifier, - STATE(1942), 1, - sym_generic_type, - STATE(1976), 1, - sym_function_type, - STATE(2165), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(3307), 1, - sym_function_modifiers, - STATE(3380), 1, - sym_scoped_identifier, - STATE(3395), 1, - sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - STATE(1499), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1046), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3282), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3819), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [30966] = 9, + ACTIONS(3854), 1, + anon_sym_CARET, + ACTIONS(3858), 1, + anon_sym_PIPE, + ACTIONS(3862), 1, + anon_sym_DOT_DOT, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3908), 1, + anon_sym_EQ, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3860), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3870), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1490), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3906), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [31017] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, - anon_sym_LPAREN, - ACTIONS(3692), 1, - anon_sym_LT2, - STATE(1583), 1, - sym_type_arguments, - STATE(1584), 1, - sym_parameters, - STATE(1500), 2, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(3192), 17, - anon_sym_PLUS, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3536), 11, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3532), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, - ACTIONS(3190), 21, + anon_sym_GT_GT_EQ, + [31085] = 22, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3534), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3538), 1, anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, + anon_sym_AMP, + ACTIONS(3854), 1, + anon_sym_CARET, + ACTIONS(3858), 1, + anon_sym_PIPE, + ACTIONS(3862), 1, + anon_sym_DOT_DOT, + ACTIONS(3864), 1, anon_sym_AMP_AMP, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3860), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3870), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1492), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3578), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138910,62 +137679,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31031] = 25, + [31177] = 25, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1052), 1, + ACTIONS(1030), 1, anon_sym_fn, - ACTIONS(1054), 1, - anon_sym_for, - ACTIONS(1060), 1, + ACTIONS(1038), 1, anon_sym_extern, - ACTIONS(3272), 1, + ACTIONS(3094), 1, + anon_sym_for, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - ACTIONS(3278), 1, + ACTIONS(3339), 1, + anon_sym_default, + ACTIONS(3343), 1, anon_sym_union, - ACTIONS(3284), 1, + ACTIONS(3347), 1, sym_metavariable, - ACTIONS(3821), 1, - anon_sym_default, - ACTIONS(3823), 1, + ACTIONS(3910), 1, sym_identifier, - STATE(1732), 1, + STATE(1575), 1, sym_for_lifetimes, - STATE(1913), 1, + STATE(1902), 1, sym_scoped_type_identifier, - STATE(1943), 1, + STATE(1926), 1, sym_generic_type, - STATE(1986), 1, - sym_function_type, - STATE(2165), 1, + STATE(2178), 1, aux_sym_function_modifiers_repeat1, - STATE(2318), 1, + STATE(2366), 1, sym_extern_modifier, - STATE(3307), 1, - sym_function_modifiers, - STATE(3380), 1, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, sym_scoped_identifier, - STATE(3395), 1, + STATE(3436), 1, sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - STATE(1501), 2, + STATE(3448), 1, + sym_function_modifiers, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(1046), 3, + STATE(1982), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1024), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3282), 3, + ACTIONS(3345), 3, sym_self, sym_super, sym_crate, - ACTIONS(3819), 17, + ACTIONS(3335), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138983,75 +137754,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [31128] = 5, + [31275] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1502), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2182), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3269), 1, + anon_sym_LBRACE, + ACTIONS(3271), 1, anon_sym_COLON_COLON, + ACTIONS(3912), 1, anon_sym_BANG, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(2184), 32, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [31185] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3340), 1, - anon_sym_LBRACE, - STATE(1503), 2, + STATE(1396), 1, + sym_field_initializer_list, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(3204), 16, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -139062,14 +137786,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3202), 25, + ACTIONS(904), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -139088,23 +137811,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31244] = 6, + [31341] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3392), 1, + ACTIONS(3894), 1, + anon_sym_BANG, + ACTIONS(3914), 1, anon_sym_LBRACE, - STATE(1504), 2, + ACTIONS(3916), 1, + anon_sym_COLON_COLON, + STATE(1736), 1, + sym_field_initializer_list, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3232), 16, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -139115,14 +137843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 25, + ACTIONS(904), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -139141,95 +137867,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31303] = 25, - ACTIONS(31), 1, - anon_sym_LT, + [31406] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1052), 1, - anon_sym_fn, - ACTIONS(1060), 1, - anon_sym_extern, - ACTIONS(3272), 1, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(3896), 1, + anon_sym_LT2, + ACTIONS(3918), 1, anon_sym_COLON_COLON, - ACTIONS(3278), 1, - anon_sym_union, - ACTIONS(3284), 1, - sym_metavariable, - ACTIONS(3821), 1, - anon_sym_default, - ACTIONS(3825), 1, - sym_identifier, - ACTIONS(3827), 1, - anon_sym_for, - STATE(1732), 1, - sym_for_lifetimes, - STATE(1912), 1, - sym_scoped_type_identifier, - STATE(1956), 1, - sym_generic_type, - STATE(1990), 1, - sym_function_type, - STATE(2165), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(3307), 1, - sym_function_modifiers, - STATE(3380), 1, - sym_scoped_identifier, - STATE(3395), 1, - sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - STATE(1505), 2, + STATE(1595), 1, + sym_parameters, + STATE(1600), 1, + sym_type_arguments, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(1046), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3282), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3819), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [31400] = 6, + ACTIONS(3202), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + ACTIONS(3200), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [31473] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3396), 1, - anon_sym_LBRACE, - STATE(1506), 2, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(3896), 1, + anon_sym_LT2, + ACTIONS(3918), 1, + anon_sym_COLON_COLON, + STATE(1595), 1, + sym_parameters, + STATE(1600), 1, + sym_type_arguments, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3212), 16, + ACTIONS(3208), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -139238,23 +137956,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3210), 25, - anon_sym_LPAREN, + anon_sym_LT_LT_EQ, + ACTIONS(3206), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -139264,23 +137980,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31459] = 8, + [31540] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3250), 1, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(3896), 1, + anon_sym_LT2, + ACTIONS(3918), 1, anon_sym_COLON_COLON, - ACTIONS(3252), 1, - anon_sym_BANG, - ACTIONS(3829), 1, - sym_identifier, - STATE(1507), 2, + STATE(1595), 1, + sym_parameters, + STATE(1600), 1, + sym_type_arguments, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3248), 16, + ACTIONS(3212), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139293,23 +138012,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_as, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3246), 23, - anon_sym_SEMI, - anon_sym_LPAREN, + anon_sym_LT_LT_EQ, + ACTIONS(3210), 20, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -139319,21 +138037,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31522] = 7, + [31607] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3831), 1, - anon_sym_SQUOTE, - STATE(1674), 1, - sym_label, - STATE(1508), 2, + ACTIONS(3196), 1, + anon_sym_BANG, + ACTIONS(3920), 1, + anon_sym_COLON_COLON, + STATE(1396), 1, + sym_field_initializer_list, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(3410), 15, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139349,13 +138068,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3408), 24, + ACTIONS(904), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -139374,83 +138093,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31582] = 18, - ACTIONS(31), 1, - anon_sym_LT, + [31670] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1032), 1, - anon_sym_DASH, - ACTIONS(1074), 1, - aux_sym_string_literal_token1, - ACTIONS(1753), 1, + ACTIONS(3277), 1, anon_sym_COLON_COLON, - ACTIONS(3833), 1, - sym_identifier, - ACTIONS(3839), 1, - sym_metavariable, - STATE(2017), 1, - sym_scoped_identifier, - STATE(2087), 1, - sym__literal_pattern, - STATE(3248), 1, - sym_bracketed_type, - STATE(3273), 1, - sym_generic_type_with_turbofish, - ACTIONS(1076), 2, - anon_sym_true, - anon_sym_false, - STATE(1509), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3837), 3, - sym_self, - sym_super, - sym_crate, - STATE(2007), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(1072), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3835), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [31664] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3168), 1, + ACTIONS(3279), 1, anon_sym_BANG, - ACTIONS(3841), 1, - anon_sym_COLON_COLON, - STATE(1510), 2, + ACTIONS(3922), 1, + sym_identifier, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(3275), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139463,16 +138120,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_PIPE, + anon_sym_as, anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 24, + ACTIONS(3273), 23, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -139491,24 +138148,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31724] = 7, + [31733] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3843), 1, - anon_sym_else, - STATE(1640), 1, - sym_else_clause, - STATE(1511), 2, + STATE(1501), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3674), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3672), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31789] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1502), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3926), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3924), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [31845] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(728), 15, + ACTIONS(3244), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -139519,13 +138275,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(726), 24, + ACTIONS(3242), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -139544,19 +138301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31784] = 7, + [31901] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3538), 1, - anon_sym_COLON_COLON, - ACTIONS(3773), 1, + ACTIONS(3634), 1, anon_sym_BANG, - STATE(1512), 2, + ACTIONS(3928), 1, + anon_sym_COLON_COLON, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(3275), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139572,12 +138329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 24, - anon_sym_SEMI, + ACTIONS(3273), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_SQUOTE, anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -139597,15 +138354,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31844] = 5, + [31961] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1513), 2, + ACTIONS(3385), 1, + anon_sym_LBRACE, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3212), 16, + ACTIONS(3220), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139622,14 +138381,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3210), 25, + ACTIONS(3218), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -139648,23 +138406,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31900] = 6, + [32019] = 18, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3638), 2, - anon_sym_LBRACE, + ACTIONS(1592), 1, + anon_sym_DASH, + ACTIONS(1614), 1, + aux_sym_string_literal_token1, + ACTIONS(3822), 1, + sym_identifier, + ACTIONS(3826), 1, anon_sym_COLON_COLON, - STATE(1514), 2, + ACTIONS(3830), 1, + sym_metavariable, + STATE(2516), 1, + sym_scoped_identifier, + STATE(2939), 1, + sym__literal_pattern, + STATE(3432), 1, + sym_bracketed_type, + STATE(3445), 1, + sym_generic_type_with_turbofish, + ACTIONS(1616), 2, + anon_sym_true, + anon_sym_false, + STATE(1506), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3828), 3, + sym_self, + sym_super, + sym_crate, + STATE(2338), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(1612), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3824), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [32101] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3455), 1, + anon_sym_LBRACE, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(3640), 15, + ACTIONS(3228), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -139675,13 +138497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3636), 24, + ACTIONS(3226), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -139700,21 +138522,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31958] = 5, + [32159] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1515), 2, + ACTIONS(3226), 1, + anon_sym_COLON_COLON, + ACTIONS(3228), 1, + anon_sym_BANG, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(3204), 16, + ACTIONS(3224), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -139723,23 +138548,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3202), 25, + anon_sym_LT_LT_EQ, + ACTIONS(3222), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -139749,25 +138574,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32014] = 6, + [32219] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3660), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1516), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(3640), 15, + ACTIONS(3228), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -139778,13 +138600,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3636), 24, + ACTIONS(3226), 25, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -139803,15 +138626,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32072] = 5, + [32275] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1517), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(3232), 16, + ACTIONS(3256), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139828,7 +138651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 25, + ACTIONS(3254), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -139854,15 +138677,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32128] = 5, + [32331] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1518), 2, + STATE(1511), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3760), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3758), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32387] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3932), 1, + anon_sym_LPAREN, + STATE(1512), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3935), 9, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3930), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32445] = 18, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1008), 1, + anon_sym_DASH, + ACTIONS(1052), 1, + aux_sym_string_literal_token1, + ACTIONS(1646), 1, + anon_sym_COLON_COLON, + ACTIONS(3176), 1, + sym_identifier, + ACTIONS(3186), 1, + sym_metavariable, + STATE(2051), 1, + sym_scoped_identifier, + STATE(2084), 1, + sym__literal_pattern, + STATE(3313), 1, + sym_generic_type_with_turbofish, + STATE(3383), 1, + sym_bracketed_type, + ACTIONS(1054), 2, + anon_sym_true, + anon_sym_false, + STATE(1513), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3184), 3, + sym_self, + sym_super, + sym_crate, + STATE(1997), 3, + sym_negative_literal, + sym_string_literal, + sym_boolean_literal, + ACTIONS(1050), 4, + sym_raw_string_literal, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3182), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [32527] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(3212), 16, + ACTIONS(3220), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139879,7 +138869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3210), 25, + ACTIONS(3218), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -139905,51 +138895,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32184] = 18, + [32583] = 18, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1556), 1, + ACTIONS(1008), 1, anon_sym_DASH, - ACTIONS(1578), 1, + ACTIONS(1052), 1, aux_sym_string_literal_token1, - ACTIONS(3845), 1, - sym_identifier, - ACTIONS(3849), 1, + ACTIONS(1646), 1, anon_sym_COLON_COLON, - ACTIONS(3853), 1, + ACTIONS(3164), 1, + sym_identifier, + ACTIONS(3174), 1, sym_metavariable, - STATE(2543), 1, + STATE(2062), 1, sym_scoped_identifier, - STATE(2850), 1, + STATE(2069), 1, sym__literal_pattern, - STATE(3403), 1, + STATE(3313), 1, sym_generic_type_with_turbofish, - STATE(3421), 1, + STATE(3383), 1, sym_bracketed_type, - ACTIONS(1580), 2, + ACTIONS(1054), 2, anon_sym_true, anon_sym_false, - STATE(1519), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(3851), 3, + ACTIONS(3172), 3, sym_self, sym_super, sym_crate, - STATE(2302), 3, + STATE(1997), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(1576), 4, + ACTIONS(1050), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3847), 19, + ACTIONS(3170), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -139969,15 +138959,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [32266] = 5, + [32665] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1520), 2, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(3896), 1, + anon_sym_LT2, + STATE(1610), 1, + sym_parameters, + STATE(1613), 1, + sym_type_arguments, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(3312), 15, + ACTIONS(3260), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -139991,24 +138989,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3310), 26, - anon_sym_LPAREN, + anon_sym_LT_LT_EQ, + ACTIONS(3258), 20, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -140018,23 +139013,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [32729] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3254), 1, + anon_sym_COLON_COLON, + ACTIONS(3256), 1, + anon_sym_BANG, + STATE(1517), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3252), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_LT_LT_EQ, + ACTIONS(3250), 22, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, anon_sym_GT_GT_EQ, - [32322] = 5, + [32789] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1521), 2, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(3896), 1, + anon_sym_LT2, + STATE(1610), 1, + sym_parameters, + STATE(1613), 1, + sym_type_arguments, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3204), 16, + ACTIONS(3232), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + ACTIONS(3230), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_GT_GT_EQ, + [32853] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3196), 1, anon_sym_BANG, + ACTIONS(3937), 1, + anon_sym_COLON_COLON, + STATE(1519), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(906), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -140045,12 +139150,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3202), 25, + ACTIONS(904), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_DOT_DOT_DOT, @@ -140071,51 +139175,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32378] = 18, + [32913] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1520), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3941), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3939), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [32969] = 18, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1556), 1, + ACTIONS(1592), 1, anon_sym_DASH, - ACTIONS(1578), 1, + ACTIONS(1614), 1, aux_sym_string_literal_token1, - ACTIONS(3849), 1, + ACTIONS(3826), 1, anon_sym_COLON_COLON, - ACTIONS(3855), 1, + ACTIONS(3834), 1, sym_identifier, - ACTIONS(3861), 1, + ACTIONS(3840), 1, sym_metavariable, - STATE(2532), 1, + STATE(2507), 1, sym_scoped_identifier, - STATE(2825), 1, + STATE(2947), 1, sym__literal_pattern, - STATE(3403), 1, - sym_generic_type_with_turbofish, - STATE(3421), 1, + STATE(3432), 1, sym_bracketed_type, - ACTIONS(1580), 2, + STATE(3445), 1, + sym_generic_type_with_turbofish, + ACTIONS(1616), 2, anon_sym_true, anon_sym_false, - STATE(1522), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 3, + ACTIONS(3838), 3, sym_self, sym_super, sym_crate, - STATE(2302), 3, + STATE(2338), 3, sym_negative_literal, sym_string_literal, sym_boolean_literal, - ACTIONS(1576), 4, + ACTIONS(1612), 4, sym_raw_string_literal, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3857), 19, + ACTIONS(3836), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140135,68 +139290,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [32460] = 7, + [33051] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3482), 1, - anon_sym_BANG, - ACTIONS(3863), 1, - anon_sym_COLON_COLON, - STATE(1523), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3248), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3246), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3329), 1, anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [32520] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1524), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3224), 16, + ACTIONS(3244), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140213,14 +139317,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3222), 25, + ACTIONS(3242), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -140239,15 +139342,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32576] = 5, + [33109] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1525), 2, + ACTIONS(3218), 1, + anon_sym_COLON_COLON, + ACTIONS(3220), 1, + anon_sym_BANG, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3400), 15, + ACTIONS(3216), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140261,24 +139368,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3398), 26, + anon_sym_LT_LT_EQ, + ACTIONS(3214), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -140288,23 +139394,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32632] = 5, + [33169] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1526), 2, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(3896), 1, + anon_sym_LT2, + STATE(1610), 1, + sym_parameters, + STATE(1613), 1, + sym_type_arguments, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3232), 16, + ACTIONS(3248), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -140313,23 +139425,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3230), 25, - anon_sym_LPAREN, + anon_sym_LT_LT_EQ, + ACTIONS(3246), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -140339,21 +139449,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32688] = 7, + [33233] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3865), 1, - anon_sym_COLON_COLON, - ACTIONS(3867), 1, - anon_sym_BANG, - STATE(1527), 2, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(3896), 1, + anon_sym_LT2, + STATE(1610), 1, + sym_parameters, + STATE(1613), 1, + sym_type_arguments, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(3248), 15, + ACTIONS(3236), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140367,22 +139480,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3246), 24, - anon_sym_LPAREN, + anon_sym_LT_LT_EQ, + ACTIONS(3234), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -140392,23 +139504,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32748] = 5, + [33297] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, + ACTIONS(3943), 1, + anon_sym_COLON_COLON, + STATE(1526), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3935), 9, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3930), 31, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33355] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3242), 1, + anon_sym_COLON_COLON, + ACTIONS(3244), 1, + anon_sym_BANG, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3224), 16, + ACTIONS(3240), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -140417,23 +139583,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3222), 25, + anon_sym_LT_LT_EQ, + ACTIONS(3238), 22, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -140443,22 +139609,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32804] = 5, + [33415] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1529), 2, + ACTIONS(3461), 1, + anon_sym_LBRACE, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(3292), 15, + ACTIONS(3256), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -140469,15 +139637,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3290), 26, + ACTIONS(3254), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -140496,51 +139662,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32860] = 18, - ACTIONS(31), 1, - anon_sym_LT, + [33473] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1032), 1, - anon_sym_DASH, - ACTIONS(1074), 1, - aux_sym_string_literal_token1, - ACTIONS(1753), 1, - anon_sym_COLON_COLON, - ACTIONS(3869), 1, - sym_identifier, - ACTIONS(3875), 1, - sym_metavariable, - STATE(2037), 1, - sym_scoped_identifier, - STATE(2051), 1, - sym__literal_pattern, - STATE(3248), 1, - sym_bracketed_type, - STATE(3273), 1, - sym_generic_type_with_turbofish, - ACTIONS(1076), 2, - anon_sym_true, - anon_sym_false, - STATE(1530), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3873), 3, - sym_self, - sym_super, - sym_crate, - STATE(2007), 3, - sym_negative_literal, - sym_string_literal, - sym_boolean_literal, - ACTIONS(1072), 4, - sym_raw_string_literal, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3871), 19, + ACTIONS(3948), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3946), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -140558,21 +139699,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_impl, anon_sym_union, - [32942] = 7, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [33529] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3690), 1, - anon_sym_BANG, - ACTIONS(3877), 1, + ACTIONS(3586), 1, anon_sym_COLON_COLON, - STATE(1531), 2, + ACTIONS(3912), 1, + anon_sym_BANG, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140588,13 +139741,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 24, + ACTIONS(904), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -140613,15 +139766,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33002] = 5, + [33589] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1532), 2, + ACTIONS(3502), 1, + anon_sym_COLON_COLON, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3288), 15, + ACTIONS(3500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140637,14 +139792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3286), 25, + ACTIONS(3498), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -140663,89 +139817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33057] = 25, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(395), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3883), 1, - anon_sym_EQ, - ACTIONS(3885), 1, - anon_sym_AMP, - ACTIONS(3887), 1, - anon_sym_CARET, - ACTIONS(3891), 1, - anon_sym_PIPE, - ACTIONS(3895), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 1, - anon_sym_AMP_AMP, - ACTIONS(3899), 1, - anon_sym_PIPE_PIPE, - STATE(1700), 1, - sym_block, - STATE(3509), 1, - sym_label, - ACTIONS(3879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3893), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3903), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1533), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3881), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3901), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3905), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [33152] = 7, + [33646] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3907), 1, - anon_sym_LPAREN, - STATE(1689), 1, - sym_arguments, - STATE(1534), 2, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(3406), 15, + ACTIONS(3389), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140761,12 +139841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3402), 23, + ACTIONS(3387), 25, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -140785,65 +139867,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33211] = 5, + [33701] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3701), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3928), 1, anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3699), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33266] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1536), 2, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(3296), 15, + ACTIONS(3275), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140859,14 +139893,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3294), 25, + ACTIONS(3273), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -140885,15 +139918,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33321] = 5, + [33758] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1537), 2, + ACTIONS(3950), 1, + anon_sym_COLON_COLON, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(3316), 15, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -140909,14 +139944,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3314), 25, + ACTIONS(904), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, - anon_sym_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -140935,66 +139969,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33376] = 25, + [33815] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(529), 1, - anon_sym_RBRACK, - ACTIONS(3514), 1, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3964), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3968), 1, + anon_sym_DOT_DOT, + ACTIONS(3970), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3909), 1, - anon_sym_SEMI, - ACTIONS(3911), 1, - anon_sym_COMMA, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - STATE(2962), 1, - aux_sym_arguments_repeat1, - ACTIONS(3715), 2, + STATE(1730), 1, + sym_block, + STATE(3552), 1, + sym_label, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3966), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1538), 2, + ACTIONS(3976), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141005,47 +140039,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33471] = 6, + [33910] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3917), 1, - anon_sym_DASH_GT, - STATE(1539), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3354), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3960), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3964), 1, anon_sym_PIPE, + ACTIONS(3968), 1, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3352), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3970), 1, anon_sym_AMP_AMP, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, + STATE(1778), 1, + sym_block, + STATE(3552), 1, + sym_label, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3966), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3976), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1536), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141056,47 +140109,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33528] = 6, + [34005] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3919), 1, - anon_sym_COLON_COLON, - STATE(1540), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3216), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(924), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3960), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3964), 1, anon_sym_PIPE, + ACTIONS(3968), 1, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3214), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3970), 1, anon_sym_AMP_AMP, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, + STATE(463), 1, + sym_block, + STATE(3551), 1, + sym_label, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3966), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3976), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1537), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141107,47 +140179,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33585] = 6, + [34100] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3921), 1, - anon_sym_COLON_COLON, - STATE(1541), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(992), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3960), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3964), 1, anon_sym_PIPE, + ACTIONS(3968), 1, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(990), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3970), 1, anon_sym_AMP_AMP, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, + STATE(169), 1, + sym_block, + STATE(3422), 1, + sym_label, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3966), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3976), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1538), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141158,66 +140249,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33642] = 25, + [34195] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(690), 1, - anon_sym_RBRACK, - ACTIONS(3514), 1, + ACTIONS(924), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3964), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3968), 1, + anon_sym_DOT_DOT, + ACTIONS(3970), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3923), 1, - anon_sym_SEMI, - ACTIONS(3925), 1, - anon_sym_COMMA, - STATE(2715), 1, - aux_sym_arguments_repeat1, - ACTIONS(3715), 2, + STATE(450), 1, + sym_block, + STATE(3551), 1, + sym_label, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3966), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1542), 2, + ACTIONS(3976), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141228,66 +140319,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33737] = 25, + [34290] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3883), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3964), 1, anon_sym_PIPE, - ACTIONS(3895), 1, + ACTIONS(3968), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 1, + ACTIONS(3970), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, - STATE(1116), 1, + STATE(237), 1, sym_block, - STATE(3460), 1, + STATE(3422), 1, sym_label, - ACTIONS(3879), 2, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3893), 2, + ACTIONS(3966), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3903), 2, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1543), 2, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3905), 10, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141298,66 +140389,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33832] = 25, + [34385] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(698), 1, + ACTIONS(676), 1, anon_sym_RBRACK, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3927), 1, + ACTIONS(3980), 1, anon_sym_SEMI, - ACTIONS(3929), 1, + ACTIONS(3982), 1, anon_sym_COMMA, - STATE(2774), 1, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + STATE(2807), 1, aux_sym_arguments_repeat1, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1544), 2, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141368,20 +140459,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33927] = 5, + [34480] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1545), 2, + ACTIONS(3988), 1, + anon_sym_SQUOTE, + STATE(1724), 1, + sym_label, + STATE(1542), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3315), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3313), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [34539] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(3300), 15, + ACTIONS(3244), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -141392,14 +140536,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3298), 25, + ACTIONS(3242), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -141418,66 +140561,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [33982] = 25, + [34594] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3883), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3964), 1, anon_sym_PIPE, - ACTIONS(3895), 1, + ACTIONS(3968), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 1, + ACTIONS(3970), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, - STATE(1355), 1, + STATE(1246), 1, sym_block, - STATE(3460), 1, + STATE(3500), 1, sym_label, - ACTIONS(3879), 2, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3893), 2, + ACTIONS(3966), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(3903), 2, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1546), 2, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3905), 10, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141488,66 +140631,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34077] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [34689] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3883), 1, + STATE(1545), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3220), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3885), 1, + anon_sym_BANG, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(3887), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3891), 1, - anon_sym_PIPE, - ACTIONS(3895), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 1, - anon_sym_AMP_AMP, - ACTIONS(3899), 1, - anon_sym_PIPE_PIPE, - STATE(201), 1, - sym_block, - STATE(3252), 1, - sym_label, - ACTIONS(3879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3889), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3893), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3903), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1547), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3881), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3218), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_COLON_COLON, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3905), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141558,22 +140681,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34172] = 6, + [34744] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3919), 1, - anon_sym_COLON_COLON, - STATE(1548), 2, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(3196), 15, + ACTIONS(3256), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -141584,13 +140706,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3194), 24, + ACTIONS(3254), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -141609,15 +140731,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34229] = 5, + [34799] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1549), 2, + ACTIONS(3556), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(878), 15, + ACTIONS(3500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141633,14 +140758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(876), 25, + ACTIONS(3498), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -141659,116 +140782,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34284] = 6, + [34856] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3935), 1, + ACTIONS(3556), 1, anon_sym_COLON_COLON, - STATE(1550), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3933), 8, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3931), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34341] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1551), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3939), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3937), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [34396] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1552), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(898), 15, + ACTIONS(3500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141784,14 +140808,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(896), 25, + ACTIONS(3498), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -141810,20 +140833,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34451] = 5, + [34913] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1553), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(3320), 15, + ACTIONS(3228), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_BANG, anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, @@ -141834,14 +140858,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3318), 25, + ACTIONS(3226), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -141860,15 +140883,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34506] = 5, + [34968] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1554), 2, + ACTIONS(3502), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(884), 15, + ACTIONS(3500), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141884,14 +140910,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(882), 25, + ACTIONS(3498), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -141910,15 +140934,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34561] = 5, + [35025] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1555), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3958), 1, + anon_sym_AMP, + ACTIONS(3960), 1, + anon_sym_CARET, + ACTIONS(3964), 1, + anon_sym_PIPE, + ACTIONS(3968), 1, + anon_sym_DOT_DOT, + ACTIONS(3970), 1, + anon_sym_AMP_AMP, + ACTIONS(3972), 1, + anon_sym_PIPE_PIPE, + STATE(1178), 1, + sym_block, + STATE(3500), 1, + sym_label, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3966), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3976), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(3208), 17, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3978), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35120] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1552), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3363), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -141932,24 +141026,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - ACTIONS(3206), 23, + ACTIONS(3361), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, - anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141959,67 +141052,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34616] = 25, + [35175] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(395), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(3514), 1, + ACTIONS(507), 1, + anon_sym_RBRACK, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3883), 1, + ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3895), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - STATE(1669), 1, - sym_block, - STATE(3509), 1, - sym_label, - ACTIONS(3879), 2, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(3990), 1, + anon_sym_SEMI, + ACTIONS(3992), 1, + anon_sym_COMMA, + STATE(2765), 1, + aux_sym_arguments_repeat1, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3893), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3903), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1556), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3905), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142030,17 +141124,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34711] = 6, + [35270] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3919), 1, + ACTIONS(3994), 1, anon_sym_COLON_COLON, - STATE(1557), 2, + ACTIONS(3996), 1, + anon_sym_BANG, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(3188), 15, + ACTIONS(3275), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142056,13 +141152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3186), 24, + ACTIONS(3273), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -142081,15 +141176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34768] = 5, + [35329] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1558), 2, + ACTIONS(3894), 1, + anon_sym_BANG, + ACTIONS(3998), 1, + anon_sym_COLON_COLON, + STATE(1555), 2, sym_line_comment, sym_block_comment, - ACTIONS(892), 15, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142105,14 +141204,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(890), 25, + ACTIONS(904), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, - anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -142131,17 +141228,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34823] = 6, + [35388] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3941), 1, - anon_sym_DASH_GT, - STATE(1559), 2, + STATE(1435), 1, + sym_label, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(3344), 15, + ACTIONS(3315), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142157,13 +141254,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3342), 24, + ACTIONS(3313), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -142182,17 +141279,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34880] = 6, + [35445] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3943), 1, - anon_sym_DASH_GT, - STATE(1560), 2, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(3336), 15, + ACTIONS(3459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142208,13 +141303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3334), 24, + ACTIONS(3457), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -142233,17 +141329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34937] = 6, + [35500] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_COLON_COLON, - STATE(1561), 2, + ACTIONS(4000), 1, + anon_sym_else, + STATE(1669), 1, + sym_else_clause, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(694), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142259,13 +141357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 24, + ACTIONS(692), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -142284,66 +141381,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34994] = 25, + [35559] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(3514), 1, + ACTIONS(658), 1, + anon_sym_RBRACK, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3883), 1, + ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3895), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - STATE(471), 1, - sym_block, - STATE(3510), 1, - sym_label, - ACTIONS(3879), 2, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4002), 1, + anon_sym_SEMI, + ACTIONS(4004), 1, + anon_sym_COMMA, + STATE(2748), 1, + aux_sym_arguments_repeat1, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3893), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3903), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1562), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3905), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142354,66 +141451,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35089] = 25, + [35654] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(3514), 1, + ACTIONS(628), 1, + anon_sym_RBRACK, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3883), 1, + ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3895), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - STATE(477), 1, - sym_block, - STATE(3510), 1, - sym_label, - ACTIONS(3879), 2, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4006), 1, + anon_sym_SEMI, + ACTIONS(4008), 1, + anon_sym_COMMA, + STATE(2773), 1, + aux_sym_arguments_repeat1, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3893), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3903), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1563), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3905), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142424,17 +141521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35184] = 6, + [35749] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3947), 1, - anon_sym_DASH_GT, - STATE(1564), 2, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(3328), 15, + ACTIONS(3415), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142450,13 +141545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3326), 24, + ACTIONS(3413), 25, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -142475,39 +141571,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35241] = 6, + [35804] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3638), 1, - anon_sym_COLON_COLON, - STATE(1565), 2, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3976), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1562), 2, sym_line_comment, sym_block_comment, - ACTIONS(3640), 15, - anon_sym_PLUS, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, + anon_sym_PERCENT, + ACTIONS(3536), 7, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3636), 24, + ACTIONS(3532), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_SQUOTE, - anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -142526,98 +141627,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35298] = 6, + [35872] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3949), 1, - anon_sym_DASH_GT, - STATE(1566), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3304), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3960), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3964), 1, anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3302), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3970), 1, anon_sym_AMP_AMP, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35355] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3863), 1, - anon_sym_COLON_COLON, - STATE(1567), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3248), 15, + ACTIONS(4012), 1, + anon_sym_DOT_DOT, + ACTIONS(3952), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3246), 24, + ACTIONS(4010), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1563), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3630), 3, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_QMARK, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142628,47 +141693,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35412] = 6, + [35960] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3951), 1, - anon_sym_COLON_COLON, - STATE(1568), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(992), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(686), 1, + anon_sym_RPAREN, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4014), 1, + anon_sym_COMMA, + STATE(2730), 1, + aux_sym_arguments_repeat1, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_SQUOTE, - anon_sym_as, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1564), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142679,66 +141761,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35469] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [36052] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3883), 1, + ACTIONS(3956), 1, anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3964), 1, anon_sym_PIPE, - ACTIONS(3895), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 1, + ACTIONS(3970), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, - STATE(209), 1, - sym_block, - STATE(3252), 1, - sym_label, - ACTIONS(3879), 2, + ACTIONS(4012), 1, + anon_sym_DOT_DOT, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3893), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3903), 2, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1569), 2, + ACTIONS(4010), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3578), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3905), 10, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142749,15 +141827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35564] = 5, + [36140] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1570), 2, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(3386), 15, + ACTIONS(856), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142773,14 +141851,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3384), 25, + ACTIONS(854), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -142799,46 +141876,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35619] = 5, + [36194] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1571), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3324), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(672), 1, + anon_sym_RPAREN, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4016), 1, + anon_sym_COMMA, + STATE(2931), 1, + aux_sym_arguments_repeat1, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3322), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1567), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142849,47 +141944,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35674] = 6, + [36286] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3865), 1, - anon_sym_COLON_COLON, - STATE(1572), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3248), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3904), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3960), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3964), 1, anon_sym_PIPE, + ACTIONS(3970), 1, + anon_sym_AMP_AMP, + ACTIONS(3972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4012), 1, anon_sym_DOT_DOT, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3246), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(4010), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1568), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3902), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142900,15 +142009,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35731] = 5, + [36372] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1573), 2, + ACTIONS(4018), 1, + anon_sym_COLON_COLON, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(3378), 15, + ACTIONS(3236), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142924,14 +142035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3376), 25, + ACTIONS(3234), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -142950,17 +142059,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35786] = 6, + [36428] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3660), 1, + ACTIONS(4018), 1, anon_sym_COLON_COLON, - STATE(1574), 2, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(3640), 15, + ACTIONS(3232), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -142976,12 +142085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3636), 24, + ACTIONS(3230), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_SQUOTE, anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -143001,66 +142109,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35843] = 25, + [36484] = 22, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(648), 1, - anon_sym_RBRACK, - ACTIONS(3514), 1, + ACTIONS(1038), 1, + anon_sym_extern, + ACTIONS(3337), 1, + anon_sym_COLON_COLON, + ACTIONS(3339), 1, + anon_sym_default, + ACTIONS(3343), 1, + anon_sym_union, + ACTIONS(3347), 1, + sym_metavariable, + ACTIONS(4020), 1, + sym_identifier, + ACTIONS(4022), 1, + anon_sym_fn, + STATE(2178), 1, + aux_sym_function_modifiers_repeat1, + STATE(2366), 1, + sym_extern_modifier, + STATE(2527), 1, + sym_scoped_type_identifier, + STATE(3287), 1, + sym_generic_type, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, + sym_scoped_identifier, + STATE(3436), 1, + sym_bracketed_type, + STATE(3451), 1, + sym_function_modifiers, + STATE(1571), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1024), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3345), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3335), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [36572] = 21, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3908), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3964), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3970), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(4012), 1, anon_sym_DOT_DOT, - ACTIONS(3953), 1, - anon_sym_SEMI, - ACTIONS(3955), 1, - anon_sym_COMMA, - STATE(2900), 1, - aux_sym_arguments_repeat1, - ACTIONS(3715), 2, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(4010), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1575), 2, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3906), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143071,46 +142240,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35938] = 5, + [36658] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1576), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(888), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(886), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_else, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1573), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4024), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143121,17 +142306,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35993] = 6, + [36746] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3957), 1, + ACTIONS(4026), 1, anon_sym_COLON_COLON, - STATE(1577), 2, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(3196), 15, + ACTIONS(3236), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143147,13 +142332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3194), 24, + ACTIONS(3234), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -143172,75 +142356,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36050] = 5, + [36802] = 22, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1578), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3684), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(1038), 1, + anon_sym_extern, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, + ACTIONS(3339), 1, + anon_sym_default, + ACTIONS(3343), 1, + anon_sym_union, + ACTIONS(3347), 1, sym_metavariable, - ACTIONS(3682), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, + ACTIONS(4028), 1, + sym_identifier, + ACTIONS(4030), 1, + anon_sym_fn, + STATE(2178), 1, + aux_sym_function_modifiers_repeat1, + STATE(2366), 1, + sym_extern_modifier, + STATE(2674), 1, + sym_scoped_type_identifier, + STATE(3287), 1, + sym_generic_type, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3336), 1, + sym_function_modifiers, + STATE(3343), 1, + sym_scoped_identifier, + STATE(3436), 1, + sym_bracketed_type, + STATE(1575), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1024), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, + ACTIONS(3345), 3, sym_self, sym_super, sym_crate, - [36105] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1579), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3961), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3959), 31, + ACTIONS(3335), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -143258,31 +142422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36160] = 6, + [36890] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3919), 1, - anon_sym_COLON_COLON, - STATE(1580), 2, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(3192), 15, + ACTIONS(3449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143298,13 +142446,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3190), 24, + ACTIONS(3447), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -143323,17 +142471,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36217] = 6, + [36944] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1287), 1, - sym_label, - STATE(1581), 2, + ACTIONS(4032), 1, + anon_sym_COLON_COLON, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(3410), 15, + ACTIONS(3236), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143349,12 +142497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3408), 24, + ACTIONS(3234), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, - anon_sym_SQUOTE, anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -143374,66 +142521,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36274] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3963), 1, - anon_sym_LPAREN, - STATE(1582), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3933), 8, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3931), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36331] = 5, + [37000] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1583), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(3362), 15, + ACTIONS(3488), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143449,14 +142545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3360), 25, + ACTIONS(3486), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -143475,17 +142570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36386] = 6, + [37054] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3965), 1, - anon_sym_DASH_GT, - STATE(1584), 2, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(3366), 15, + ACTIONS(3482), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143501,13 +142594,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3364), 24, + ACTIONS(3480), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -143526,67 +142619,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36443] = 5, + [37108] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1585), 2, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3958), 1, + anon_sym_AMP, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3976), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(3969), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3954), 3, anon_sym_STAR, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3536), 6, + anon_sym_EQ, + anon_sym_CARET, anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3532), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3967), 31, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [36498] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37178] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3971), 1, - anon_sym_COLON_COLON, - STATE(1586), 2, + ACTIONS(4034), 1, + anon_sym_DASH_GT, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(3196), 15, + ACTIONS(3437), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143602,13 +142702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3194), 24, + ACTIONS(3435), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -143627,46 +142726,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36555] = 5, + [37234] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1587), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3382), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3960), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3964), 1, anon_sym_PIPE, + ACTIONS(3970), 1, + anon_sym_AMP_AMP, + ACTIONS(3972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4012), 1, anon_sym_DOT_DOT, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3380), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_if, + ACTIONS(4010), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1582), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3728), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143677,17 +142792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36610] = 6, + [37322] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3973), 1, + ACTIONS(4036), 1, anon_sym_DASH_GT, - STATE(1588), 2, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 15, + ACTIONS(3427), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143703,13 +142818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3370), 24, + ACTIONS(3425), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -143728,64 +142842,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36667] = 24, + [37378] = 15, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(694), 1, - anon_sym_RPAREN, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3964), 1, anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3975), 1, - anon_sym_COMMA, - STATE(2931), 1, - aux_sym_arguments_repeat1, - ACTIONS(3715), 2, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1589), 2, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3536), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(3532), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143796,64 +142901,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36759] = 24, + [37452] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(666), 1, - anon_sym_RBRACK, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3977), 1, - anon_sym_COMMA, - STATE(2846), 1, - aux_sym_arguments_repeat1, - ACTIONS(3715), 2, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1590), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3536), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3532), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143864,64 +142959,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36851] = 24, + [37524] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(668), 1, - anon_sym_RBRACK, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4038), 1, + anon_sym_DASH_GT, + STATE(1586), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3285), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3979), 1, - anon_sym_COMMA, - STATE(2819), 1, - aux_sym_arguments_repeat1, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3283), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1591), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143932,15 +143009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36943] = 5, + [37580] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1592), 2, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(3630), 15, + ACTIONS(3252), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -143954,22 +143031,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, + anon_sym_LT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3628), 24, + anon_sym_LT_LT_EQ, + ACTIONS(3250), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, + anon_sym_LT2, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -143979,63 +143057,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36997] = 21, + [37634] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3964), 1, anon_sym_PIPE, - ACTIONS(3897), 1, + ACTIONS(3970), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3888), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3879), 2, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3903), 2, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3981), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1593), 2, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3749), 13, + ACTIONS(3886), 15, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144046,59 +143121,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37083] = 19, + [37716] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3885), 1, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3964), 1, anon_sym_PIPE, - ACTIONS(3897), 1, - anon_sym_AMP_AMP, - ACTIONS(3899), 1, - anon_sym_PIPE_PIPE, - ACTIONS(371), 2, + ACTIONS(3536), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3879), 2, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3903), 2, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1594), 2, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(369), 15, + ACTIONS(3532), 17, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144109,45 +143182,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37165] = 5, + [37794] = 18, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1595), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1518), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3958), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3960), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3964), 1, anon_sym_PIPE, + ACTIONS(3970), 1, + anon_sym_AMP_AMP, + ACTIONS(3536), 2, + anon_sym_EQ, anon_sym_DOT_DOT, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1520), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1590), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3532), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144158,23 +143244,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37219] = 5, + [37874] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1596), 2, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(3672), 15, - anon_sym_PLUS, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, + anon_sym_PERCENT, + ACTIONS(3536), 9, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -144182,13 +143277,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3670), 24, + ACTIONS(3532), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -144207,126 +143299,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37273] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(670), 1, - anon_sym_RPAREN, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, - anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3985), 1, - anon_sym_COMMA, - STATE(2886), 1, - aux_sym_arguments_repeat1, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1597), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3763), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37365] = 21, + [37940] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3747), 1, + ACTIONS(3876), 1, anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3964), 1, anon_sym_PIPE, - ACTIONS(3897), 1, + ACTIONS(3970), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4012), 1, anon_sym_DOT_DOT, - ACTIONS(3879), 2, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3903), 2, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3981), 2, + ACTIONS(4010), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1598), 2, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3745), 13, + ACTIONS(3874), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, @@ -144340,45 +143364,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37451] = 5, + [38026] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1599), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3196), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4040), 1, + anon_sym_RPAREN, + ACTIONS(4042), 1, + anon_sym_COMMA, + STATE(2940), 1, + aux_sym_arguments_repeat1, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3194), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1593), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144389,45 +143432,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37505] = 5, + [38118] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1600), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(902), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4044), 1, + anon_sym_RPAREN, + ACTIONS(4046), 1, + anon_sym_COMMA, + STATE(2843), 1, + aux_sym_arguments_repeat1, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(900), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1594), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144438,15 +143500,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37559] = 5, + [38210] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1601), 2, + ACTIONS(4048), 1, + anon_sym_DASH_GT, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(910), 15, + ACTIONS(3469), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144462,13 +143526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(908), 24, + ACTIONS(3467), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -144487,81 +143550,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37613] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, - anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1602), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3987), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3763), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37701] = 5, + [38266] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1603), 2, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(1476), 15, + ACTIONS(860), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144577,13 +143574,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1478), 24, + ACTIONS(858), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -144602,15 +143599,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37755] = 5, + [38320] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1604), 2, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3618), 15, + ACTIONS(3359), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144626,13 +143623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3616), 24, + ACTIONS(3357), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -144651,15 +143648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37809] = 5, + [38374] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1605), 2, + ACTIONS(4018), 1, + anon_sym_COLON_COLON, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(3614), 15, + ACTIONS(3248), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144675,13 +143674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3612), 24, + ACTIONS(3246), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -144700,15 +143698,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37863] = 5, + [38430] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1606), 2, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(1502), 15, + ACTIONS(3393), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144724,13 +143722,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1504), 24, + ACTIONS(3391), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -144749,15 +143747,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37917] = 5, + [38484] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1607), 2, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(942), 15, + ACTIONS(3465), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144773,13 +143771,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(940), 24, + ACTIONS(3463), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -144798,45 +143796,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37971] = 5, + [38538] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1608), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3590), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(642), 1, + anon_sym_RBRACK, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4050), 1, + anon_sym_COMMA, + STATE(2859), 1, + aux_sym_arguments_repeat1, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3588), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1601), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144847,15 +143864,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38025] = 5, + [38630] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1609), 2, + ACTIONS(4052), 1, + anon_sym_DASH_GT, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(954), 15, + ACTIONS(3351), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144871,13 +143890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(952), 24, + ACTIONS(3349), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -144896,15 +143914,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38079] = 5, + [38686] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1610), 2, + ACTIONS(4054), 1, + anon_sym_LPAREN, + STATE(1740), 1, + sym_arguments, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(972), 15, + ACTIONS(3323), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -144920,13 +143942,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(970), 24, - anon_sym_LPAREN, + ACTIONS(3319), 22, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -144945,61 +143965,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38133] = 21, + [38744] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(337), 1, - anon_sym_EQ, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3885), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3897), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(3879), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3903), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3981), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1611), 2, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(4056), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(331), 13, + ACTIONS(3872), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38832] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + STATE(1605), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3536), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3532), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145010,15 +144085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38219] = 5, + [38896] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1612), 2, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3578), 15, + ACTIONS(3453), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145034,13 +144109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3576), 24, + ACTIONS(3451), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145059,15 +144134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38273] = 5, + [38950] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1613), 2, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3546), 15, + ACTIONS(3478), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145083,13 +144158,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3544), 24, + ACTIONS(3476), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145108,45 +144183,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38327] = 5, + [39004] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1614), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3594), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(684), 1, + anon_sym_RBRACK, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4058), 1, + anon_sym_COMMA, + STATE(2903), 1, + aux_sym_arguments_repeat1, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3592), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1608), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145157,15 +144251,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38381] = 5, + [39096] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1615), 2, + ACTIONS(4060), 1, + anon_sym_DASH_GT, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3156), 15, + ACTIONS(3291), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145181,13 +144277,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3158), 24, + ACTIONS(3289), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145206,15 +144301,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38435] = 5, + [39152] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1616), 2, + ACTIONS(4062), 1, + anon_sym_DASH_GT, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(3192), 15, + ACTIONS(3443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145230,13 +144327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3190), 24, + ACTIONS(3441), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145255,15 +144351,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38489] = 5, + [39208] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1617), 2, + ACTIONS(3994), 1, + anon_sym_COLON_COLON, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(1458), 15, + ACTIONS(3275), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145279,13 +144377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1460), 24, + ACTIONS(3273), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145304,45 +144401,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38543] = 5, + [39264] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1618), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3188), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3958), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3960), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3964), 1, anon_sym_PIPE, + ACTIONS(3970), 1, + anon_sym_AMP_AMP, + ACTIONS(3972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(371), 2, + anon_sym_EQ, anon_sym_DOT_DOT, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3186), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1612), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(369), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145353,15 +144464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38597] = 5, + [39346] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1619), 2, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(1012), 15, + ACTIONS(3433), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145377,13 +144488,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1010), 24, + ACTIONS(3431), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145402,15 +144513,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38651] = 5, + [39400] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1620), 2, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3476), 15, + ACTIONS(3411), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145426,13 +144537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3474), 24, + ACTIONS(3409), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145451,45 +144562,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38705] = 5, + [39454] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1621), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(996), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(337), 1, anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3958), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3960), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3964), 1, anon_sym_PIPE, + ACTIONS(3970), 1, + anon_sym_AMP_AMP, + ACTIONS(3972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4012), 1, anon_sym_DOT_DOT, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(994), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(4010), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1615), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(331), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145500,45 +144627,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38759] = 5, + [39540] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1622), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3472), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3884), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3960), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3964), 1, anon_sym_PIPE, + ACTIONS(3970), 1, + anon_sym_AMP_AMP, + ACTIONS(3972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4012), 1, anon_sym_DOT_DOT, + ACTIONS(3952), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3470), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(4010), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1616), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3882), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145549,15 +144692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38813] = 5, + [39626] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1623), 2, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3468), 15, + ACTIONS(866), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145573,13 +144716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3466), 24, + ACTIONS(864), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145598,15 +144741,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38867] = 5, + [39680] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1624), 2, + ACTIONS(4064), 1, + anon_sym_COLON_COLON, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(976), 15, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145622,13 +144767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(974), 24, + ACTIONS(904), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145647,15 +144791,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38921] = 5, + [39736] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1625), 2, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(3456), 15, + ACTIONS(870), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145671,13 +144815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3454), 24, + ACTIONS(868), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145696,15 +144840,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38975] = 5, + [39790] = 22, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1626), 2, + ACTIONS(1038), 1, + anon_sym_extern, + ACTIONS(3337), 1, + anon_sym_COLON_COLON, + ACTIONS(3339), 1, + anon_sym_default, + ACTIONS(3343), 1, + anon_sym_union, + ACTIONS(3347), 1, + sym_metavariable, + ACTIONS(4066), 1, + sym_identifier, + ACTIONS(4068), 1, + anon_sym_fn, + STATE(2178), 1, + aux_sym_function_modifiers_repeat1, + STATE(2366), 1, + sym_extern_modifier, + STATE(2677), 1, + sym_scoped_type_identifier, + STATE(3287), 1, + sym_generic_type, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3334), 1, + sym_function_modifiers, + STATE(3343), 1, + sym_scoped_identifier, + STATE(3436), 1, + sym_bracketed_type, + STATE(1620), 2, sym_line_comment, sym_block_comment, - ACTIONS(938), 15, + ACTIONS(1024), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3345), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3335), 17, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + [39878] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4018), 1, + anon_sym_COLON_COLON, + STATE(1621), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3260), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145720,13 +144932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(936), 24, + ACTIONS(3258), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145745,15 +144956,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39029] = 5, + [39934] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1627), 2, + ACTIONS(4070), 1, + anon_sym_COLON_COLON, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(3420), 15, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145769,13 +144982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3418), 24, + ACTIONS(904), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145794,15 +145006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39083] = 5, + [39990] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1628), 2, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(3416), 15, + ACTIONS(852), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -145818,13 +145030,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3414), 24, + ACTIONS(850), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, + anon_sym_else, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145843,94 +145055,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39137] = 5, + [40044] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1629), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3502), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3880), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3960), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3964), 1, anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3500), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3970), 1, anon_sym_AMP_AMP, + ACTIONS(3972), 1, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39191] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1630), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3498), 15, + ACTIONS(4012), 1, + anon_sym_DOT_DOT, + ACTIONS(3952), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3496), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(4010), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1624), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3954), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3878), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145941,23 +145120,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39245] = 5, + [40130] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1631), 2, + ACTIONS(4072), 1, + anon_sym_LBRACK, + ACTIONS(4076), 1, + anon_sym_QMARK, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_as, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(3452), 15, - anon_sym_PLUS, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3536), 11, + anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -145965,13 +145152,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3450), 24, + ACTIONS(3532), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -145990,45 +145173,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39299] = 5, + [40193] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1632), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(992), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(4084), 1, + anon_sym_RBRACE, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1626), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146039,62 +145239,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39353] = 22, + [40282] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(133), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3997), 1, - anon_sym_EQ, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4013), 1, - anon_sym_DOT_DOT, - ACTIONS(4015), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(4017), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3991), 2, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4005), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4021), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1633), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3620), 3, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - ACTIONS(3993), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4023), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146105,62 +145305,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39441] = 22, + [40371] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3997), 1, + STATE(1628), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(918), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3999), 1, anon_sym_DOT, - ACTIONS(4001), 1, anon_sym_AMP, - ACTIONS(4003), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4007), 1, - anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4013), 1, - anon_sym_DOT_DOT, - ACTIONS(4015), 1, - anon_sym_AMP_AMP, - ACTIONS(4017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3991), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4005), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4021), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1634), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3624), 3, + ACTIONS(916), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_if, - ACTIONS(3993), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4019), 4, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4023), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146171,62 +145353,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39529] = 22, + [40424] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(115), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3997), 1, - anon_sym_EQ, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4013), 1, - anon_sym_DOT_DOT, - ACTIONS(4015), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(4017), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3991), 2, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4005), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4021), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1635), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3604), 3, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - ACTIONS(3993), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4023), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146237,15 +145419,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39617] = 5, + [40513] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1636), 2, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3406), 15, + ACTIONS(3792), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146261,13 +145443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3402), 24, + ACTIONS(3790), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -146286,15 +145467,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39671] = 5, + [40566] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1637), 2, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3486), 15, + ACTIONS(3788), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146310,13 +145491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3484), 24, + ACTIONS(3786), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -146335,45 +145515,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39725] = 5, + [40619] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1638), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3486), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(3908), 1, anon_sym_EQ, + ACTIONS(4072), 1, + anon_sym_LBRACK, + ACTIONS(4076), 1, + anon_sym_QMARK, + ACTIONS(4078), 1, anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_as, + ACTIONS(4088), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(4090), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4094), 1, anon_sym_PIPE, + ACTIONS(4098), 1, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3484), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4100), 1, anon_sym_AMP_AMP, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, + ACTIONS(4086), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4092), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4096), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4106), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1632), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4074), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3906), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146384,15 +145579,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39779] = 5, + [40704] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1639), 2, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(3480), 15, + ACTIONS(3768), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146408,13 +145603,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3478), 24, + ACTIONS(3766), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -146433,15 +145627,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39833] = 5, + [40757] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1640), 2, + STATE(1634), 2, sym_line_comment, sym_block_comment, - ACTIONS(950), 15, + ACTIONS(970), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146457,13 +145651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(948), 24, + ACTIONS(968), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -146482,15 +145675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39887] = 5, + [40810] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3510), 15, + ACTIONS(966), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146506,13 +145699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3508), 24, + ACTIONS(964), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -146531,143 +145723,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39941] = 5, + [40863] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1642), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(992), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(990), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3864), 1, anon_sym_AMP_AMP, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39995] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1643), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3506), 15, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(4108), 1, + anon_sym_RBRACE, + ACTIONS(3846), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3504), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40049] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1644), 2, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(3528), 15, - anon_sym_PLUS, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3526), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146678,48 +145789,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40103] = 8, + [40952] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(313), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - STATE(1645), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3516), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3512), 22, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1637), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146730,15 +145855,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40163] = 5, + [41041] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1646), 2, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(3532), 15, + ACTIONS(1442), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146754,13 +145879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3530), 24, + ACTIONS(1444), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -146779,15 +145903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40217] = 5, + [41094] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1647), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(968), 15, + ACTIONS(958), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -146803,13 +145927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(966), 24, + ACTIONS(956), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -146828,64 +145951,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40271] = 24, + [41147] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(4098), 1, + anon_sym_DOT_DOT, + ACTIONS(4100), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(4110), 1, anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4025), 1, - anon_sym_RPAREN, - ACTIONS(4027), 1, - anon_sym_COMMA, - STATE(2806), 1, - aux_sym_arguments_repeat1, - ACTIONS(3715), 2, + ACTIONS(3728), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(4096), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1648), 2, + ACTIONS(4106), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(4112), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146896,48 +146016,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40363] = 8, + [41234] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(690), 1, + anon_sym_RPAREN, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - STATE(1649), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3524), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4114), 1, + anon_sym_COMMA, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3522), 22, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1641), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146948,45 +146082,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40423] = 5, + [41323] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1650), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1004), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(4116), 1, + anon_sym_LBRACE, + ACTIONS(4122), 1, + anon_sym_EQ, + ACTIONS(4124), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(4126), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4130), 1, anon_sym_PIPE, + ACTIONS(4134), 1, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(1002), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4136), 1, anon_sym_AMP_AMP, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, + STATE(1424), 1, + sym_match_block, + ACTIONS(4118), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4132), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4142), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1642), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4120), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4144), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146997,15 +146148,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40477] = 5, + [41412] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1651), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(3550), 15, + ACTIONS(910), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -147021,13 +146172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3548), 24, + ACTIONS(908), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -147046,15 +146196,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40531] = 5, + [41465] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(3554), 15, + ACTIONS(1358), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -147070,13 +146220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3552), 24, + ACTIONS(1360), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -147095,94 +146244,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40585] = 5, + [41518] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1653), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3558), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3556), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3864), 1, anon_sym_AMP_AMP, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [40639] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1654), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3490), 15, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(4146), 1, + anon_sym_RBRACE, + ACTIONS(3846), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3488), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1645), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147193,15 +146310,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40693] = 5, + [41607] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1655), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(3464), 15, + ACTIONS(3632), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -147217,13 +146334,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3462), 24, + ACTIONS(3630), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -147242,15 +146358,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40747] = 5, + [41660] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1656), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(3570), 15, + ACTIONS(3752), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -147266,13 +146382,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3568), 24, + ACTIONS(3750), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -147291,45 +146406,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40801] = 5, + [41713] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1657), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3432), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4148), 1, + anon_sym_RBRACE, + ACTIONS(4150), 1, + anon_sym_COMMA, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3430), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1648), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147340,45 +146472,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40855] = 5, + [41802] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1658), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3216), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(319), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3214), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1649), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147389,45 +146538,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40909] = 5, + [41891] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3494), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4152), 1, + anon_sym_SEMI, + ACTIONS(4154), 1, + anon_sym_else, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3492), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147438,15 +146604,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40963] = 5, + [41980] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1660), 2, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(3428), 15, + ACTIONS(3800), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -147462,13 +146628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3426), 24, + ACTIONS(3798), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -147487,15 +146652,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41017] = 5, + [42033] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + STATE(1652), 2, sym_line_comment, sym_block_comment, - ACTIONS(980), 15, + ACTIONS(3546), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -147511,13 +146676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(978), 24, + ACTIONS(3544), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -147536,61 +146700,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41071] = 21, + [42086] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3759), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(4122), 1, + anon_sym_EQ, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4013), 1, + ACTIONS(4134), 1, anon_sym_DOT_DOT, - ACTIONS(4015), 1, + ACTIONS(4136), 1, anon_sym_AMP_AMP, - ACTIONS(4017), 1, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, - ACTIONS(3991), 2, + ACTIONS(4156), 1, + anon_sym_LBRACE, + STATE(1690), 1, + sym_match_block, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4005), 2, + ACTIONS(4128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4011), 2, + ACTIONS(4132), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4021), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1662), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3757), 13, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, + ACTIONS(4144), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147601,15 +146766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41157] = 5, + [42175] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1663), 2, + STATE(1654), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(3702), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -147625,13 +146790,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 24, + ACTIONS(3700), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -147650,62 +146814,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41211] = 22, + [42228] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(151), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3883), 1, + ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3897), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(3879), 2, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3903), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3981), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1664), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(3604), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(3881), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3905), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147716,45 +146880,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41299] = 5, + [42317] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1665), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3606), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(4158), 1, + anon_sym_RBRACE, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3604), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147765,15 +146946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41353] = 5, + [42406] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1666), 2, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3424), 15, + ACTIONS(3662), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -147789,13 +146970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3422), 24, + ACTIONS(3660), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -147814,100 +146994,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41407] = 24, + [42459] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, - anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4029), 1, - anon_sym_RPAREN, - ACTIONS(4031), 1, - anon_sym_COMMA, - STATE(2803), 1, - aux_sym_arguments_repeat1, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1667), 2, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3763), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41499] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(3991), 2, + ACTIONS(906), 15, anon_sym_PLUS, - anon_sym_DASH, - STATE(1668), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3993), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 9, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -147915,10 +147018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3646), 21, + ACTIONS(904), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_if, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -147937,15 +147042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41565] = 5, + [42512] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1669), 2, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(962), 15, + ACTIONS(3666), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -147961,13 +147066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(960), 24, + ACTIONS(3664), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -147986,15 +147090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41619] = 5, + [42565] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(958), 15, + ACTIONS(3492), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148010,13 +147114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(956), 24, + ACTIONS(3490), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148035,61 +147138,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41673] = 21, + [42618] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(337), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3904), 1, + anon_sym_EQ, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4013), 1, - anon_sym_DOT_DOT, - ACTIONS(4015), 1, + ACTIONS(4136), 1, anon_sym_AMP_AMP, - ACTIONS(4017), 1, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, - ACTIONS(3991), 2, + ACTIONS(4162), 1, + anon_sym_DOT_DOT, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4005), 2, + ACTIONS(4128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4021), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1671), 2, + ACTIONS(4160), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(331), 13, + ACTIONS(3902), 12, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148100,58 +147202,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41759] = 18, + [42703] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4015), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3648), 2, - anon_sym_EQ, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(3991), 2, + ACTIONS(4114), 1, + anon_sym_COMMA, + ACTIONS(4164), 1, + anon_sym_RPAREN, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4005), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4021), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1672), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3646), 16, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE_PIPE, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148162,57 +147268,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41839] = 17, + [42792] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(3648), 2, - anon_sym_EQ, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(3991), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4005), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4021), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1673), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4166), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3646), 17, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148223,15 +147333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41917] = 5, + [42879] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1674), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(3542), 15, + ACTIONS(3678), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148247,13 +147357,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3540), 24, + ACTIONS(3676), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148272,45 +147381,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41971] = 5, + [42932] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1675), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(934), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(129), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(932), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1665), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148321,15 +147447,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42025] = 5, + [43021] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1676), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(984), 15, + ACTIONS(3686), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148345,13 +147471,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(982), 24, + ACTIONS(3684), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148370,15 +147495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42079] = 5, + [43074] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1677), 2, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 15, + ACTIONS(3160), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148394,13 +147519,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3434), 24, + ACTIONS(3162), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148419,61 +147543,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42133] = 21, + [43127] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3747), 1, + STATE(1668), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3584), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, anon_sym_DOT, - ACTIONS(4001), 1, anon_sym_AMP, - ACTIONS(4003), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4007), 1, - anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4013), 1, - anon_sym_DOT_DOT, - ACTIONS(4015), 1, - anon_sym_AMP_AMP, - ACTIONS(4017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3991), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4005), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4021), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1678), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3993), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(3582), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3745), 13, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148484,59 +147591,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42219] = 19, + [43180] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, + STATE(1669), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(954), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4001), 1, anon_sym_AMP, - ACTIONS(4003), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4007), 1, - anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4015), 1, - anon_sym_AMP_AMP, - ACTIONS(4017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3733), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(3991), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4005), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4021), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1679), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3993), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4019), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3731), 15, + ACTIONS(952), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_if, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148547,15 +147639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42301] = 5, + [43233] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1680), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(3440), 15, + ACTIONS(914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148571,13 +147663,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3438), 24, + ACTIONS(912), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148596,59 +147687,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42355] = 19, + [43286] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(3964), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4015), 1, - anon_sym_AMP_AMP, - ACTIONS(4017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(371), 2, - anon_sym_EQ, + ACTIONS(3968), 1, anon_sym_DOT_DOT, - ACTIONS(3991), 2, + ACTIONS(3972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4170), 1, + anon_sym_AMP_AMP, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4005), 2, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4021), 2, + ACTIONS(3966), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1681), 2, + ACTIONS(4168), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(369), 15, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148659,61 +147752,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42437] = 21, + [43373] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3751), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(147), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4013), 1, - anon_sym_DOT_DOT, - ACTIONS(4015), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(4017), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3991), 2, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4005), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4021), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1682), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3749), 13, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148724,15 +147818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42523] = 5, + [43462] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 15, + ACTIONS(3602), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148748,13 +147842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3442), 24, + ACTIONS(3600), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148773,15 +147866,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42577] = 5, + [43515] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1684), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(3448), 15, + ACTIONS(3598), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148797,13 +147890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3446), 24, + ACTIONS(3596), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148822,15 +147914,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42631] = 5, + [43568] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(3562), 15, + ACTIONS(3590), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148846,13 +147938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3560), 24, + ACTIONS(3588), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148871,15 +147962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42685] = 5, + [43621] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1686), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(3460), 15, + ACTIONS(3568), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -148895,13 +147986,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3458), 24, + ACTIONS(3566), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -148920,54 +148010,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42739] = 14, + [43674] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(4122), 1, + anon_sym_EQ, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(3991), 2, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4136), 1, + anon_sym_AMP_AMP, + ACTIONS(4138), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4162), 1, + anon_sym_DOT_DOT, + ACTIONS(3578), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4021), 2, + ACTIONS(4128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1687), 2, + ACTIONS(4160), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3646), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4144), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148978,94 +148075,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42811] = 5, + [43761] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1688), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3566), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3564), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3864), 1, anon_sym_AMP_AMP, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42865] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1689), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3574), 15, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(3846), 2, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, anon_sym_DASH, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_AMP, - anon_sym_PERCENT, - anon_sym_CARET, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3572), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4172), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1678), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149076,45 +148140,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42919] = 5, + [43848] = 18, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1690), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1008), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(4072), 1, + anon_sym_LBRACK, + ACTIONS(4076), 1, + anon_sym_QMARK, + ACTIONS(4078), 1, anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_as, + ACTIONS(4088), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(4090), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4094), 1, anon_sym_PIPE, + ACTIONS(4100), 1, + anon_sym_AMP_AMP, + ACTIONS(3536), 2, + anon_sym_EQ, anon_sym_DOT_DOT, + ACTIONS(4086), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4092), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4106), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1006), 24, + STATE(1679), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4074), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4104), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3532), 15, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149125,23 +148201,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42973] = 5, + [43927] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, + ACTIONS(4072), 1, + anon_sym_LBRACK, + ACTIONS(4076), 1, + anon_sym_QMARK, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_as, + ACTIONS(4086), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(1000), 15, - anon_sym_PLUS, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, - anon_sym_DASH, + anon_sym_PERCENT, + ACTIONS(3536), 9, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, - anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -149149,13 +148234,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(998), 24, + ACTIONS(3532), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -149174,15 +148255,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43027] = 5, + [43992] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1692), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(3586), 15, + ACTIONS(3560), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -149198,13 +148279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3584), 24, + ACTIONS(3558), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -149223,81 +148303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43081] = 22, - ACTIONS(31), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1060), 1, - anon_sym_extern, - ACTIONS(3272), 1, - anon_sym_COLON_COLON, - ACTIONS(3278), 1, - anon_sym_union, - ACTIONS(3284), 1, - sym_metavariable, - ACTIONS(3821), 1, - anon_sym_default, - ACTIONS(4033), 1, - sym_identifier, - ACTIONS(4035), 1, - anon_sym_fn, - STATE(2165), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(2645), 1, - sym_scoped_type_identifier, - STATE(3245), 1, - sym_generic_type, - STATE(3294), 1, - sym_function_modifiers, - STATE(3380), 1, - sym_scoped_identifier, - STATE(3395), 1, - sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - STATE(1693), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1046), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3282), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3819), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [43169] = 5, + [44045] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(3536), 15, + ACTIONS(3522), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -149313,13 +148327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3534), 24, + ACTIONS(3520), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -149338,111 +148351,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43223] = 22, - ACTIONS(31), 1, - anon_sym_LT, + [44098] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1060), 1, - anon_sym_extern, - ACTIONS(3272), 1, - anon_sym_COLON_COLON, - ACTIONS(3278), 1, - anon_sym_union, - ACTIONS(3284), 1, - sym_metavariable, - ACTIONS(3821), 1, - anon_sym_default, - ACTIONS(4037), 1, - sym_identifier, - ACTIONS(4039), 1, - anon_sym_fn, - STATE(2165), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(2594), 1, - sym_scoped_type_identifier, - STATE(3245), 1, - sym_generic_type, - STATE(3380), 1, - sym_scoped_identifier, - STATE(3395), 1, - sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - STATE(3408), 1, - sym_function_modifiers, - STATE(1695), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1046), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3282), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3819), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [43311] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1696), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3668), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(4072), 1, + anon_sym_LBRACK, + ACTIONS(4076), 1, + anon_sym_QMARK, + ACTIONS(4078), 1, anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_as, + ACTIONS(4088), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(4090), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4094), 1, anon_sym_PIPE, + ACTIONS(4098), 1, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3666), 24, + ACTIONS(4100), 1, + anon_sym_AMP_AMP, + ACTIONS(4102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(3578), 2, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(4086), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4092), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4096), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4106), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1683), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4074), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4112), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149453,55 +148416,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43365] = 15, + [44185] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(3991), 2, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4021), 2, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1697), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4174), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(3646), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149512,45 +148481,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43439] = 13, + [44272] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, - anon_sym_DOT, - ACTIONS(4001), 1, - anon_sym_AMP, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(3991), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1698), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(906), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 6, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3646), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(904), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_if, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -149569,15 +148529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43509] = 5, + [44325] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1699), 2, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(3664), 15, + ACTIONS(880), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -149593,13 +148553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3662), 24, + ACTIONS(878), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -149618,15 +148577,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43563] = 5, + [44378] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1700), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(946), 15, + ACTIONS(3323), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -149642,13 +148601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(944), 24, + ACTIONS(3319), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -149667,15 +148625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43617] = 5, + [44431] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1701), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(3640), 15, + ACTIONS(3796), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -149691,13 +148649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3636), 24, + ACTIONS(3794), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -149716,61 +148673,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43671] = 21, + [44484] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3759), 1, + STATE(1689), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3620), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3885), 1, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(3887), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3891), 1, - anon_sym_PIPE, - ACTIONS(3897), 1, - anon_sym_AMP_AMP, - ACTIONS(3899), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_DOT_DOT, - ACTIONS(3879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3889), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3903), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3981), 2, + ACTIONS(3618), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1702), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3881), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3901), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3757), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149781,32 +148721,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43757] = 11, + [44537] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3879), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1703), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(946), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 9, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -149814,10 +148745,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3646), 21, + ACTIONS(944), 23, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -149836,15 +148769,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43823] = 5, + [44590] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1704), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(3622), 15, + ACTIONS(3526), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -149860,13 +148793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3620), 24, + ACTIONS(3524), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -149885,81 +148817,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43877] = 22, + [44643] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3883), 1, - anon_sym_EQ, - ACTIONS(3885), 1, - anon_sym_AMP, - ACTIONS(3887), 1, - anon_sym_CARET, - ACTIONS(3891), 1, - anon_sym_PIPE, - ACTIONS(3897), 1, - anon_sym_AMP_AMP, - ACTIONS(3899), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_DOT_DOT, - ACTIONS(3879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3889), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3903), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3981), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1705), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3620), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(3881), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3901), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3905), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [43965] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1706), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(992), 15, + ACTIONS(906), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -149975,13 +148841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 24, + ACTIONS(904), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -150000,15 +148865,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44019] = 5, + [44696] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1707), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(3598), 15, + ACTIONS(3670), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -150024,13 +148889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3596), 24, + ACTIONS(3668), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -150049,58 +148913,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44073] = 18, + [44749] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3885), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3897), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3648), 2, - anon_sym_EQ, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(3879), 2, + ACTIONS(4176), 1, + anon_sym_RPAREN, + ACTIONS(4178), 1, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3903), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1708), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3646), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE_PIPE, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150111,21 +148979,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44153] = 5, + [44838] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, + ACTIONS(4072), 1, + anon_sym_LBRACK, + ACTIONS(4076), 1, + anon_sym_QMARK, + ACTIONS(4078), 1, + anon_sym_DOT, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(3602), 15, + ACTIONS(3726), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, - anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -150135,13 +149008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3600), 24, + ACTIONS(3724), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -150160,44 +149030,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44207] = 12, + [44897] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(3991), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4021), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1710), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(3658), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 7, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3646), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3656), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_if, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -150216,61 +149078,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44275] = 21, + [44950] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3771), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4013), 1, - anon_sym_DOT_DOT, - ACTIONS(4015), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(4017), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3991), 2, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4005), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4011), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4021), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1711), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4180), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3769), 13, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150281,57 +149143,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44361] = 17, + [45037] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(143), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3885), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3648), 2, - anon_sym_EQ, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(3879), 2, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3903), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1712), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3646), 17, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150342,21 +149209,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44439] = 8, + [45126] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(4078), 1, anon_sym_DOT, - STATE(1713), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(3610), 14, + ACTIONS(3748), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -150371,11 +149238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3608), 22, + ACTIONS(3746), 21, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -150394,42 +149260,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44499] = 10, + [45185] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(135), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(3542), 1, anon_sym_as, - STATE(1714), 2, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, + anon_sym_AMP, + ACTIONS(3854), 1, + anon_sym_CARET, + ACTIONS(3858), 1, + anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 11, + ACTIONS(3868), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3872), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45274] = 13, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4072), 1, + anon_sym_LBRACK, + ACTIONS(4076), 1, + anon_sym_QMARK, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_as, + ACTIONS(4088), 1, + anon_sym_AMP, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4106), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1701), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4074), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3536), 6, anon_sym_EQ, - anon_sym_AMP, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3646), 21, + ACTIONS(3532), 20, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -150448,59 +149382,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44563] = 19, + [45343] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3885), 1, + ACTIONS(3884), 1, + anon_sym_EQ, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(3897), 1, + ACTIONS(4136), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, - ACTIONS(3733), 2, - anon_sym_EQ, + ACTIONS(4162), 1, anon_sym_DOT_DOT, - ACTIONS(3879), 2, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(4128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3903), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1715), 2, + ACTIONS(4160), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3731), 15, + ACTIONS(3882), 12, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150511,15 +149446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44645] = 5, + [45428] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1716), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(3658), 15, + ACTIONS(3808), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -150535,71 +149470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3656), 24, + ACTIONS(3806), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44699] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3885), 1, - anon_sym_AMP, - ACTIONS(3887), 1, - anon_sym_CARET, - ACTIONS(3879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3903), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1717), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3881), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3646), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -150618,55 +149494,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44771] = 15, + [45481] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3885), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3879), 2, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3903), 2, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1718), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4182), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(3646), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150677,53 +149559,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44845] = 13, + [45568] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3885), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3879), 2, + ACTIONS(3854), 1, + anon_sym_CARET, + ACTIONS(3858), 1, + anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(4184), 1, + anon_sym_RBRACE, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3903), 2, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1719), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 6, - anon_sym_EQ, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3646), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150734,52 +149625,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44915] = 12, + [45657] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3879), 2, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3958), 1, + anon_sym_AMP, + ACTIONS(3960), 1, + anon_sym_CARET, + ACTIONS(3964), 1, + anon_sym_PIPE, + ACTIONS(3968), 1, + anon_sym_DOT_DOT, + ACTIONS(3972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3903), 2, + ACTIONS(3962), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3966), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(3976), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1720), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 7, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3646), 21, - anon_sym_LPAREN, + ACTIONS(4186), 3, anon_sym_LBRACE, anon_sym_SQUOTE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150790,15 +149689,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44983] = 5, + [45742] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1721), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(3654), 15, + ACTIONS(1454), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -150814,13 +149713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3652), 24, + ACTIONS(1456), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -150839,61 +149737,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45037] = 21, + [45795] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3771), 1, + ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3897), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(3879), 2, + ACTIONS(3728), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3903), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3981), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1722), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3769), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150904,28 +149802,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45123] = 9, + [45882] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - STATE(1723), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3648), 14, + ACTIONS(3248), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, anon_sym_PERCENT, anon_sym_CARET, @@ -150935,10 +149826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3646), 21, + ACTIONS(3246), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_if, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -150957,31 +149850,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45185] = 10, + [45935] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - STATE(1724), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3784), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 11, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -150989,10 +149874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3646), 21, + ACTIONS(3782), 23, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -151011,15 +149898,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45249] = 5, + [45988] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1725), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(3676), 15, + ACTIONS(3496), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -151035,13 +149922,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3674), 24, + ACTIONS(3494), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -151060,45 +149946,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45303] = 5, + [46041] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1726), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3634), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(4126), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4130), 1, anon_sym_PIPE, + ACTIONS(4136), 1, + anon_sym_AMP_AMP, + ACTIONS(4138), 1, + anon_sym_PIPE_PIPE, + ACTIONS(371), 2, + anon_sym_EQ, anon_sym_DOT_DOT, + ACTIONS(4118), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3632), 24, + STATE(1712), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4120), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(369), 14, anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46122] = 21, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3534), 1, anon_sym_LBRACK, - anon_sym_EQ_GT, + ACTIONS(3538), 1, anon_sym_QMARK, + ACTIONS(3540), 1, + anon_sym_DOT, + ACTIONS(3542), 1, anon_sym_as, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3880), 1, + anon_sym_EQ, + ACTIONS(4124), 1, + anon_sym_AMP, + ACTIONS(4126), 1, + anon_sym_CARET, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4136), 1, anon_sym_AMP_AMP, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, + ACTIONS(4162), 1, + anon_sym_DOT_DOT, + ACTIONS(4118), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4160), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1713), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4120), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3878), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151109,45 +150072,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45357] = 5, + [46207] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1727), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(992), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_DASH, - anon_sym_EQ, + ACTIONS(3534), 1, + anon_sym_LBRACK, + ACTIONS(3538), 1, + anon_sym_QMARK, + ACTIONS(3540), 1, anon_sym_DOT, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - anon_sym_PERCENT, + ACTIONS(3854), 1, anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3858), 1, anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, + ACTIONS(4114), 1, + anon_sym_COMMA, + ACTIONS(4188), 1, + anon_sym_RPAREN, + ACTIONS(3846), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(990), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_as, - anon_sym_if, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1714), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3848), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151158,62 +150138,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45411] = 22, + [46296] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(3883), 1, - anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(3897), 1, + ACTIONS(4098), 1, + anon_sym_DOT_DOT, + ACTIONS(4100), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_DOT_DOT, - ACTIONS(3879), 2, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(3630), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(4092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3903), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3981), 2, + ACTIONS(4096), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1728), 2, + ACTIONS(4106), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3624), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(3881), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3905), 10, + ACTIONS(4112), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151224,61 +150203,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45499] = 21, + [46383] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(4122), 1, + anon_sym_EQ, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4013), 1, + ACTIONS(4134), 1, anon_sym_DOT_DOT, - ACTIONS(4015), 1, + ACTIONS(4136), 1, anon_sym_AMP_AMP, - ACTIONS(4017), 1, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, - ACTIONS(3991), 2, + ACTIONS(4190), 1, + anon_sym_LBRACE, + STATE(452), 1, + sym_match_block, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4005), 2, + ACTIONS(4128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4011), 2, + ACTIONS(4132), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4021), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1729), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3753), 13, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_if, + ACTIONS(4144), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151289,15 +150269,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45585] = 5, + [46472] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(3626), 15, + ACTIONS(3510), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -151313,13 +150293,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3624), 24, + ACTIONS(3508), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -151338,15 +150317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45639] = 5, + [46525] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3582), 15, + ACTIONS(1474), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -151362,13 +150341,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3580), 24, + ACTIONS(1476), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -151387,81 +150365,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45693] = 22, - ACTIONS(31), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1060), 1, - anon_sym_extern, - ACTIONS(3272), 1, - anon_sym_COLON_COLON, - ACTIONS(3278), 1, - anon_sym_union, - ACTIONS(3284), 1, - sym_metavariable, - ACTIONS(3821), 1, - anon_sym_default, - ACTIONS(4041), 1, - sym_identifier, - ACTIONS(4043), 1, - anon_sym_fn, - STATE(2165), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, - STATE(2687), 1, - sym_scoped_type_identifier, - STATE(3245), 1, - sym_generic_type, - STATE(3380), 1, - sym_scoped_identifier, - STATE(3395), 1, - sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - STATE(3490), 1, - sym_function_modifiers, - STATE(1732), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1046), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3282), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3819), 17, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - [45781] = 5, + [46578] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1733), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(1356), 15, + ACTIONS(3518), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -151477,13 +150389,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(1358), 24, + ACTIONS(3516), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -151502,61 +150413,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45835] = 21, + [46631] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(337), 1, + anon_sym_EQ, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3755), 1, - anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(3897), 1, + ACTIONS(4136), 1, anon_sym_AMP_AMP, - ACTIONS(3899), 1, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4162), 1, anon_sym_DOT_DOT, - ACTIONS(3879), 2, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(4128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3903), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3981), 2, + ACTIONS(4160), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1734), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3753), 13, + ACTIONS(331), 12, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_SQUOTE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151567,62 +150477,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45921] = 22, + [46716] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(337), 1, + anon_sym_EQ, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(4098), 1, + anon_sym_DOT_DOT, + ACTIONS(4100), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3715), 2, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(4096), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1735), 2, + ACTIONS(4106), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4045), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3727), 4, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(331), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151633,15 +150541,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46009] = 5, + [46801] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, + ACTIONS(4072), 1, + anon_sym_LBRACK, + ACTIONS(4076), 1, + anon_sym_QMARK, + ACTIONS(4078), 1, + anon_sym_DOT, + ACTIONS(4080), 1, + anon_sym_as, + ACTIONS(4088), 1, + anon_sym_AMP, + ACTIONS(4090), 1, + anon_sym_CARET, + ACTIONS(4086), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4106), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(906), 15, + ACTIONS(4074), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3536), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3532), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46872] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1723), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3764), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, @@ -151657,13 +150622,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(904), 24, + ACTIONS(3762), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_as, - anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -151682,62 +150646,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46063] = 23, + [46925] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(137), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1724), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3780), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3778), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1737), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151748,61 +150694,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46152] = 22, + [46978] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1725), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3772), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3770), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4049), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1738), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151813,62 +150742,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46239] = 23, + [47031] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(295), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, + ACTIONS(4192), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(4194), 1, + anon_sym_else, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1739), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151879,60 +150808,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46328] = 21, + [47120] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3883), 1, + STATE(1727), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3500), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3885), 1, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(3887), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3891), 1, - anon_sym_PIPE, - ACTIONS(3895), 1, - anon_sym_DOT_DOT, - ACTIONS(3899), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3889), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3893), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3903), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1740), 2, + ACTIONS(3498), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47173] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3260), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, anon_sym_PERCENT, - ACTIONS(4051), 3, - anon_sym_LBRACE, - anon_sym_SQUOTE, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3258), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, - ACTIONS(3901), 4, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3905), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151943,58 +150904,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46413] = 19, + [47226] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3880), 1, + anon_sym_EQ, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(4057), 1, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(4059), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(4063), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(4065), 1, + ACTIONS(4098), 1, + anon_sym_DOT_DOT, + ACTIONS(4100), 1, anon_sym_AMP_AMP, - ACTIONS(4067), 1, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, - ACTIONS(3733), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4053), 2, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + ACTIONS(4096), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4106), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1741), 2, + STATE(1729), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4069), 4, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3731), 14, + ACTIONS(3878), 12, anon_sym_LPAREN, anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152005,61 +150968,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46494] = 22, + [47311] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1730), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(894), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3620), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(892), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1742), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152070,61 +151016,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46581] = 22, + [47364] = 15, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3997), 1, - anon_sym_EQ, - ACTIONS(3999), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(4080), 1, + anon_sym_as, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4015), 1, - anon_sym_AMP_AMP, - ACTIONS(4017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4075), 1, - anon_sym_DOT_DOT, - ACTIONS(3604), 2, - anon_sym_EQ_GT, - anon_sym_if, - ACTIONS(3991), 2, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4005), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4021), 2, + ACTIONS(4106), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4073), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1743), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(3536), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(3532), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4023), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152135,62 +151074,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46668] = 23, + [47437] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(868), 1, - anon_sym_RPAREN, - ACTIONS(3514), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(4100), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(371), 2, anon_sym_EQ, - ACTIONS(3915), 1, anon_sym_DOT_DOT, - ACTIONS(4077), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(4106), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1744), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(369), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152201,62 +151136,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46757] = 23, + [47518] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3884), 1, + anon_sym_EQ, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(4098), 1, + anon_sym_DOT_DOT, + ACTIONS(4100), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(4079), 1, - anon_sym_RBRACE, - ACTIONS(3715), 2, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(4096), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1745), 2, + ACTIONS(4106), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3882), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152267,62 +151200,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46846] = 23, + [47603] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4081), 1, - anon_sym_LBRACE, - ACTIONS(4087), 1, + ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(4089), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4091), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4095), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_DOT_DOT, - ACTIONS(4101), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(4103), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - STATE(482), 1, - sym_match_block, - ACTIONS(4083), 2, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4097), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4107), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1746), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4196), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4105), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4109), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152333,62 +151265,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46935] = 23, + [47690] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(115), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1747), 2, + ACTIONS(4198), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152399,46 +151330,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47024] = 15, + [47777] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4057), 1, - anon_sym_AMP, - ACTIONS(4059), 1, - anon_sym_CARET, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4071), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1748), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(3756), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 4, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3646), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3754), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -152457,122 +151378,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47097] = 18, - ACTIONS(31), 1, - anon_sym_LT, + [47830] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, - sym_identifier, - ACTIONS(4113), 1, - anon_sym_LBRACE, - ACTIONS(4115), 1, - anon_sym_RBRACE, - ACTIONS(4117), 1, - anon_sym_STAR, - ACTIONS(4121), 1, - anon_sym_COMMA, - ACTIONS(4123), 1, - anon_sym_COLON_COLON, - ACTIONS(4127), 1, - sym_metavariable, - STATE(2394), 1, - sym_scoped_identifier, - STATE(2757), 1, - sym__use_clause, - STATE(3336), 1, - sym_generic_type_with_turbofish, - STATE(3383), 1, - sym_bracketed_type, - STATE(1749), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(4125), 3, - sym_self, - sym_super, - sym_crate, - STATE(2878), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4119), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [47176] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(974), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4057), 1, anon_sym_AMP, - ACTIONS(4059), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4065), 1, - anon_sym_AMP_AMP, - ACTIONS(4067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4129), 1, - anon_sym_EQ, - ACTIONS(4133), 1, - anon_sym_DOT_DOT, - ACTIONS(3620), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4131), 2, + ACTIONS(972), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1750), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4055), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4069), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4135), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152583,61 +151426,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47263] = 22, + [47883] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(4122), 1, + anon_sym_EQ, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(4136), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(4162), 1, anon_sym_DOT_DOT, - ACTIONS(3715), 2, + ACTIONS(3630), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(4160), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4137), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1751), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(4144), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152648,62 +151491,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47350] = 23, + [47970] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(125), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1739), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3744), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3742), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1752), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152714,62 +151539,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47439] = 23, + [48023] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1740), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3740), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4139), 1, - anon_sym_SEMI, - ACTIONS(4141), 1, - anon_sym_else, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3738), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1753), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152780,61 +151587,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47528] = 22, + [48076] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, + STATE(1741), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(898), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4057), 1, anon_sym_AMP, - ACTIONS(4059), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4065), 1, - anon_sym_AMP_AMP, - ACTIONS(4067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4129), 1, - anon_sym_EQ, - ACTIONS(4133), 1, - anon_sym_DOT_DOT, - ACTIONS(3624), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4131), 2, + ACTIONS(896), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1754), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4055), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4069), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4135), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152845,62 +151635,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47615] = 23, + [48129] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(139), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4143), 1, + ACTIONS(4082), 1, anon_sym_SEMI, - ACTIONS(4145), 1, - anon_sym_else, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1755), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152911,44 +151701,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47704] = 13, + [48218] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4057), 1, - anon_sym_AMP, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4071), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1756), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(3646), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 6, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3646), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3644), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -152967,51 +151749,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47773] = 12, + [48271] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(832), 1, + anon_sym_RPAREN, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4053), 2, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, + anon_sym_AMP, + ACTIONS(3854), 1, + anon_sym_CARET, + ACTIONS(3858), 1, + anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4114), 1, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4071), 2, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1757), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 7, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3646), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153022,62 +151815,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47840] = 23, + [48360] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(127), 1, anon_sym_RBRACE, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, + ACTIONS(4082), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1758), 2, + STATE(1745), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153088,62 +151881,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47929] = 23, + [48449] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, + ACTIONS(317), 1, anon_sym_RBRACE, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, + ACTIONS(4082), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1759), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153154,62 +151947,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48018] = 23, + [48538] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(744), 1, - anon_sym_RPAREN, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4077), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(4200), 1, + anon_sym_RBRACE, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1760), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153220,62 +152013,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48107] = 23, + [48627] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4077), 1, + ACTIONS(4202), 1, + anon_sym_RBRACE, + ACTIONS(4204), 1, anon_sym_COMMA, - ACTIONS(4147), 1, - anon_sym_RPAREN, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1761), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153286,62 +152079,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48196] = 23, + [48716] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1749), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3506), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 1, - anon_sym_SEMI, - ACTIONS(4151), 1, - anon_sym_else, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3504), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1762), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153352,60 +152127,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48285] = 21, + [48769] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3771), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4057), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4059), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4063), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4065), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(4067), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(4133), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4053), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4131), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1763), 2, + ACTIONS(4206), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4069), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3769), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153416,31 +152192,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48370] = 10, + [48856] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - STATE(1764), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(3514), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 11, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -153448,9 +152216,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3646), 20, + ACTIONS(3512), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -153469,60 +152240,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48433] = 21, + [48909] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3759), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(325), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4057), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4059), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4063), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4065), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(4067), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(4133), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4053), 2, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4131), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1765), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4069), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3757), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153533,61 +152306,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48518] = 22, + [48998] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4153), 2, + ACTIONS(4208), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1766), 2, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153598,56 +152371,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48605] = 17, + [49085] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, + STATE(1754), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4057), 1, anon_sym_AMP, - ACTIONS(4059), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(3648), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1767), 2, + ACTIONS(3592), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49138] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(3730), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, anon_sym_PERCENT, - ACTIONS(4069), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3646), 16, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3728), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153658,62 +152467,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48682] = 23, + [49191] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(4087), 1, - anon_sym_EQ, - ACTIONS(4089), 1, - anon_sym_AMP, - ACTIONS(4091), 1, - anon_sym_CARET, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_DOT_DOT, - ACTIONS(4101), 1, - anon_sym_AMP_AMP, - ACTIONS(4103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4155), 1, - anon_sym_LBRACE, - STATE(1310), 1, - sym_match_block, - ACTIONS(4083), 2, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4097), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4107), 2, + ACTIONS(4106), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1768), 2, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4105), 4, + ACTIONS(3536), 7, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3532), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153724,61 +152522,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48771] = 22, + [49258] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(4087), 1, + STATE(1757), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(906), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(4089), 1, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(4091), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4101), 1, - anon_sym_AMP_AMP, - ACTIONS(4103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(3604), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4083), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4107), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4157), 2, + ACTIONS(904), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1769), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49311] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1758), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(3718), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, anon_sym_PERCENT, - ACTIONS(4105), 4, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3716), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153789,62 +152618,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48858] = 23, + [49364] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(850), 1, - anon_sym_RPAREN, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3594), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(3735), 1, + anon_sym_DOT_DOT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3592), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, - ACTIONS(3737), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4077), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49417] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1760), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3714), 15, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3723), 2, + anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3712), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1770), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153855,62 +152714,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48947] = 23, + [49470] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(121), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, + ACTIONS(4082), 1, anon_sym_SEMI, - ACTIONS(4161), 1, - anon_sym_RBRACE, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1771), 2, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153921,62 +152780,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49036] = 23, + [49559] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1762), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(950), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(4163), 1, - anon_sym_RBRACE, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(948), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1772), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153987,62 +152828,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49125] = 23, + [49612] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(119), 1, + ACTIONS(125), 1, anon_sym_RBRACE, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, + ACTIONS(4082), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1773), 2, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154053,60 +152894,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49214] = 21, + [49701] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3751), 1, + STATE(1764), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3706), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(4089), 1, anon_sym_AMP, - ACTIONS(4091), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4101), 1, - anon_sym_AMP_AMP, - ACTIONS(4103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4083), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4107), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4157), 2, + ACTIONS(3704), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1774), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4085), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4105), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3749), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154117,58 +152945,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49299] = 19, + [49760] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4089), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4091), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4095), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4101), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(4103), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(371), 2, - anon_sym_EQ, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4083), 2, + ACTIONS(4210), 1, + anon_sym_SEMI, + ACTIONS(4212), 1, + anon_sym_else, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4107), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1775), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4105), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(369), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154179,57 +153011,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49380] = 18, + [49849] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4057), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4059), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4063), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4065), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3648), 2, - anon_sym_EQ, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4053), 2, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(4214), 1, + anon_sym_RBRACE, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1776), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1766), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4069), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3646), 15, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_PIPE_PIPE, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154240,60 +153077,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49459] = 21, + [49938] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3747), 1, + ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(4089), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4091), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4095), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4101), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(4103), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(4159), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4083), 2, + ACTIONS(4216), 1, + anon_sym_RPAREN, + ACTIONS(4218), 1, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4107), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4157), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1777), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4105), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3745), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154304,62 +153143,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49544] = 23, + [50027] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(4087), 1, + STATE(1768), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(986), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(4089), 1, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(4091), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_DOT_DOT, - ACTIONS(4101), 1, - anon_sym_AMP_AMP, - ACTIONS(4103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4165), 1, - anon_sym_LBRACE, - STATE(1624), 1, - sym_match_block, - ACTIONS(4083), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4097), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4107), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1778), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4085), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4105), 4, + ACTIONS(984), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154370,62 +153191,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49633] = 23, + [50080] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3876), 1, + anon_sym_EQ, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(4098), 1, + anon_sym_DOT_DOT, + ACTIONS(4100), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4167), 1, - anon_sym_RBRACE, - ACTIONS(4169), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(4096), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1779), 2, + ACTIONS(4106), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3874), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154436,61 +153255,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49722] = 22, + [50165] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3997), 1, + STATE(1770), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3530), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3999), 1, anon_sym_DOT, - ACTIONS(4001), 1, anon_sym_AMP, - ACTIONS(4003), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4007), 1, - anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4015), 1, - anon_sym_AMP_AMP, - ACTIONS(4017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4075), 1, - anon_sym_DOT_DOT, - ACTIONS(3624), 2, - anon_sym_EQ_GT, - anon_sym_if, - ACTIONS(3991), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4005), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4021), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4073), 2, + ACTIONS(3528), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1780), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3993), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4019), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4023), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154501,62 +153303,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49809] = 23, + [50218] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(309), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1771), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3606), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3604), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1781), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154567,62 +153351,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49898] = 23, + [50271] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4171), 1, - anon_sym_SEMI, - ACTIONS(4173), 1, - anon_sym_else, - ACTIONS(3715), 2, + ACTIONS(3630), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1782), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154633,62 +153416,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49987] = 23, + [50358] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1773), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(876), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4175), 1, - anon_sym_SEMI, - ACTIONS(4177), 1, - anon_sym_else, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(874), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1783), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154699,61 +153464,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50076] = 22, + [50411] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1774), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3776), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3774), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4179), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1784), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154764,62 +153512,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50163] = 23, + [50464] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(133), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1775), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(884), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(882), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1785), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154830,61 +153560,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50252] = 22, + [50517] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(4087), 1, + STATE(1776), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3722), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(4089), 1, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(4091), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4101), 1, - anon_sym_AMP_AMP, - ACTIONS(4103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(3620), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4083), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4107), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4157), 2, + ACTIONS(3720), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1786), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4085), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4105), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154895,61 +153608,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50339] = 22, + [50570] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1777), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(990), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3624), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(988), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1787), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154960,62 +153656,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50426] = 23, + [50623] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1778), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(982), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(4181), 1, - anon_sym_RBRACE, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(980), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1788), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155026,62 +153704,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50515] = 23, + [50676] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(305), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4077), 1, - anon_sym_COMMA, - ACTIONS(4183), 1, - anon_sym_RPAREN, - ACTIONS(3715), 2, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1789), 2, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155092,62 +153770,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50604] = 23, + [50765] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4185), 1, - anon_sym_RPAREN, - ACTIONS(4187), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, + ACTIONS(4220), 1, + anon_sym_SEMI, + ACTIONS(4222), 1, + anon_sym_else, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1790), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155158,62 +153836,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50693] = 23, + [50854] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(299), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(4100), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(3888), 2, anon_sym_EQ, - ACTIONS(3915), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(4106), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1791), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3886), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155224,60 +153898,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50782] = 21, + [50935] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(337), 1, + ACTIONS(3904), 1, anon_sym_EQ, - ACTIONS(3514), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(4089), 1, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(4091), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(4095), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(4101), 1, + ACTIONS(4098), 1, + anon_sym_DOT_DOT, + ACTIONS(4100), 1, anon_sym_AMP_AMP, - ACTIONS(4103), 1, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4083), 2, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4107), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4157), 2, + ACTIONS(4096), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1792), 2, + ACTIONS(4106), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4105), 4, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(331), 12, + ACTIONS(3902), 12, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155288,50 +153962,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50867] = 11, + [51020] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(4053), 2, + ACTIONS(4088), 1, + anon_sym_AMP, + ACTIONS(4090), 1, + anon_sym_CARET, + ACTIONS(4094), 1, + anon_sym_PIPE, + ACTIONS(3536), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1793), 2, + ACTIONS(4092), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4106), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 9, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3646), 20, + ACTIONS(4104), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3532), 16, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155342,62 +154022,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50932] = 23, + [51097] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(293), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1784), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3576), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3574), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1794), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155408,62 +154070,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51021] = 23, + [51150] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4189), 1, - anon_sym_RBRACE, - ACTIONS(4191), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, + ACTIONS(4224), 1, + anon_sym_SEMI, + ACTIONS(4226), 1, + anon_sym_else, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1795), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155474,62 +154136,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51110] = 23, + [51239] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4193), 1, + ACTIONS(4228), 1, anon_sym_SEMI, - ACTIONS(4195), 1, + ACTIONS(4230), 1, anon_sym_else, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1796), 2, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155540,62 +154202,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51199] = 23, + [51328] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(129), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1787), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3572), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3570), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1797), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155606,62 +154250,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51288] = 23, + [51381] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(3719), 1, - anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_RPAREN, - ACTIONS(4199), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, + STATE(1788), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3536), 14, anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_DASH, - ACTIONS(3723), 2, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3532), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1798), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155672,62 +154302,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51377] = 23, + [51442] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, + ACTIONS(4232), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(4234), 1, + anon_sym_else, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1799), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155738,60 +154368,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51466] = 21, + [51531] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3755), 1, + STATE(1790), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3236), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4057), 1, anon_sym_AMP, - ACTIONS(4059), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4065), 1, - anon_sym_AMP_AMP, - ACTIONS(4067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4133), 1, - anon_sym_DOT_DOT, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4131), 2, + ACTIONS(3234), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1800), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4055), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4069), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3753), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155802,60 +154416,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51551] = 21, + [51584] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3883), 1, + STATE(1791), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(978), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3885), 1, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(3887), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3891), 1, - anon_sym_PIPE, - ACTIONS(3895), 1, - anon_sym_DOT_DOT, - ACTIONS(3899), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3879), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3889), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3893), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3903), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1801), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3881), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4201), 3, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(976), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, - ACTIONS(3901), 4, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3905), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155866,61 +154464,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51636] = 22, + [51637] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3876), 1, + anon_sym_EQ, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(4136), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(4162), 1, anon_sym_DOT_DOT, - ACTIONS(3604), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3715), 2, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(4160), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1802), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3874), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155931,60 +154528,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51723] = 21, + [51722] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3755), 1, + ACTIONS(4118), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1793), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4120), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3536), 9, anon_sym_EQ, - ACTIONS(4089), 1, anon_sym_AMP, - ACTIONS(4091), 1, anon_sym_CARET, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4101), 1, - anon_sym_AMP_AMP, - ACTIONS(4103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4083), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4107), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4157), 2, + ACTIONS(3532), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1803), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4085), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4105), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3753), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155995,62 +154582,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51808] = 23, + [51787] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1794), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(962), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(960), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1804), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156061,61 +154630,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51897] = 22, + [51840] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(844), 1, + anon_sym_RPAREN, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4087), 1, + ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(4089), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4091), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4095), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4101), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(4103), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(4159), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(3624), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4083), 2, + ACTIONS(4114), 1, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4107), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4157), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1805), 2, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4105), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4109), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156126,53 +154696,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51984] = 14, + [51929] = 18, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4057), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4059), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(4053), 2, + ACTIONS(4130), 1, + anon_sym_PIPE, + ACTIONS(4136), 1, + anon_sym_AMP_AMP, + ACTIONS(3536), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4071), 2, + ACTIONS(4128), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1806), 2, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3646), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3532), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156183,62 +154757,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52055] = 23, + [52008] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(4087), 1, + STATE(1797), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(890), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(4089), 1, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(4091), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4099), 1, - anon_sym_DOT_DOT, - ACTIONS(4101), 1, - anon_sym_AMP_AMP, - ACTIONS(4103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4203), 1, - anon_sym_LBRACE, - STATE(226), 1, - sym_match_block, - ACTIONS(4083), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4097), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4107), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1807), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4085), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4105), 4, + ACTIONS(888), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4109), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156249,61 +154805,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52144] = 22, + [52061] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3997), 1, - anon_sym_EQ, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4001), 1, + ACTIONS(3542), 1, + anon_sym_as, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4003), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(4007), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4015), 1, - anon_sym_AMP_AMP, - ACTIONS(4017), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4075), 1, + ACTIONS(3536), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(3620), 2, - anon_sym_EQ_GT, - anon_sym_if, - ACTIONS(3991), 2, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4005), 2, + ACTIONS(4128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4021), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4073), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1808), 2, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(3993), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4019), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4023), 10, + ACTIONS(3532), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156314,62 +154865,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52231] = 23, + [52138] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3624), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4205), 1, - anon_sym_SEMI, - ACTIONS(4207), 1, - anon_sym_else, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3622), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1809), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156380,31 +154913,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52320] = 10, + [52191] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - STATE(1810), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(3232), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 11, - anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -156412,9 +154937,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3646), 20, + ACTIONS(3230), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -156433,60 +154961,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52383] = 21, + [52244] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3771), 1, - anon_sym_EQ, - ACTIONS(4089), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4091), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(4095), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4101), 1, + ACTIONS(4136), 1, anon_sym_AMP_AMP, - ACTIONS(4103), 1, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, - ACTIONS(4159), 1, + ACTIONS(3888), 2, + anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4083), 2, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4107), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4157), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1811), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4105), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3769), 12, + ACTIONS(3886), 14, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156497,51 +155023,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52468] = 12, + [52325] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(119), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4083), 2, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, + anon_sym_AMP, + ACTIONS(3854), 1, + anon_sym_CARET, + ACTIONS(3858), 1, + anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4107), 2, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1812), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 7, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3646), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156552,44 +155089,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52535] = 13, + [52414] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(4089), 1, - anon_sym_AMP, - ACTIONS(4083), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4107), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1813), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(1482), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 6, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, + anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3646), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(1484), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -156608,44 +155137,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52604] = 15, + [52467] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4089), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4091), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4083), 2, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4107), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1814), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 4, + ACTIONS(3536), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_PIPE, anon_sym_DOT_DOT, - ACTIONS(3646), 20, + ACTIONS(3532), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, @@ -156666,53 +155194,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52677] = 14, + [52538] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(315), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4089), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4091), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4083), 2, + ACTIONS(3858), 1, + anon_sym_PIPE, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4107), 2, + ACTIONS(3856), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1815), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3648), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT, - ACTIONS(3646), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156723,58 +155260,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52748] = 19, + [52627] = 15, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4089), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4091), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(4095), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4101), 1, - anon_sym_AMP_AMP, - ACTIONS(4103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3733), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4083), 2, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4107), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1816), 2, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4105), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3731), 14, + ACTIONS(3536), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(3532), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156785,56 +155318,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52829] = 17, + [52700] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4089), 1, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4091), 1, - anon_sym_CARET, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(3648), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4083), 2, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4107), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1817), 2, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4105), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3646), 16, + ACTIONS(3536), 6, + anon_sym_EQ, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3532), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156845,62 +155374,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52906] = 23, + [52769] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3956), 1, + anon_sym_EQ, + ACTIONS(3958), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3960), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3964), 1, anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3968), 1, anon_sym_DOT_DOT, - ACTIONS(4209), 1, - anon_sym_SEMI, - ACTIONS(4211), 1, - anon_sym_else, - ACTIONS(3715), 2, + ACTIONS(3972), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3952), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3962), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3966), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1818), 2, + ACTIONS(3976), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3954), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4236), 3, + anon_sym_LBRACE, + anon_sym_SQUOTE, + anon_sym_AMP_AMP, + ACTIONS(3974), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3978), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156911,62 +155438,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52995] = 23, + [52854] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, - anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(4213), 1, - anon_sym_RBRACE, - ACTIONS(3715), 2, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1819), 2, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3536), 7, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT, + ACTIONS(3532), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156977,61 +155493,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53084] = 22, + [52921] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3908), 1, + anon_sym_EQ, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(4136), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(4162), 1, anon_sym_DOT_DOT, - ACTIONS(3715), 2, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(4160), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4215), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1820), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3906), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157042,57 +155557,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53171] = 18, + [53006] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4089), 1, - anon_sym_AMP, - ACTIONS(4091), 1, - anon_sym_CARET, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4101), 1, - anon_sym_AMP_AMP, - ACTIONS(3648), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4083), 2, + STATE(1811), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4120), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3536), 11, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_CARET, anon_sym_LT, anon_sym_GT, - ACTIONS(4107), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1821), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4085), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4105), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3646), 15, + ACTIONS(3532), 20, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157103,32 +155610,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53250] = 11, + [53069] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(4083), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1822), 2, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(4085), 3, + ACTIONS(3628), 15, + anon_sym_PLUS, anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3648), 9, + anon_sym_DASH, anon_sym_EQ, + anon_sym_DOT, anon_sym_AMP, + anon_sym_PERCENT, anon_sym_CARET, anon_sym_LT, anon_sym_GT, @@ -157136,9 +155634,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3646), 20, + ACTIONS(3626), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_AMP_AMP, @@ -157157,60 +155658,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53315] = 21, + [53122] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3759), 1, + STATE(1813), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3638), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(4089), 1, + anon_sym_DOT, anon_sym_AMP, - ACTIONS(4091), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4095), 1, - anon_sym_PIPE, - ACTIONS(4101), 1, - anon_sym_AMP_AMP, - ACTIONS(4103), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4159), 1, - anon_sym_DOT_DOT, - ACTIONS(4083), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4107), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4157), 2, + ACTIONS(3636), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1823), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4085), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4105), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3757), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157221,62 +155706,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53400] = 23, + [53175] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, + ACTIONS(708), 1, + anon_sym_RPAREN, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(4114), 1, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1824), 2, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157287,62 +155772,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53489] = 23, + [53264] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(742), 1, - anon_sym_RPAREN, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1815), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3580), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4077), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3578), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1825), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157353,62 +155820,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53578] = 23, + [53317] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(145), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, + ACTIONS(4082), 1, anon_sym_SEMI, - ACTIONS(4217), 1, - anon_sym_RBRACE, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1826), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157419,62 +155886,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53667] = 23, + [53406] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1817), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(906), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(904), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1827), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157485,62 +155934,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53756] = 23, + [53459] = 18, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(317), 1, + ACTIONS(4238), 1, + sym_identifier, + ACTIONS(4240), 1, + anon_sym_LBRACE, + ACTIONS(4242), 1, + anon_sym_RBRACE, + ACTIONS(4244), 1, + anon_sym_STAR, + ACTIONS(4248), 1, + anon_sym_COMMA, + ACTIONS(4250), 1, + anon_sym_COLON_COLON, + ACTIONS(4254), 1, + sym_metavariable, + STATE(2419), 1, + sym_scoped_identifier, + STATE(2744), 1, + sym__use_clause, + STATE(3397), 1, + sym_generic_type_with_turbofish, + STATE(3517), 1, + sym_bracketed_type, + STATE(1818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4252), 3, + sym_self, + sym_super, + sym_crate, + STATE(2799), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4246), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [53538] = 23, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(311), 1, anon_sym_RBRACE, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, + ACTIONS(4082), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1828), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157551,60 +156061,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53845] = 21, + [53627] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3751), 1, + STATE(1820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3690), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4057), 1, anon_sym_AMP, - ACTIONS(4059), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4065), 1, - anon_sym_AMP_AMP, - ACTIONS(4067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4133), 1, - anon_sym_DOT_DOT, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4131), 2, + ACTIONS(3688), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1829), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4055), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4069), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3749), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157615,62 +156109,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53930] = 23, + [53680] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(121), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1821), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3694), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3692), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1830), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157681,60 +156157,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54019] = 21, + [53733] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(337), 1, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3564), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, anon_sym_EQ, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4057), 1, anon_sym_AMP, - ACTIONS(4059), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4065), 1, - anon_sym_AMP_AMP, - ACTIONS(4067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4133), 1, - anon_sym_DOT_DOT, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4131), 2, + ACTIONS(3562), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1831), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4055), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4069), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(331), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157745,61 +156205,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54104] = 22, + [53786] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1823), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3642), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3640), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4219), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1832), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157810,58 +156253,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54191] = 19, + [53839] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4057), 1, + ACTIONS(4122), 1, + anon_sym_EQ, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(4059), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(4063), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(4065), 1, + ACTIONS(4134), 1, + anon_sym_DOT_DOT, + ACTIONS(4136), 1, anon_sym_AMP_AMP, - ACTIONS(4067), 1, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, - ACTIONS(371), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4053), 2, + ACTIONS(4256), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_match_block, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + ACTIONS(4132), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1833), 2, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4069), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(369), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4144), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157872,61 +156319,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54272] = 22, + [53928] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(309), 1, + anon_sym_RBRACE, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4057), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4059), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4063), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4065), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(4067), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(4129), 1, - anon_sym_EQ, - ACTIONS(4133), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(3604), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4053), 2, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4131), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1834), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4069), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4135), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157937,60 +156385,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54359] = 21, + [54017] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3747), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4057), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4059), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4063), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4065), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(4067), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(4133), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4053), 2, + ACTIONS(3578), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4131), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1835), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4069), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3745), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158001,61 +156450,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54444] = 22, + [54104] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(4122), 1, + anon_sym_EQ, + ACTIONS(4124), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4126), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4130), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(4136), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4138), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(4162), 1, anon_sym_DOT_DOT, - ACTIONS(3715), 2, + ACTIONS(3728), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4118), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4128), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(4142), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(4160), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4221), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1836), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4120), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4140), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(4144), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158066,62 +156515,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54531] = 23, + [54191] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, + ACTIONS(4258), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(4260), 1, + anon_sym_else, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1837), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158132,62 +156581,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54620] = 23, + [54280] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, - anon_sym_RBRACE, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, + STATE(1829), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3550), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_DASH, + anon_sym_EQ, anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, anon_sym_AMP, - ACTIONS(3721), 1, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4047), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + anon_sym_PIPE, + anon_sym_DOT_DOT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3548), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_as, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1838), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158198,62 +156629,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54709] = 23, + [54333] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, + ACTIONS(4262), 1, anon_sym_SEMI, - ACTIONS(4223), 1, - anon_sym_RBRACE, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1839), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158264,61 +156693,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54798] = 22, + [54419] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3883), 1, + ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(3885), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3887), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3891), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3895), 1, - anon_sym_DOT_DOT, - ACTIONS(3899), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4227), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3879), 2, + ACTIONS(3866), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3986), 1, + anon_sym_DOT_DOT, + ACTIONS(4264), 1, + anon_sym_RBRACK, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3889), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3893), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(3903), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4225), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1840), 2, + ACTIONS(3984), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1831), 2, sym_line_comment, sym_block_comment, - ACTIONS(3881), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3901), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3905), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158329,62 +156757,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54885] = 23, + [54505] = 17, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(307), 1, + ACTIONS(4238), 1, + sym_identifier, + ACTIONS(4240), 1, + anon_sym_LBRACE, + ACTIONS(4244), 1, + anon_sym_STAR, + ACTIONS(4250), 1, + anon_sym_COLON_COLON, + ACTIONS(4254), 1, + sym_metavariable, + ACTIONS(4266), 1, anon_sym_RBRACE, - ACTIONS(3514), 1, + STATE(2419), 1, + sym_scoped_identifier, + STATE(3232), 1, + sym__use_clause, + STATE(3397), 1, + sym_generic_type_with_turbofish, + STATE(3517), 1, + sym_bracketed_type, + STATE(1832), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4252), 3, + sym_self, + sym_super, + sym_crate, + STATE(2799), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4246), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [54581] = 22, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, + ACTIONS(4268), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1841), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158395,60 +156880,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54974] = 22, + [54667] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4229), 1, + ACTIONS(4270), 1, anon_sym_RBRACK, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1842), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158459,60 +156944,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55060] = 22, + [54753] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4231), 1, - anon_sym_RBRACK, - ACTIONS(3715), 2, + ACTIONS(4272), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1843), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158523,118 +157008,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55146] = 17, - ACTIONS(31), 1, - anon_sym_LT, + [54839] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, - sym_identifier, - ACTIONS(4113), 1, - anon_sym_LBRACE, - ACTIONS(4117), 1, - anon_sym_STAR, - ACTIONS(4123), 1, - anon_sym_COLON_COLON, - ACTIONS(4127), 1, - sym_metavariable, - ACTIONS(4233), 1, - anon_sym_RBRACE, - STATE(2394), 1, - sym_scoped_identifier, - STATE(2979), 1, - sym__use_clause, - STATE(3336), 1, - sym_generic_type_with_turbofish, - STATE(3383), 1, - sym_bracketed_type, - STATE(1844), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4125), 3, - sym_self, - sym_super, - sym_crate, - STATE(2878), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4119), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [55222] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4057), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(4059), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(4063), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(4067), 1, + ACTIONS(3864), 1, + anon_sym_AMP_AMP, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(4129), 1, - anon_sym_EQ, - ACTIONS(4237), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4053), 2, + ACTIONS(4274), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4071), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4201), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4235), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1845), 2, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4069), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4135), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158645,60 +157072,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55306] = 22, + [54925] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4239), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(4276), 1, + anon_sym_RBRACK, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1846), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158709,60 +157136,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55392] = 22, + [55011] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(4110), 1, anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(4280), 1, anon_sym_DOT_DOT, - ACTIONS(4241), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(4106), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(4186), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4278), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(4112), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158773,60 +157199,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55478] = 22, + [55095] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4243), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(4282), 1, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + STATE(1839), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158837,60 +157263,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55564] = 22, + [55181] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4245), 1, + ACTIONS(4284), 1, anon_sym_RBRACK, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1849), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158901,60 +157327,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55650] = 22, + [55267] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4247), 1, + ACTIONS(4286), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1850), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158965,124 +157391,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55736] = 22, + [55353] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, - anon_sym_AMP, - ACTIONS(3721), 1, - anon_sym_CARET, - ACTIONS(3725), 1, - anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_DOT_DOT, - ACTIONS(4249), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3723), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3729), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3913), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1851), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3717), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3727), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(3763), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [55822] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4251), 1, + ACTIONS(4288), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159093,60 +157455,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55908] = 22, + [55439] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4047), 1, + ACTIONS(4290), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159157,60 +157519,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55994] = 22, + [55525] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(4292), 1, + anon_sym_RBRACK, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1854), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159221,60 +157583,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56080] = 22, + [55611] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4255), 1, + ACTIONS(4294), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1855), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159285,60 +157647,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56166] = 22, + [55697] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4257), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, + ACTIONS(4296), 1, + anon_sym_RBRACK, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1856), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159349,60 +157711,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56252] = 22, + [55783] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4259), 1, + ACTIONS(4298), 1, anon_sym_RBRACK, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1857), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159413,60 +157775,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56338] = 22, + [55869] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4261), 1, - anon_sym_RBRACK, - ACTIONS(3715), 2, + ACTIONS(4300), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1858), 2, + STATE(1848), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159477,124 +157839,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56424] = 22, + [55955] = 17, + ACTIONS(31), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, - anon_sym_LBRACK, - ACTIONS(3995), 1, - anon_sym_QMARK, - ACTIONS(3999), 1, - anon_sym_DOT, - ACTIONS(4009), 1, - anon_sym_as, - ACTIONS(4057), 1, - anon_sym_AMP, - ACTIONS(4059), 1, - anon_sym_CARET, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4129), 1, - anon_sym_EQ, - ACTIONS(4225), 1, - anon_sym_EQ_GT, - ACTIONS(4237), 1, - anon_sym_DOT_DOT, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4071), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4235), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1859), 2, + ACTIONS(4238), 1, + sym_identifier, + ACTIONS(4240), 1, + anon_sym_LBRACE, + ACTIONS(4244), 1, + anon_sym_STAR, + ACTIONS(4250), 1, + anon_sym_COLON_COLON, + ACTIONS(4254), 1, + sym_metavariable, + ACTIONS(4302), 1, + anon_sym_RBRACE, + STATE(2419), 1, + sym_scoped_identifier, + STATE(3232), 1, + sym__use_clause, + STATE(3397), 1, + sym_generic_type_with_turbofish, + STATE(3517), 1, + sym_bracketed_type, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(4055), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4069), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4135), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56510] = 22, + ACTIONS(4252), 3, + sym_self, + sym_super, + sym_crate, + STATE(2799), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4246), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [56031] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(4110), 1, anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(4280), 1, anon_sym_DOT_DOT, - ACTIONS(4265), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(4106), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(4236), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4278), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1860), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(4112), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159605,60 +157961,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56596] = 22, + [56115] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4267), 1, - anon_sym_RBRACK, - ACTIONS(3715), 2, + ACTIONS(4304), 1, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159669,60 +158025,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56682] = 22, + [56201] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4269), 1, + ACTIONS(4306), 1, anon_sym_RBRACK, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159733,123 +158089,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56768] = 21, + [56287] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3989), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3995), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3999), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(4009), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(4057), 1, - anon_sym_AMP, - ACTIONS(4059), 1, - anon_sym_CARET, - ACTIONS(4063), 1, - anon_sym_PIPE, - ACTIONS(4067), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4129), 1, + ACTIONS(3850), 1, anon_sym_EQ, - ACTIONS(4237), 1, - anon_sym_DOT_DOT, - ACTIONS(4051), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4071), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4235), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1863), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4055), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4069), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4135), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56852] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, - anon_sym_LBRACK, - ACTIONS(3518), 1, - anon_sym_QMARK, - ACTIONS(3520), 1, - anon_sym_DOT, - ACTIONS(3650), 1, - anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4271), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, + ACTIONS(4082), 1, + anon_sym_SEMI, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159860,60 +158153,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56938] = 22, + [56373] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4273), 1, + ACTIONS(4308), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159924,60 +158217,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57024] = 22, + [56459] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4275), 1, + ACTIONS(4310), 1, anon_sym_RBRACK, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159988,60 +158281,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57110] = 22, + [56545] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4277), 1, - anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(4312), 1, + anon_sym_RBRACK, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160052,60 +158345,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57196] = 22, + [56631] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4279), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, + ACTIONS(4314), 1, + anon_sym_RBRACK, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1868), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160116,60 +158409,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57282] = 22, + [56717] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4281), 1, + ACTIONS(4316), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160180,60 +158473,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57368] = 22, + [56803] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(4072), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(4076), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(4078), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(4080), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(4088), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(4090), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(4094), 1, anon_sym_PIPE, - ACTIONS(3735), 1, - anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(4102), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, + ACTIONS(4110), 1, anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(4168), 1, + anon_sym_EQ_GT, + ACTIONS(4280), 1, anon_sym_DOT_DOT, - ACTIONS(4077), 1, - anon_sym_COMMA, - ACTIONS(3715), 2, + ACTIONS(4318), 1, + anon_sym_AMP_AMP, + ACTIONS(4086), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(4092), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(4106), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(4278), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1870), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(4074), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(4104), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(4112), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160244,60 +158537,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57454] = 22, + [56889] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4283), 1, - anon_sym_RBRACK, - ACTIONS(3715), 2, + ACTIONS(4320), 1, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160308,60 +158601,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57540] = 22, + [56975] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4285), 1, - anon_sym_RBRACK, - ACTIONS(3715), 2, + ACTIONS(4114), 1, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160372,119 +158665,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57626] = 17, - ACTIONS(31), 1, - anon_sym_LT, + [57061] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, - sym_identifier, - ACTIONS(4113), 1, - anon_sym_LBRACE, - ACTIONS(4117), 1, - anon_sym_STAR, - ACTIONS(4123), 1, - anon_sym_COLON_COLON, - ACTIONS(4127), 1, - sym_metavariable, - ACTIONS(4287), 1, - anon_sym_RBRACE, - STATE(2394), 1, - sym_scoped_identifier, - STATE(2979), 1, - sym__use_clause, - STATE(3336), 1, - sym_generic_type_with_turbofish, - STATE(3383), 1, - sym_bracketed_type, - STATE(1873), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4125), 3, - sym_self, - sym_super, - sym_crate, - STATE(2878), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4119), 19, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_default, - anon_sym_union, - [57702] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4289), 1, - anon_sym_RBRACK, - ACTIONS(3715), 2, + ACTIONS(4322), 1, + anon_sym_COMMA, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1874), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160495,60 +158729,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57788] = 22, + [57147] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3514), 1, + ACTIONS(3534), 1, anon_sym_LBRACK, - ACTIONS(3518), 1, + ACTIONS(3538), 1, anon_sym_QMARK, - ACTIONS(3520), 1, + ACTIONS(3540), 1, anon_sym_DOT, - ACTIONS(3650), 1, + ACTIONS(3542), 1, anon_sym_as, - ACTIONS(3719), 1, + ACTIONS(3850), 1, + anon_sym_EQ, + ACTIONS(3852), 1, anon_sym_AMP, - ACTIONS(3721), 1, + ACTIONS(3854), 1, anon_sym_CARET, - ACTIONS(3725), 1, + ACTIONS(3858), 1, anon_sym_PIPE, - ACTIONS(3735), 1, + ACTIONS(3864), 1, anon_sym_AMP_AMP, - ACTIONS(3737), 1, + ACTIONS(3866), 1, anon_sym_PIPE_PIPE, - ACTIONS(3761), 1, - anon_sym_EQ, - ACTIONS(3915), 1, + ACTIONS(3986), 1, anon_sym_DOT_DOT, - ACTIONS(4291), 1, + ACTIONS(4324), 1, anon_sym_SEMI, - ACTIONS(3715), 2, + ACTIONS(3846), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3723), 2, + ACTIONS(3856), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(3729), 2, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3913), 2, + ACTIONS(3984), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, + ACTIONS(3848), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3727), 4, + ACTIONS(3868), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3763), 10, + ACTIONS(3872), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160559,44 +158793,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57874] = 16, + [57233] = 16, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, + ACTIONS(4238), 1, sym_identifier, - ACTIONS(4113), 1, + ACTIONS(4240), 1, anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(4244), 1, anon_sym_STAR, - ACTIONS(4123), 1, + ACTIONS(4250), 1, anon_sym_COLON_COLON, - ACTIONS(4127), 1, + ACTIONS(4254), 1, sym_metavariable, - STATE(2394), 1, + STATE(2419), 1, sym_scoped_identifier, - STATE(3334), 1, + STATE(3232), 1, sym__use_clause, - STATE(3336), 1, + STATE(3397), 1, sym_generic_type_with_turbofish, - STATE(3383), 1, + STATE(3517), 1, sym_bracketed_type, - STATE(1876), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(4125), 3, + ACTIONS(4252), 3, sym_self, sym_super, sym_crate, - STATE(2878), 4, + STATE(2799), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4119), 19, + ACTIONS(4246), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160616,44 +158850,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [57947] = 16, + [57306] = 16, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, + ACTIONS(4238), 1, sym_identifier, - ACTIONS(4113), 1, + ACTIONS(4240), 1, anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(4244), 1, anon_sym_STAR, - ACTIONS(4123), 1, + ACTIONS(4250), 1, anon_sym_COLON_COLON, - ACTIONS(4127), 1, + ACTIONS(4254), 1, sym_metavariable, - STATE(2394), 1, + STATE(2419), 1, sym_scoped_identifier, - STATE(3336), 1, + STATE(3397), 1, sym_generic_type_with_turbofish, - STATE(3383), 1, - sym_bracketed_type, - STATE(3470), 1, + STATE(3401), 1, sym__use_clause, - STATE(1877), 2, + STATE(3517), 1, + sym_bracketed_type, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(4125), 3, + ACTIONS(4252), 3, sym_self, sym_super, sym_crate, - STATE(2878), 4, + STATE(2799), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4119), 19, + ACTIONS(4246), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160673,44 +158907,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58020] = 16, + [57379] = 16, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, + ACTIONS(4238), 1, sym_identifier, - ACTIONS(4113), 1, + ACTIONS(4240), 1, anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(4244), 1, anon_sym_STAR, - ACTIONS(4123), 1, + ACTIONS(4250), 1, anon_sym_COLON_COLON, - ACTIONS(4127), 1, + ACTIONS(4254), 1, sym_metavariable, - STATE(2394), 1, + STATE(2419), 1, sym_scoped_identifier, - STATE(2979), 1, - sym__use_clause, - STATE(3336), 1, + STATE(3397), 1, sym_generic_type_with_turbofish, - STATE(3383), 1, + STATE(3398), 1, + sym__use_clause, + STATE(3517), 1, sym_bracketed_type, - STATE(1878), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(4125), 3, + ACTIONS(4252), 3, sym_self, sym_super, sym_crate, - STATE(2878), 4, + STATE(2799), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4119), 19, + ACTIONS(4246), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160730,44 +158964,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58093] = 16, + [57452] = 16, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, + ACTIONS(4238), 1, sym_identifier, - ACTIONS(4113), 1, + ACTIONS(4240), 1, anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(4244), 1, anon_sym_STAR, - ACTIONS(4123), 1, + ACTIONS(4250), 1, anon_sym_COLON_COLON, - ACTIONS(4127), 1, + ACTIONS(4254), 1, sym_metavariable, - STATE(2394), 1, + STATE(2419), 1, sym_scoped_identifier, - STATE(3336), 1, - sym_generic_type_with_turbofish, - STATE(3375), 1, + STATE(3301), 1, sym__use_clause, - STATE(3383), 1, + STATE(3397), 1, + sym_generic_type_with_turbofish, + STATE(3517), 1, sym_bracketed_type, - STATE(1879), 2, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(4125), 3, + ACTIONS(4252), 3, sym_self, sym_super, sym_crate, - STATE(2878), 4, + STATE(2799), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4119), 19, + ACTIONS(4246), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160787,44 +159021,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58166] = 16, + [57525] = 16, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, + ACTIONS(4238), 1, sym_identifier, - ACTIONS(4113), 1, + ACTIONS(4240), 1, anon_sym_LBRACE, - ACTIONS(4117), 1, + ACTIONS(4244), 1, anon_sym_STAR, - ACTIONS(4123), 1, + ACTIONS(4250), 1, anon_sym_COLON_COLON, - ACTIONS(4127), 1, + ACTIONS(4254), 1, sym_metavariable, - STATE(2394), 1, + STATE(2419), 1, sym_scoped_identifier, - STATE(3336), 1, + STATE(3358), 1, + sym__use_clause, + STATE(3397), 1, sym_generic_type_with_turbofish, - STATE(3383), 1, + STATE(3517), 1, sym_bracketed_type, - STATE(3474), 1, - sym__use_clause, - STATE(1880), 2, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(4125), 3, + ACTIONS(4252), 3, sym_self, sym_super, sym_crate, - STATE(2878), 4, + STATE(2799), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4119), 19, + ACTIONS(4246), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160844,46 +159078,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [58239] = 17, + [57598] = 17, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - ACTIONS(3284), 1, + ACTIONS(3347), 1, sym_metavariable, - ACTIONS(3672), 1, + ACTIONS(3606), 1, anon_sym_where, - ACTIONS(4293), 1, + ACTIONS(4326), 1, sym_identifier, - STATE(2842), 1, + STATE(2924), 1, sym_scoped_type_identifier, - STATE(3167), 1, + STATE(3061), 1, sym_generic_type, - STATE(3380), 1, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, sym_scoped_identifier, - STATE(3395), 1, + STATE(3436), 1, sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - ACTIONS(3278), 2, + ACTIONS(3343), 2, anon_sym_default, anon_sym_union, - STATE(1881), 2, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(3282), 3, + ACTIONS(3345), 3, sym_self, sym_super, sym_crate, - ACTIONS(3670), 3, + ACTIONS(3604), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3819), 17, + ACTIONS(3335), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160901,46 +159135,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58313] = 17, + [57672] = 17, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - ACTIONS(3284), 1, + ACTIONS(3347), 1, sym_metavariable, - ACTIONS(3672), 1, + ACTIONS(3606), 1, anon_sym_where, - ACTIONS(4295), 1, + ACTIONS(4328), 1, sym_identifier, - STATE(2960), 1, + STATE(2987), 1, sym_scoped_type_identifier, - STATE(2992), 1, + STATE(3043), 1, sym_generic_type, - STATE(3380), 1, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, sym_scoped_identifier, - STATE(3395), 1, + STATE(3436), 1, sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - ACTIONS(3278), 2, + ACTIONS(3343), 2, anon_sym_default, anon_sym_union, - STATE(1882), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(3282), 3, + ACTIONS(3345), 3, sym_self, sym_super, sym_crate, - ACTIONS(3670), 3, + ACTIONS(3604), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3819), 17, + ACTIONS(3335), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -160958,46 +159192,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58387] = 17, + [57746] = 17, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - ACTIONS(3284), 1, + ACTIONS(3347), 1, sym_metavariable, - ACTIONS(3672), 1, + ACTIONS(3606), 1, anon_sym_where, - ACTIONS(4297), 1, + ACTIONS(4330), 1, sym_identifier, - STATE(2957), 1, + STATE(2862), 1, sym_scoped_type_identifier, - STATE(2996), 1, + STATE(3072), 1, sym_generic_type, - STATE(3380), 1, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, sym_scoped_identifier, - STATE(3395), 1, + STATE(3436), 1, sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - ACTIONS(3278), 2, + ACTIONS(3343), 2, anon_sym_default, anon_sym_union, - STATE(1883), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(3282), 3, + ACTIONS(3345), 3, sym_self, sym_super, sym_crate, - ACTIONS(3670), 3, + ACTIONS(3604), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3819), 17, + ACTIONS(3335), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161015,46 +159249,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58461] = 17, + [57820] = 17, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - ACTIONS(3284), 1, + ACTIONS(3347), 1, sym_metavariable, - ACTIONS(3672), 1, + ACTIONS(3606), 1, anon_sym_where, - ACTIONS(4299), 1, + ACTIONS(4332), 1, sym_identifier, - STATE(2699), 1, + STATE(2984), 1, sym_scoped_type_identifier, - STATE(2999), 1, + STATE(3047), 1, sym_generic_type, - STATE(3380), 1, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, sym_scoped_identifier, - STATE(3395), 1, + STATE(3436), 1, sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - ACTIONS(3278), 2, + ACTIONS(3343), 2, anon_sym_default, anon_sym_union, - STATE(1884), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(3282), 3, + ACTIONS(3345), 3, sym_self, sym_super, sym_crate, - ACTIONS(3670), 3, + ACTIONS(3604), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3819), 17, + ACTIONS(3335), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161072,46 +159306,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58535] = 17, + [57894] = 17, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - ACTIONS(3284), 1, + ACTIONS(3347), 1, sym_metavariable, - ACTIONS(3672), 1, + ACTIONS(3606), 1, anon_sym_where, - ACTIONS(4301), 1, + ACTIONS(4334), 1, sym_identifier, - STATE(2703), 1, + STATE(2933), 1, sym_scoped_type_identifier, - STATE(3010), 1, + STATE(3058), 1, sym_generic_type, - STATE(3380), 1, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, sym_scoped_identifier, - STATE(3395), 1, + STATE(3436), 1, sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - ACTIONS(3278), 2, + ACTIONS(3343), 2, anon_sym_default, anon_sym_union, - STATE(1885), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(3282), 3, + ACTIONS(3345), 3, sym_self, sym_super, sym_crate, - ACTIONS(3670), 3, + ACTIONS(3604), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3819), 17, + ACTIONS(3335), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161129,46 +159363,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58609] = 17, + [57968] = 17, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - ACTIONS(3284), 1, + ACTIONS(3347), 1, sym_metavariable, - ACTIONS(3672), 1, + ACTIONS(3606), 1, anon_sym_where, - ACTIONS(4303), 1, + ACTIONS(4336), 1, sym_identifier, - STATE(2728), 1, + STATE(3010), 1, sym_scoped_type_identifier, - STATE(3066), 1, + STATE(3040), 1, sym_generic_type, - STATE(3380), 1, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, sym_scoped_identifier, - STATE(3395), 1, + STATE(3436), 1, sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - ACTIONS(3278), 2, + ACTIONS(3343), 2, anon_sym_default, anon_sym_union, - STATE(1886), 2, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(3282), 3, + ACTIONS(3345), 3, sym_self, sym_super, sym_crate, - ACTIONS(3670), 3, + ACTIONS(3604), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3819), 17, + ACTIONS(3335), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161186,46 +159420,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58683] = 17, + [58042] = 17, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - ACTIONS(3284), 1, + ACTIONS(3347), 1, sym_metavariable, - ACTIONS(3672), 1, + ACTIONS(3606), 1, anon_sym_where, - ACTIONS(4305), 1, + ACTIONS(4338), 1, sym_identifier, - STATE(2704), 1, + STATE(2717), 1, sym_scoped_type_identifier, - STATE(3016), 1, + STATE(3282), 1, sym_generic_type, - STATE(3380), 1, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, sym_scoped_identifier, - STATE(3395), 1, + STATE(3436), 1, sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - ACTIONS(3278), 2, + ACTIONS(3343), 2, anon_sym_default, anon_sym_union, - STATE(1887), 2, + STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(3282), 3, + ACTIONS(3345), 3, sym_self, sym_super, sym_crate, - ACTIONS(3670), 3, + ACTIONS(3604), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3819), 17, + ACTIONS(3335), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161243,46 +159477,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58757] = 17, + [58116] = 17, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3272), 1, + ACTIONS(3337), 1, anon_sym_COLON_COLON, - ACTIONS(3284), 1, + ACTIONS(3347), 1, sym_metavariable, - ACTIONS(3672), 1, + ACTIONS(3606), 1, anon_sym_where, - ACTIONS(4307), 1, + ACTIONS(4340), 1, sym_identifier, - STATE(2707), 1, + STATE(2768), 1, sym_scoped_type_identifier, - STATE(3036), 1, + STATE(3222), 1, sym_generic_type, - STATE(3380), 1, + STATE(3299), 1, + sym_generic_type_with_turbofish, + STATE(3343), 1, sym_scoped_identifier, - STATE(3395), 1, + STATE(3436), 1, sym_bracketed_type, - STATE(3398), 1, - sym_generic_type_with_turbofish, - ACTIONS(3278), 2, + ACTIONS(3343), 2, anon_sym_default, anon_sym_union, - STATE(1888), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(3282), 3, + ACTIONS(3345), 3, sym_self, sym_super, sym_crate, - ACTIONS(3670), 3, + ACTIONS(3604), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(3819), 17, + ACTIONS(3335), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161300,19 +159534,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [58831] = 5, + [58190] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1889), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4311), 3, + ACTIONS(4344), 3, anon_sym_COLON_COLON, anon_sym_LT, sym_metavariable, - ACTIONS(4309), 28, + ACTIONS(4342), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161341,19 +159575,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58877] = 5, + [58236] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1890), 2, + STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(4315), 3, + ACTIONS(4348), 3, anon_sym_COLON_COLON, anon_sym_LT, sym_metavariable, - ACTIONS(4313), 28, + ACTIONS(4346), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161382,19 +159616,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58923] = 5, + [58282] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1891), 2, + STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(4319), 3, + ACTIONS(4352), 3, anon_sym_COLON_COLON, anon_sym_LT, sym_metavariable, - ACTIONS(4317), 28, + ACTIONS(4350), 28, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161423,35 +159657,35 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [58969] = 13, + [58328] = 13, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1753), 1, + ACTIONS(1646), 1, anon_sym_COLON_COLON, - ACTIONS(4321), 1, + ACTIONS(4354), 1, sym_identifier, - ACTIONS(4327), 1, + ACTIONS(4360), 1, sym_metavariable, - STATE(2245), 1, + STATE(2244), 1, sym_scoped_identifier, - STATE(3248), 1, - sym_bracketed_type, - STATE(3273), 1, + STATE(3313), 1, sym_generic_type_with_turbofish, - STATE(3472), 1, + STATE(3383), 1, + sym_bracketed_type, + STATE(3408), 1, sym_attribute, - STATE(1892), 2, + STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4325), 3, + ACTIONS(4358), 3, sym_self, sym_super, sym_crate, - ACTIONS(4323), 19, + ACTIONS(4356), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161471,35 +159705,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59030] = 13, + [58389] = 13, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1753), 1, + ACTIONS(1646), 1, anon_sym_COLON_COLON, - ACTIONS(4321), 1, + ACTIONS(4354), 1, sym_identifier, - ACTIONS(4327), 1, + ACTIONS(4360), 1, sym_metavariable, - STATE(2245), 1, + STATE(2244), 1, sym_scoped_identifier, - STATE(3248), 1, + STATE(3313), 1, + sym_generic_type_with_turbofish, + STATE(3361), 1, + sym_attribute, + STATE(3383), 1, sym_bracketed_type, - STATE(3273), 1, + STATE(1881), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4358), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4356), 19, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_default, + anon_sym_union, + [58450] = 13, + ACTIONS(31), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1646), 1, + anon_sym_COLON_COLON, + ACTIONS(4354), 1, + sym_identifier, + ACTIONS(4360), 1, + sym_metavariable, + STATE(2244), 1, + sym_scoped_identifier, + STATE(3313), 1, sym_generic_type_with_turbofish, - STATE(3419), 1, + STATE(3383), 1, + sym_bracketed_type, + STATE(3470), 1, sym_attribute, - STATE(1893), 2, + STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(4325), 3, + ACTIONS(4358), 3, sym_self, sym_super, sym_crate, - ACTIONS(4323), 19, + ACTIONS(4356), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161519,35 +159801,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59091] = 13, + [58511] = 13, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1753), 1, + ACTIONS(1646), 1, anon_sym_COLON_COLON, - ACTIONS(4321), 1, + ACTIONS(4354), 1, sym_identifier, - ACTIONS(4327), 1, + ACTIONS(4360), 1, sym_metavariable, - STATE(2245), 1, + STATE(2244), 1, sym_scoped_identifier, - STATE(3248), 1, - sym_bracketed_type, - STATE(3273), 1, + STATE(3313), 1, sym_generic_type_with_turbofish, - STATE(3314), 1, + STATE(3383), 1, + sym_bracketed_type, + STATE(3400), 1, sym_attribute, - STATE(1894), 2, + STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(4325), 3, + ACTIONS(4358), 3, sym_self, sym_super, sym_crate, - ACTIONS(4323), 19, + ACTIONS(4356), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161567,35 +159849,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59152] = 13, + [58572] = 13, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1753), 1, + ACTIONS(1646), 1, anon_sym_COLON_COLON, - ACTIONS(4321), 1, + ACTIONS(4354), 1, sym_identifier, - ACTIONS(4327), 1, + ACTIONS(4360), 1, sym_metavariable, - STATE(2245), 1, + STATE(2244), 1, sym_scoped_identifier, - STATE(3248), 1, - sym_bracketed_type, - STATE(3273), 1, + STATE(3313), 1, sym_generic_type_with_turbofish, - STATE(3467), 1, + STATE(3378), 1, sym_attribute, - STATE(1895), 2, + STATE(3383), 1, + sym_bracketed_type, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(4325), 3, + ACTIONS(4358), 3, sym_self, sym_super, sym_crate, - ACTIONS(4323), 19, + ACTIONS(4356), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161615,35 +159897,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59213] = 13, + [58633] = 13, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1753), 1, + ACTIONS(1646), 1, anon_sym_COLON_COLON, - ACTIONS(4321), 1, + ACTIONS(4354), 1, sym_identifier, - ACTIONS(4327), 1, + ACTIONS(4360), 1, sym_metavariable, - STATE(2245), 1, + STATE(2244), 1, sym_scoped_identifier, - STATE(3248), 1, - sym_bracketed_type, - STATE(3273), 1, + STATE(3313), 1, sym_generic_type_with_turbofish, - STATE(3348), 1, + STATE(3340), 1, sym_attribute, - STATE(1896), 2, + STATE(3383), 1, + sym_bracketed_type, + STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(4325), 3, + ACTIONS(4358), 3, sym_self, sym_super, sym_crate, - ACTIONS(4323), 19, + ACTIONS(4356), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161663,35 +159945,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59274] = 13, + [58694] = 13, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1753), 1, + ACTIONS(1646), 1, anon_sym_COLON_COLON, - ACTIONS(4321), 1, + ACTIONS(4354), 1, sym_identifier, - ACTIONS(4327), 1, + ACTIONS(4360), 1, sym_metavariable, - STATE(2245), 1, + STATE(2244), 1, sym_scoped_identifier, - STATE(3248), 1, - sym_bracketed_type, - STATE(3253), 1, - sym_attribute, - STATE(3273), 1, + STATE(3313), 1, sym_generic_type_with_turbofish, - STATE(1897), 2, + STATE(3355), 1, + sym_attribute, + STATE(3383), 1, + sym_bracketed_type, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4325), 3, + ACTIONS(4358), 3, sym_self, sym_super, sym_crate, - ACTIONS(4323), 19, + ACTIONS(4356), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161711,35 +159993,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59335] = 13, + [58755] = 13, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1753), 1, + ACTIONS(1646), 1, anon_sym_COLON_COLON, - ACTIONS(4321), 1, + ACTIONS(4354), 1, sym_identifier, - ACTIONS(4327), 1, + ACTIONS(4360), 1, sym_metavariable, - STATE(2245), 1, + STATE(2244), 1, sym_scoped_identifier, - STATE(3248), 1, - sym_bracketed_type, - STATE(3273), 1, + STATE(3313), 1, sym_generic_type_with_turbofish, - STATE(3340), 1, + STATE(3383), 1, + sym_bracketed_type, + STATE(3510), 1, sym_attribute, - STATE(1898), 2, + STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4325), 3, + ACTIONS(4358), 3, sym_self, sym_super, sym_crate, - ACTIONS(4323), 19, + ACTIONS(4356), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161759,33 +160041,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59396] = 12, + [58816] = 12, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4329), 1, + ACTIONS(4362), 1, sym_identifier, - ACTIONS(4333), 1, + ACTIONS(4366), 1, anon_sym_COLON_COLON, - ACTIONS(4337), 1, + ACTIONS(4370), 1, sym_metavariable, - STATE(3169), 1, + STATE(3173), 1, sym_scoped_identifier, - STATE(3336), 1, + STATE(3397), 1, sym_generic_type_with_turbofish, - STATE(3383), 1, + STATE(3517), 1, sym_bracketed_type, - STATE(1899), 2, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4335), 3, + ACTIONS(4368), 3, sym_self, sym_super, sym_crate, - ACTIONS(4331), 19, + ACTIONS(4364), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161805,33 +160087,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59454] = 12, + [58874] = 12, ACTIONS(31), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4333), 1, + ACTIONS(4366), 1, anon_sym_COLON_COLON, - ACTIONS(4339), 1, + ACTIONS(4372), 1, sym_identifier, - ACTIONS(4345), 1, + ACTIONS(4378), 1, sym_metavariable, - STATE(3162), 1, + STATE(3021), 1, sym_scoped_identifier, - STATE(3336), 1, + STATE(3397), 1, sym_generic_type_with_turbofish, - STATE(3383), 1, + STATE(3517), 1, sym_bracketed_type, - STATE(1900), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(4343), 3, + ACTIONS(4376), 3, sym_self, sym_super, sym_crate, - ACTIONS(4341), 19, + ACTIONS(4374), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -161851,29 +160133,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_char, anon_sym_default, anon_sym_union, - [59512] = 11, + [58932] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3164), 1, + ACTIONS(3192), 1, anon_sym_COLON, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4349), 1, + ACTIONS(4382), 1, anon_sym_COLON_COLON, - ACTIONS(4351), 1, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(1940), 1, + STATE(1925), 1, sym_parameters, - STATE(1901), 2, + STATE(1890), 2, sym_line_comment, sym_block_comment, - ACTIONS(3160), 14, + ACTIONS(3188), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161888,17 +160170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59560] = 5, + [58980] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1518), 1, + ACTIONS(1442), 1, anon_sym_DOT_DOT, - STATE(1902), 2, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(1520), 20, + ACTIONS(1444), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161919,17 +160201,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [59596] = 5, + [59016] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1502), 1, + ACTIONS(1482), 1, anon_sym_DOT_DOT, - STATE(1903), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(1504), 20, + ACTIONS(1484), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161950,66 +160232,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [59632] = 14, + [59052] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, - anon_sym_BANG, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4357), 1, - anon_sym_LPAREN, - ACTIONS(4359), 1, - anon_sym_LBRACE, - ACTIONS(4361), 1, + ACTIONS(3216), 1, anon_sym_COLON, - ACTIONS(4363), 1, + ACTIONS(3218), 2, anon_sym_COLON_COLON, - ACTIONS(4365), 1, - anon_sym_AT, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - STATE(1933), 1, - sym_type_arguments, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1904), 2, + anon_sym_BANG, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(4355), 9, + ACTIONS(3214), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, - [59685] = 10, + anon_sym_LT2, + [59089] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3174), 1, + ACTIONS(3208), 1, anon_sym_COLON, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4371), 1, + ACTIONS(4388), 1, anon_sym_COLON_COLON, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(1940), 1, + STATE(1925), 1, sym_parameters, - STATE(1905), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(3172), 14, + ACTIONS(3206), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162024,51 +160298,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59730] = 6, + [59134] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3228), 1, + ACTIONS(4384), 1, + anon_sym_BANG, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4392), 1, + anon_sym_LPAREN, + ACTIONS(4394), 1, + anon_sym_LBRACE, + ACTIONS(4396), 1, anon_sym_COLON, - ACTIONS(3230), 2, + ACTIONS(4398), 1, anon_sym_COLON_COLON, - anon_sym_BANG, - STATE(1906), 2, + ACTIONS(4400), 1, + anon_sym_AT, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + STATE(1921), 1, + sym_type_arguments, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1895), 2, sym_line_comment, sym_block_comment, - ACTIONS(3226), 17, + ACTIONS(4390), 9, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - anon_sym_LT2, - [59767] = 6, + anon_sym_in, + [59187] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3208), 1, + ACTIONS(3252), 1, anon_sym_COLON, - ACTIONS(3210), 2, + ACTIONS(3254), 2, anon_sym_COLON_COLON, anon_sym_BANG, - STATE(1907), 2, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(3206), 17, + ACTIONS(3250), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -162086,22 +160368,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59804] = 6, + [59224] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3200), 1, + ACTIONS(3202), 1, anon_sym_COLON, - ACTIONS(3202), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4388), 1, anon_sym_COLON_COLON, - anon_sym_BANG, - STATE(1908), 2, + STATE(1921), 1, + sym_type_arguments, + STATE(1925), 1, + sym_parameters, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(3198), 17, + ACTIONS(3200), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -162113,31 +160401,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [59841] = 10, + [59269] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3180), 1, + ACTIONS(3212), 1, anon_sym_COLON, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4371), 1, + ACTIONS(4388), 1, anon_sym_COLON_COLON, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(1940), 1, + STATE(1925), 1, sym_parameters, - STATE(1909), 2, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(3178), 14, + ACTIONS(3210), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162152,28 +160438,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59886] = 10, + [59314] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3184), 1, + ACTIONS(3224), 1, anon_sym_COLON, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4371), 1, + ACTIONS(3226), 2, anon_sym_COLON_COLON, - STATE(1933), 1, - sym_type_arguments, - STATE(1940), 1, - sym_parameters, - STATE(1910), 2, + anon_sym_BANG, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(3182), 14, + ACTIONS(3222), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -162185,22 +160465,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [59931] = 6, + anon_sym_LT2, + [59351] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3220), 1, + ACTIONS(3240), 1, anon_sym_COLON, - ACTIONS(3222), 2, + ACTIONS(3242), 2, anon_sym_COLON_COLON, anon_sym_BANG, - STATE(1911), 2, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(3218), 17, + ACTIONS(3238), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -162218,23 +160500,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_LT2, - [59968] = 8, + [59388] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - STATE(1929), 1, + STATE(1922), 1, sym_type_arguments, - STATE(1950), 1, + STATE(1938), 1, sym_parameters, - STATE(1912), 2, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(3190), 15, + ACTIONS(3234), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162250,23 +160532,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60008] = 8, + [59428] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - STATE(1929), 1, + STATE(1922), 1, sym_type_arguments, - STATE(1950), 1, + STATE(1938), 1, sym_parameters, - STATE(1913), 2, + STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(3186), 15, + ACTIONS(3230), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162282,23 +160564,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60048] = 8, + [59468] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - STATE(1929), 1, + STATE(1922), 1, sym_type_arguments, - STATE(1950), 1, + STATE(1938), 1, sym_parameters, - STATE(1914), 2, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(3214), 15, + ACTIONS(3246), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162314,53 +160596,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60088] = 8, + [59508] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - STATE(1929), 1, + STATE(1922), 1, sym_type_arguments, - STATE(1950), 1, + STATE(1938), 1, sym_parameters, - STATE(1915), 2, + STATE(1904), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3258), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [59548] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3222), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(3228), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1905), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3226), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + [59583] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3250), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(3256), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1906), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3254), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + [59618] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3256), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3254), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + [59651] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3389), 1, + anon_sym_COLON, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 15, + ACTIONS(3387), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_GT, anon_sym_PIPE, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, - [60128] = 6, + [59684] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3198), 2, + ACTIONS(3214), 2, anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(3204), 2, + ACTIONS(3220), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1916), 2, + STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(3202), 14, + ACTIONS(3218), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -162375,18 +160771,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [60163] = 5, + [59719] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3204), 2, + ACTIONS(3220), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1917), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(3202), 16, + ACTIONS(3218), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -162403,109 +160799,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [60196] = 5, + [59752] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3224), 2, + ACTIONS(3415), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1918), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(3222), 16, + ACTIONS(3413), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_BANG, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - [60229] = 5, + [59785] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3212), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1919), 2, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(3210), 16, + ACTIONS(3250), 18, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_BANG, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - [60262] = 6, + anon_sym_LT2, + [59816] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3206), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(3212), 2, + ACTIONS(3459), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1920), 2, + STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(3210), 14, + ACTIONS(3457), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_BANG, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - [60297] = 5, + [59849] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3232), 2, + ACTIONS(3238), 2, + anon_sym_LBRACE, + anon_sym_LT2, + ACTIONS(3244), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1921), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(3230), 16, + ACTIONS(3242), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, @@ -162516,81 +160911,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [60330] = 6, + [59884] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3218), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(3224), 2, + ACTIONS(3363), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1922), 2, + STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(3222), 14, + ACTIONS(3361), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_BANG, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - [60365] = 4, + [59917] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1923), 2, + ACTIONS(3244), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(3206), 18, + ACTIONS(3242), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, + anon_sym_COLON_COLON, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - anon_sym_LT2, - [60396] = 6, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + [59950] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3226), 2, - anon_sym_LBRACE, - anon_sym_LT2, - ACTIONS(3232), 2, + ACTIONS(3228), 2, anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1924), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(3230), 14, + ACTIONS(3226), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, @@ -162601,17 +160995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_in, anon_sym_DOT_DOT_EQ, - [60431] = 5, + [59983] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3400), 1, + ACTIONS(3453), 1, anon_sym_COLON, - STATE(1925), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(3398), 16, + ACTIONS(3451), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162628,92 +161022,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60463] = 12, + [60015] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4375), 1, + ACTIONS(4408), 1, anon_sym_COLON, - ACTIONS(4377), 1, + ACTIONS(4410), 1, anon_sym_COLON_COLON, - ACTIONS(4379), 1, + ACTIONS(4412), 1, anon_sym_BANG, - ACTIONS(4383), 1, + ACTIONS(4416), 1, anon_sym_DOT_DOT, - STATE(1928), 1, + STATE(1918), 1, sym_type_arguments, - ACTIONS(4381), 2, + ACTIONS(4414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1926), 2, + STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(4373), 3, + ACTIONS(4406), 9, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [60509] = 19, + anon_sym_else, + anon_sym_in, + [60059] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4387), 1, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4412), 1, + anon_sym_BANG, + ACTIONS(4416), 1, + anon_sym_DOT_DOT, + ACTIONS(4418), 1, + anon_sym_COLON_COLON, + STATE(1918), 1, + sym_type_arguments, + ACTIONS(4414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1920), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4406), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3281), 6, + anon_sym_async, anon_sym_const, - ACTIONS(4389), 1, - anon_sym_enum, - ACTIONS(4391), 1, + anon_sym_default, anon_sym_fn, - ACTIONS(4393), 1, - anon_sym_mod, - ACTIONS(4395), 1, - anon_sym_static, - ACTIONS(4397), 1, - anon_sym_struct, - ACTIONS(4399), 1, - anon_sym_trait, - ACTIONS(4401), 1, - anon_sym_type, - ACTIONS(4403), 1, - anon_sym_union, - ACTIONS(4405), 1, anon_sym_unsafe, - ACTIONS(4407), 1, - anon_sym_use, - ACTIONS(4409), 1, anon_sym_extern, - STATE(2131), 1, - sym_extern_modifier, - STATE(2165), 1, - aux_sym_function_modifiers_repeat1, - STATE(3519), 1, - sym_function_modifiers, - ACTIONS(4385), 2, - anon_sym_async, - anon_sym_default, - STATE(1927), 2, - sym_line_comment, - sym_block_comment, - [60569] = 5, + [60105] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3300), 1, + ACTIONS(3465), 1, anon_sym_COLON, - STATE(1928), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(3298), 16, + ACTIONS(3463), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162730,17 +161116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60601] = 5, + [60137] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3362), 1, + ACTIONS(3433), 1, anon_sym_COLON, - STATE(1929), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(3360), 16, + ACTIONS(3431), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162757,118 +161143,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60633] = 5, + [60169] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3312), 1, - anon_sym_COLON, - STATE(1930), 2, + ACTIONS(4422), 1, + anon_sym_const, + ACTIONS(4424), 1, + anon_sym_enum, + ACTIONS(4426), 1, + anon_sym_fn, + ACTIONS(4428), 1, + anon_sym_mod, + ACTIONS(4430), 1, + anon_sym_static, + ACTIONS(4432), 1, + anon_sym_struct, + ACTIONS(4434), 1, + anon_sym_trait, + ACTIONS(4436), 1, + anon_sym_type, + ACTIONS(4438), 1, + anon_sym_union, + ACTIONS(4440), 1, + anon_sym_unsafe, + ACTIONS(4442), 1, + anon_sym_use, + ACTIONS(4444), 1, + anon_sym_extern, + STATE(2120), 1, + sym_extern_modifier, + STATE(2178), 1, + aux_sym_function_modifiers_repeat1, + STATE(3561), 1, + sym_function_modifiers, + ACTIONS(4420), 2, + anon_sym_async, + anon_sym_default, + STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(3310), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - [60665] = 19, + [60229] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4411), 1, + ACTIONS(4446), 1, anon_sym_const, - ACTIONS(4413), 1, + ACTIONS(4448), 1, anon_sym_enum, - ACTIONS(4415), 1, + ACTIONS(4450), 1, anon_sym_fn, - ACTIONS(4417), 1, + ACTIONS(4452), 1, anon_sym_mod, - ACTIONS(4419), 1, + ACTIONS(4454), 1, anon_sym_static, - ACTIONS(4421), 1, + ACTIONS(4456), 1, anon_sym_struct, - ACTIONS(4423), 1, + ACTIONS(4458), 1, anon_sym_trait, - ACTIONS(4425), 1, + ACTIONS(4460), 1, anon_sym_type, - ACTIONS(4427), 1, + ACTIONS(4462), 1, anon_sym_union, - ACTIONS(4429), 1, + ACTIONS(4464), 1, anon_sym_unsafe, - ACTIONS(4431), 1, + ACTIONS(4466), 1, anon_sym_use, - ACTIONS(4433), 1, + ACTIONS(4468), 1, anon_sym_extern, - STATE(2096), 1, + STATE(2129), 1, sym_extern_modifier, - STATE(2165), 1, + STATE(2178), 1, aux_sym_function_modifiers_repeat1, - STATE(3454), 1, + STATE(3374), 1, sym_function_modifiers, - ACTIONS(4385), 2, + ACTIONS(4420), 2, anon_sym_async, anon_sym_default, - STATE(1931), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - [60725] = 11, + [60289] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4375), 1, - anon_sym_COLON, - ACTIONS(4379), 1, - anon_sym_BANG, - ACTIONS(4383), 1, - anon_sym_DOT_DOT, - ACTIONS(4435), 1, - anon_sym_COLON_COLON, - STATE(1928), 1, - sym_type_arguments, - ACTIONS(4381), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1932), 2, + ACTIONS(4470), 1, + anon_sym_DASH_GT, + STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(4373), 9, + ACTIONS(3467), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60769] = 5, + [60320] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, + ACTIONS(3232), 1, anon_sym_COLON, - STATE(1933), 2, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(3380), 16, + ACTIONS(3230), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162877,25 +161272,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_GT, anon_sym_PIPE, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [60801] = 5, + [60353] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3292), 1, + ACTIONS(3236), 1, anon_sym_COLON, - STATE(1934), 2, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(3290), 16, + ACTIONS(3234), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162904,23 +161299,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_GT, anon_sym_PIPE, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - [60833] = 4, + [60386] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1935), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(3314), 16, + ACTIONS(3476), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162937,28 +161330,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60862] = 10, + [60415] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4357), 1, + ACTIONS(4392), 1, anon_sym_LPAREN, - ACTIONS(4361), 1, + ACTIONS(4396), 1, anon_sym_COLON, - ACTIONS(4369), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4437), 1, + ACTIONS(4474), 1, anon_sym_COLON_COLON, - ACTIONS(4367), 2, + ACTIONS(4402), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1936), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(4355), 9, + ACTIONS(4390), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162968,19 +161361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [60903] = 6, + [60456] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3196), 1, + ACTIONS(3260), 1, anon_sym_COLON, - ACTIONS(4439), 1, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - STATE(1937), 2, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 14, + ACTIONS(3258), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -162995,15 +161388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60936] = 4, + [60489] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1938), 2, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(3318), 16, + ACTIONS(3391), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163020,24 +161413,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60965] = 6, + [60518] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3196), 1, - anon_sym_COLON, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - STATE(1939), 2, + STATE(1932), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 14, + ACTIONS(988), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, @@ -163047,17 +161437,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60998] = 5, + anon_sym_in, + [60547] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4476), 1, anon_sym_DASH_GT, - STATE(1940), 2, + STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 15, + ACTIONS(3283), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163073,15 +161464,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61029] = 4, + [60578] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1941), 2, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(978), 16, + ACTIONS(3357), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163090,6 +161481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, @@ -163097,25 +161489,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61058] = 6, + [60607] = 16, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3216), 1, - anon_sym_COLON, - ACTIONS(4441), 1, + ACTIONS(4384), 1, + anon_sym_BANG, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4394), 1, + anon_sym_LBRACE, + ACTIONS(4400), 1, + anon_sym_AT, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(4478), 1, + anon_sym_LPAREN, + ACTIONS(4480), 1, + anon_sym_RBRACK, + ACTIONS(4483), 1, anon_sym_COLON_COLON, - STATE(1942), 2, + STATE(1921), 1, + sym_type_arguments, + STATE(1925), 1, + sym_parameters, + ACTIONS(3188), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4390), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1935), 2, + sym_line_comment, + sym_block_comment, + [60660] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(3214), 14, + ACTIONS(878), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, @@ -163125,24 +161550,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61091] = 6, + anon_sym_in, + [60689] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3188), 1, + STATE(1937), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3409), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - STATE(1943), 2, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [60718] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4485), 1, + anon_sym_DASH_GT, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(3186), 14, + ACTIONS(3441), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, @@ -163152,61 +161602,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61124] = 16, + [60749] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, + ACTIONS(3188), 1, + anon_sym_PLUS, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4359), 1, + ACTIONS(4390), 1, + anon_sym_PIPE, + ACTIONS(4394), 1, anon_sym_LBRACE, - ACTIONS(4365), 1, + ACTIONS(4396), 1, + anon_sym_COLON, + ACTIONS(4400), 1, anon_sym_AT, - ACTIONS(4369), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4445), 1, + ACTIONS(4487), 1, anon_sym_LPAREN, - ACTIONS(4447), 1, - anon_sym_RBRACK, - ACTIONS(4450), 1, + ACTIONS(4489), 1, anon_sym_COLON_COLON, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(1940), 1, + STATE(1925), 1, sym_parameters, - ACTIONS(3160), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4355), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(4367), 2, + ACTIONS(4402), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1944), 2, + ACTIONS(4480), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1939), 2, sym_line_comment, sym_block_comment, - [61177] = 4, + [60804] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1945), 2, + ACTIONS(3248), 1, + anon_sym_COLON, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(3294), 16, + ACTIONS(3246), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [60837] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4491), 1, anon_sym_DASH_GT, + STATE(1941), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3289), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, @@ -163214,17 +161693,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61206] = 5, + [60868] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4452), 1, + ACTIONS(4493), 1, anon_sym_DASH_GT, - STATE(1946), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(3326), 15, + ACTIONS(3425), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163240,21 +161719,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61237] = 4, + [60899] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1947), 2, + ACTIONS(3236), 1, + anon_sym_COLON, + ACTIONS(4495), 1, + anon_sym_COLON_COLON, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(994), 16, + ACTIONS(3234), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [60932] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3236), 1, anon_sym_COLON, + ACTIONS(4497), 1, + anon_sym_COLON_COLON, + STATE(1944), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3234), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, @@ -163264,18 +161773,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61266] = 5, + [60965] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4454), 1, + ACTIONS(4499), 1, anon_sym_DASH_GT, - STATE(1948), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(3352), 15, + ACTIONS(3435), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163291,54 +161799,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61297] = 16, + [60996] = 16, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4355), 1, + ACTIONS(4390), 1, anon_sym_PIPE, - ACTIONS(4359), 1, + ACTIONS(4394), 1, anon_sym_LBRACE, - ACTIONS(4361), 1, + ACTIONS(4396), 1, anon_sym_COLON, - ACTIONS(4365), 1, + ACTIONS(4400), 1, anon_sym_AT, - ACTIONS(4369), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4456), 1, + ACTIONS(4501), 1, anon_sym_LPAREN, - ACTIONS(4458), 1, + ACTIONS(4503), 1, anon_sym_COLON_COLON, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(1940), 1, + STATE(1925), 1, sym_parameters, - ACTIONS(4367), 2, + ACTIONS(4402), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1949), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(3160), 3, + ACTIONS(3188), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [61350] = 5, + [61049] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4460), 1, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4412), 1, + anon_sym_BANG, + ACTIONS(4416), 1, + anon_sym_DOT_DOT, + ACTIONS(4505), 1, + anon_sym_COLON_COLON, + STATE(1918), 1, + sym_type_arguments, + ACTIONS(4414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1947), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4406), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(3281), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [61092] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4507), 1, + anon_sym_LPAREN, + STATE(1948), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3930), 15, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + [61123] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1949), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3447), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_EQ, anon_sym_DASH_GT, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [61152] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(3364), 15, + ACTIONS(984), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163354,17 +161943,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61381] = 5, + anon_sym_in, + [61181] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4462), 1, - anon_sym_DASH_GT, STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(3334), 15, + ACTIONS(888), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [61210] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4509), 1, + anon_sym_DASH_GT, + STATE(1952), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3349), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163380,44 +161995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61412] = 6, + [61241] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3196), 1, - anon_sym_COLON, - ACTIONS(3935), 1, + ACTIONS(3832), 1, anon_sym_COLON_COLON, - STATE(1952), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3194), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [61445] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4464), 1, - anon_sym_LPAREN, STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(3931), 15, + ACTIONS(3935), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -163432,8 +162020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [61476] = 4, + [61271] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163441,7 +162028,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(3286), 16, + ACTIONS(3676), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163450,7 +162037,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, @@ -163458,7 +162044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61505] = 4, + [61299] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163466,7 +162052,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 16, + ACTIONS(3520), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163475,7 +162061,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, - anon_sym_DASH_GT, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, @@ -163483,24 +162068,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61534] = 6, + [61327] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3192), 1, - anon_sym_COLON, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(3190), 14, + ACTIONS(3794), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, @@ -163510,7 +162092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61567] = 4, + [61355] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163518,7 +162100,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(908), 16, + ACTIONS(3592), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163534,18 +162116,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61596] = 5, + [61383] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4466), 1, - anon_sym_DASH_GT, STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(3342), 15, + ACTIONS(3524), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163561,85 +162140,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61627] = 11, + [61411] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4379), 1, - anon_sym_BANG, - ACTIONS(4383), 1, - anon_sym_DOT_DOT, - ACTIONS(4468), 1, - anon_sym_COLON_COLON, - STATE(1928), 1, - sym_type_arguments, - ACTIONS(4381), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(4373), 3, + ACTIONS(3570), 15, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [61670] = 17, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3160), 1, - anon_sym_PLUS, - ACTIONS(4351), 1, - anon_sym_BANG, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4355), 1, - anon_sym_PIPE, - ACTIONS(4359), 1, anon_sym_LBRACE, - ACTIONS(4361), 1, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(4365), 1, - anon_sym_AT, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - ACTIONS(4470), 1, - anon_sym_LPAREN, - ACTIONS(4472), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_type_arguments, - STATE(1940), 1, - sym_parameters, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4447), 2, - anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_EQ, anon_sym_COMMA, - STATE(1960), 2, - sym_line_comment, - sym_block_comment, - [61725] = 4, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [61439] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1961), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(998), 16, + ACTIONS(3720), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163655,18 +162188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [61754] = 5, + [61467] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4474), 1, - anon_sym_DASH_GT, - STATE(1962), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(3302), 15, + ACTIONS(3574), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163682,15 +162212,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61785] = 4, + [61495] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1963), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3484), 15, + ACTIONS(3656), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163706,15 +162236,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61813] = 4, + [61523] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1964), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(3434), 15, + ACTIONS(3582), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163730,47 +162260,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61841] = 12, + [61551] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4373), 1, - anon_sym_PIPE, - ACTIONS(4375), 1, - anon_sym_COLON, - ACTIONS(4379), 1, - anon_sym_BANG, - ACTIONS(4383), 1, - anon_sym_DOT_DOT, - ACTIONS(4476), 1, - anon_sym_COLON_COLON, - STATE(1928), 1, - sym_type_arguments, - ACTIONS(4381), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1965), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, + ACTIONS(3939), 15, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, + anon_sym_mod, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - [61885] = 4, + sym_identifier, + [61579] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1966), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(3430), 15, + ACTIONS(3234), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163786,15 +162308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61913] = 4, + [61607] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1967), 2, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(3484), 15, + ACTIONS(3246), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163810,15 +162332,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61941] = 4, + [61635] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1968), 2, + STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(3426), 15, + ACTIONS(3684), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163834,63 +162356,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61969] = 4, + [61663] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1969), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3670), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4406), 1, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [61997] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1970), 2, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4412), 1, + anon_sym_BANG, + ACTIONS(4416), 1, + anon_sym_DOT_DOT, + ACTIONS(4511), 1, + anon_sym_COLON_COLON, + STATE(1918), 1, + sym_type_arguments, + ACTIONS(4414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(3422), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62025] = 4, + ACTIONS(3281), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [61707] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1971), 2, + STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 15, + ACTIONS(3782), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163906,15 +162412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62053] = 4, + [61735] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1972), 2, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(3450), 15, + ACTIONS(3604), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163930,15 +162436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62081] = 4, + [61763] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1973), 2, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(3500), 15, + ACTIONS(3490), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163954,15 +162460,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62109] = 4, + [61791] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1974), 2, + STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(3462), 15, + ACTIONS(3512), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163978,17 +162484,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62137] = 5, + [61819] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4478), 1, + ACTIONS(4513), 1, anon_sym_COLON_COLON, - STATE(1975), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(3933), 14, + ACTIONS(3935), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -164003,63 +162509,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - [62167] = 4, + [61849] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1976), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3214), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62195] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1977), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3442), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62223] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1978), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 15, + ACTIONS(3592), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164075,39 +162533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62251] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1979), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3959), 15, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - [62279] = 4, + [61877] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1980), 2, + STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 15, + ACTIONS(3544), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164123,15 +162557,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62307] = 4, + [61905] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1981), 2, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(3488), 15, + ACTIONS(3774), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164147,15 +162581,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62335] = 4, + [61933] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1982), 2, + STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(3492), 15, + ACTIONS(3660), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164171,15 +162605,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62363] = 4, + [61961] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1983), 2, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3446), 15, + ACTIONS(3664), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164195,15 +162629,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62391] = 4, + [61989] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1984), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 15, + ACTIONS(3924), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -164219,15 +162653,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [62419] = 4, + [62017] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1985), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(3937), 15, + ACTIONS(3946), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -164243,15 +162677,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [62447] = 4, + [62045] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1986), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(3186), 15, + ACTIONS(3806), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164267,15 +162701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62475] = 4, + [62073] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1987), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3534), 15, + ACTIONS(3230), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164291,15 +162725,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62503] = 4, + [62101] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1988), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3592), 15, + ACTIONS(3258), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164315,40 +162749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62531] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3697), 1, - anon_sym_COLON_COLON, - STATE(1989), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3933), 14, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_mod, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - [62561] = 4, + [62129] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1990), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3190), 15, + ACTIONS(3770), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164364,125 +162773,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62589] = 4, + [62157] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1991), 2, + ACTIONS(4517), 1, + anon_sym_pat, + STATE(417), 1, + sym_fragment_specifier, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3580), 15, + ACTIONS(4515), 12, + anon_sym_block, + anon_sym_expr, + anon_sym_ident, + anon_sym_item, + anon_sym_lifetime, + anon_sym_literal, + anon_sym_meta, + anon_sym_path, + anon_sym_stmt, + anon_sym_tt, + anon_sym_ty, + anon_sym_vis, + [62188] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4410), 1, + anon_sym_COLON_COLON, + ACTIONS(4416), 1, + anon_sym_DOT_DOT, + ACTIONS(4414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1986), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4406), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [62617] = 4, + anon_sym_in, + [62223] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1992), 2, + ACTIONS(1454), 1, + anon_sym_DOT_DOT, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3496), 15, + ACTIONS(1456), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_EQ, anon_sym_COMMA, anon_sym_GT, anon_sym_PIPE, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [62645] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4482), 1, - anon_sym_pat, - STATE(431), 1, - sym_fragment_specifier, - STATE(1993), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4480), 12, - anon_sym_block, - anon_sym_expr, - anon_sym_ident, - anon_sym_item, - anon_sym_lifetime, - anon_sym_literal, - anon_sym_meta, - anon_sym_path, - anon_sym_stmt, - anon_sym_tt, - anon_sym_ty, - anon_sym_vis, - [62676] = 16, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + [62252] = 16, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4349), 1, + ACTIONS(4382), 1, anon_sym_COLON_COLON, - ACTIONS(4351), 1, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4484), 1, + ACTIONS(4519), 1, anon_sym_COLON, - ACTIONS(4486), 1, + ACTIONS(4521), 1, anon_sym_EQ, - ACTIONS(4488), 1, + ACTIONS(4523), 1, anon_sym_COMMA, - ACTIONS(4490), 1, + ACTIONS(4525), 1, anon_sym_GT, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(1940), 1, + STATE(1925), 1, sym_parameters, - STATE(2972), 1, - aux_sym_type_parameters_repeat1, - STATE(2975), 1, + STATE(2953), 1, sym_trait_bounds, - ACTIONS(3160), 2, + STATE(2988), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3188), 2, anon_sym_PLUS, anon_sym_as, - STATE(1994), 2, + STATE(1988), 2, sym_line_comment, sym_block_comment, - [62727] = 5, + [62303] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1476), 1, + ACTIONS(3228), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - STATE(1995), 2, + STATE(1989), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3222), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4527), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3226), 5, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62335] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3244), 1, + anon_sym_DOT_DOT, + ACTIONS(4530), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(1990), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3238), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3242), 6, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62367] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3244), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1991), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3238), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4530), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3242), 5, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62399] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3220), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(1992), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3214), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4533), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3218), 5, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62431] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(1478), 13, + ACTIONS(4390), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164490,530 +163005,916 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, anon_sym_PIPE, anon_sym_else, - anon_sym_DOT_DOT_DOT, anon_sym_in, - anon_sym_DOT_DOT_EQ, - [62756] = 8, + [62461] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4375), 1, + ACTIONS(3256), 2, anon_sym_COLON, - ACTIONS(4383), 1, anon_sym_DOT_DOT, - ACTIONS(4435), 1, + STATE(1994), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3250), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4536), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3254), 5, anon_sym_COLON_COLON, - ACTIONS(4381), 2, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1996), 2, + [62493] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(4373), 9, + ACTIONS(4539), 12, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, anon_sym_else, + anon_sym_DOT_DOT_DOT, anon_sym_in, - [62791] = 7, + anon_sym_DOT_DOT_EQ, + [62521] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3224), 1, + ACTIONS(3228), 1, anon_sym_DOT_DOT, - ACTIONS(4492), 2, + ACTIONS(4527), 2, anon_sym_LPAREN, anon_sym_RBRACK, - STATE(1997), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3218), 4, + ACTIONS(3222), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3222), 6, + ACTIONS(3226), 6, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62823] = 7, + [62553] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4492), 1, - anon_sym_LPAREN, - ACTIONS(3224), 2, - anon_sym_COLON, + ACTIONS(4545), 1, anon_sym_DOT_DOT, - STATE(1998), 2, + STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(3218), 5, + ACTIONS(4543), 12, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_else, + anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_DOT_DOT_EQ, + [62581] = 13, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(3222), 5, + ACTIONS(4547), 1, + anon_sym_LPAREN, + ACTIONS(4549), 1, + anon_sym_LBRACE, + ACTIONS(4551), 1, anon_sym_COLON_COLON, + ACTIONS(4553), 1, anon_sym_BANG, - anon_sym_PIPE, + ACTIONS(4555), 1, + anon_sym_AT, + ACTIONS(4559), 1, + anon_sym_DOT_DOT, + STATE(1921), 1, + sym_type_arguments, + ACTIONS(4557), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62855] = 7, + STATE(1998), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4390), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [62625] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3232), 2, + ACTIONS(4536), 1, + anon_sym_LPAREN, + ACTIONS(3256), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(3226), 3, + ACTIONS(3250), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4495), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3230), 5, + anon_sym_LT2, + ACTIONS(3254), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62887] = 7, + [62657] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4498), 1, + ACTIONS(4527), 1, anon_sym_LPAREN, - ACTIONS(3204), 2, + ACTIONS(3228), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(3198), 5, + ACTIONS(3222), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3202), 5, + ACTIONS(3226), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62919] = 7, + [62689] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3232), 1, + ACTIONS(3256), 1, anon_sym_DOT_DOT, - ACTIONS(4495), 2, + ACTIONS(4536), 2, anon_sym_LPAREN, anon_sym_RBRACK, STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(3226), 4, + ACTIONS(3250), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3230), 6, + ACTIONS(3254), 6, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [62951] = 6, + [62721] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, + ACTIONS(4530), 1, + anon_sym_LPAREN, + ACTIONS(3244), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(4355), 10, - anon_sym_SEMI, + ACTIONS(3238), 5, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3242), 5, + anon_sym_COLON_COLON, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [62981] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [62753] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3212), 1, + ACTIONS(3220), 1, anon_sym_DOT_DOT, - ACTIONS(4501), 2, + ACTIONS(4533), 2, anon_sym_LPAREN, anon_sym_RBRACK, STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3206), 4, + ACTIONS(3214), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3210), 6, + ACTIONS(3218), 6, anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [63013] = 7, + [62785] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3224), 2, + ACTIONS(4533), 1, + anon_sym_LPAREN, + ACTIONS(3220), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3218), 3, + ACTIONS(3214), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4492), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3222), 5, + anon_sym_LT2, + ACTIONS(3218), 5, anon_sym_COLON_COLON, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [63045] = 13, + [62817] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4504), 1, - anon_sym_LPAREN, - ACTIONS(4506), 1, - anon_sym_LBRACE, - ACTIONS(4508), 1, - anon_sym_COLON_COLON, - ACTIONS(4510), 1, - anon_sym_BANG, - ACTIONS(4512), 1, - anon_sym_AT, - ACTIONS(4516), 1, - anon_sym_DOT_DOT, - STATE(1933), 1, - sym_type_arguments, - ACTIONS(4514), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4563), 1, + anon_sym_GT, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(4355), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [63089] = 7, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [62862] = 14, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4569), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2006), 2, + sym_line_comment, + sym_block_comment, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [62907] = 14, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4571), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2007), 2, + sym_line_comment, + sym_block_comment, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [62952] = 14, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4573), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2008), 2, + sym_line_comment, + sym_block_comment, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [62997] = 14, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4575), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2009), 2, + sym_line_comment, + sym_block_comment, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63042] = 14, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4577), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2572), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2010), 2, + sym_line_comment, + sym_block_comment, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63087] = 10, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4458), 1, + anon_sym_trait, + ACTIONS(4579), 1, + anon_sym_impl, + STATE(210), 1, + sym_block, + STATE(3422), 1, + sym_label, + STATE(2011), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3281), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63124] = 14, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4581), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2012), 2, + sym_line_comment, + sym_block_comment, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63169] = 14, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4583), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2013), 2, + sym_line_comment, + sym_block_comment, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63214] = 14, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4585), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2014), 2, + sym_line_comment, + sym_block_comment, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63259] = 14, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4587), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2015), 2, + sym_line_comment, + sym_block_comment, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63304] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4501), 1, - anon_sym_LPAREN, - ACTIONS(3212), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2006), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4589), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3206), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3210), 5, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63121] = 5, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63349] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4520), 1, - anon_sym_DOT_DOT, - STATE(2007), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4591), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(4518), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - [63149] = 5, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63394] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4524), 1, - anon_sym_DOT_DOT, - STATE(2008), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4593), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(4522), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_DOT_DOT_DOT, - anon_sym_in, - anon_sym_DOT_DOT_EQ, - [63177] = 7, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63439] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4495), 1, - anon_sym_LPAREN, - ACTIONS(3232), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2009), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4595), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(3226), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3230), 5, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63209] = 7, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63484] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3204), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2010), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + ACTIONS(4597), 1, + anon_sym_GT, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3198), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4498), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3202), 5, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63241] = 7, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63529] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3204), 1, - anon_sym_DOT_DOT, - ACTIONS(4498), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2011), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4599), 1, + sym_identifier, + ACTIONS(4601), 1, + sym_metavariable, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1464), 1, + sym_attribute_item, + STATE(2374), 1, + sym_lifetime, + STATE(2626), 1, + sym_constrained_type_parameter, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3198), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3202), 6, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63273] = 7, + STATE(2798), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63571] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3212), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2012), 2, + ACTIONS(1052), 1, + aux_sym_string_literal_token1, + ACTIONS(4605), 1, + sym_crate, + STATE(2183), 1, + sym_string_literal, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3206), 3, + ACTIONS(4603), 8, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4501), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3210), 5, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [63305] = 10, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63601] = 9, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4423), 1, - anon_sym_trait, - ACTIONS(4526), 1, - anon_sym_impl, - STATE(207), 1, + ACTIONS(4607), 1, + anon_sym_move, + STATE(175), 1, sym_block, - STATE(3252), 1, + STATE(3422), 1, sym_label, - STATE(2013), 2, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, + ACTIONS(3281), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [63342] = 6, + [63635] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4530), 1, - anon_sym_COLON, - ACTIONS(4532), 1, - anon_sym_COLON_COLON, - STATE(2014), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(4528), 9, + ACTIONS(868), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [63370] = 11, + [63659] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4349), 1, + ACTIONS(4382), 1, anon_sym_COLON_COLON, - ACTIONS(4351), 1, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4534), 1, + ACTIONS(4609), 1, anon_sym_for, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(1940), 1, + STATE(1925), 1, sym_parameters, - STATE(2015), 2, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(3160), 4, + ACTIONS(3188), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [63408] = 6, + [63697] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3224), 1, + ACTIONS(3256), 1, anon_sym_DOT_DOT, - ACTIONS(3218), 2, + ACTIONS(3250), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2016), 2, + STATE(2026), 2, sym_line_comment, sym_block_comment, - ACTIONS(3222), 8, + ACTIONS(3254), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_COLON_COLON, @@ -165022,87 +163923,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [63436] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4538), 1, - anon_sym_COLON, - ACTIONS(4540), 1, - anon_sym_COLON_COLON, - STATE(2017), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4536), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [63464] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4478), 1, - anon_sym_COLON_COLON, - ACTIONS(4538), 1, - anon_sym_COLON, - STATE(2018), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4536), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [63492] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4538), 1, - anon_sym_COLON, - ACTIONS(4542), 1, - anon_sym_COLON_COLON, - STATE(2019), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4536), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [63520] = 7, + [63725] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1074), 1, + ACTIONS(1052), 1, aux_sym_string_literal_token1, - ACTIONS(4546), 1, + ACTIONS(4611), 1, sym_crate, - STATE(2185), 1, + STATE(2183), 1, sym_string_literal, - STATE(2020), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 8, + ACTIONS(4603), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -165111,199 +163946,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [63550] = 7, + [63755] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1074), 1, - aux_sym_string_literal_token1, - ACTIONS(4548), 1, - sym_crate, - STATE(2185), 1, - sym_string_literal, - STATE(2021), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4613), 1, + sym_identifier, + ACTIONS(4615), 1, + anon_sym_RBRACE, + ACTIONS(4617), 1, + anon_sym_COMMA, + ACTIONS(4619), 1, + anon_sym_DOT_DOT, + ACTIONS(4621), 1, + sym_integer_literal, + STATE(1464), 1, + sym_attribute_item, + STATE(2410), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2028), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63580] = 11, + STATE(2721), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [63795] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(3192), 1, + anon_sym_COLON, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4349), 1, + ACTIONS(4382), 1, anon_sym_COLON_COLON, - ACTIONS(4351), 1, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4550), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1940), 1, + ACTIONS(4623), 1, + anon_sym_EQ, + STATE(1925), 1, sym_parameters, - STATE(2022), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3160), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [63618] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4375), 1, - anon_sym_COLON, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(4379), 1, - anon_sym_BANG, - ACTIONS(4383), 1, - anon_sym_DOT_DOT, - STATE(1928), 1, + STATE(2324), 1, sym_type_arguments, - ACTIONS(4381), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2023), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(4373), 3, - anon_sym_RPAREN, + ACTIONS(3188), 3, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_PIPE, - [63656] = 11, + anon_sym_GT, + [63835] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4349), 1, + ACTIONS(4382), 1, anon_sym_COLON_COLON, - ACTIONS(4351), 1, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4552), 1, + ACTIONS(4625), 1, anon_sym_for, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(1940), 1, + STATE(1925), 1, sym_parameters, - STATE(2024), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(3160), 4, + ACTIONS(3188), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [63694] = 11, + [63873] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3228), 1, + anon_sym_DOT_DOT, + ACTIONS(3222), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2031), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3226), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [63901] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4349), 1, + ACTIONS(4382), 1, anon_sym_COLON_COLON, - ACTIONS(4351), 1, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4554), 1, + ACTIONS(4627), 1, anon_sym_for, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(1940), 1, + STATE(1925), 1, sym_parameters, - STATE(2025), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(3160), 4, + ACTIONS(3188), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [63732] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1074), 1, - aux_sym_string_literal_token1, - ACTIONS(4556), 1, - sym_crate, - STATE(2185), 1, - sym_string_literal, - STATE(2026), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4544), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63762] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4558), 1, - anon_sym_move, - STATE(166), 1, - sym_block, - STATE(3252), 1, - sym_label, - STATE(2027), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63796] = 6, + [63939] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3212), 1, + ACTIONS(3244), 1, anon_sym_DOT_DOT, - ACTIONS(3206), 2, + ACTIONS(3238), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2028), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3210), 8, + ACTIONS(3242), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_COLON_COLON, @@ -165312,127 +164100,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [63824] = 6, + [63967] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4532), 1, - anon_sym_COLON_COLON, - ACTIONS(4562), 1, - anon_sym_COLON, - STATE(2029), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4560), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4613), 1, + sym_identifier, + ACTIONS(4619), 1, + anon_sym_DOT_DOT, + ACTIONS(4621), 1, + sym_integer_literal, + ACTIONS(4629), 1, anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4631), 1, anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [63852] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2030), 2, + STATE(1464), 1, + sym_attribute_item, + STATE(2410), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(876), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [63876] = 7, + STATE(2754), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [64007] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1074), 1, - aux_sym_string_literal_token1, - ACTIONS(4564), 1, - sym_crate, - STATE(2185), 1, - sym_string_literal, - STATE(2031), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4561), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4567), 1, + sym_metavariable, + STATE(1464), 1, + sym_attribute_item, + STATE(2036), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2560), 1, + sym_lifetime, + STATE(2844), 1, + sym_constrained_type_parameter, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [63906] = 6, + STATE(3148), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64049] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4542), 1, - anon_sym_COLON_COLON, - ACTIONS(4568), 1, - anon_sym_COLON, - STATE(2032), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4633), 1, + sym_identifier, + ACTIONS(4635), 1, + sym_metavariable, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1464), 1, + sym_attribute_item, + STATE(2650), 1, + sym_lifetime, + STATE(2777), 1, + sym_constrained_type_parameter, + STATE(2036), 2, sym_line_comment, - sym_block_comment, - ACTIONS(4566), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [63934] = 4, + sym_block_comment, + STATE(3207), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64091] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2033), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4637), 1, + sym_identifier, + ACTIONS(4639), 1, + sym_metavariable, + STATE(1464), 1, + sym_attribute_item, + STATE(2044), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2445), 1, + sym_lifetime, + STATE(2714), 1, + sym_constrained_type_parameter, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(882), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [63958] = 6, + STATE(2715), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64133] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3232), 1, + ACTIONS(3220), 1, anon_sym_DOT_DOT, - ACTIONS(3226), 2, + ACTIONS(3214), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2034), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(3230), 8, + ACTIONS(3218), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_COLON_COLON, @@ -165441,15 +164237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [63986] = 4, + [64161] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2035), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(896), 11, + ACTIONS(850), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -165461,560 +164257,501 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64010] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4478), 1, - anon_sym_COLON_COLON, - ACTIONS(4568), 1, - anon_sym_COLON, - STATE(2036), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4566), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [64038] = 6, + [64185] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_COLON_COLON, - ACTIONS(4568), 1, - anon_sym_COLON, - STATE(2037), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4637), 1, + sym_identifier, + ACTIONS(4639), 1, + sym_metavariable, + STATE(1464), 1, + sym_attribute_item, + STATE(2044), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2337), 1, + sym_lifetime, + STATE(2714), 1, + sym_constrained_type_parameter, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(4566), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [64066] = 4, + STATE(2715), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64227] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2038), 2, + ACTIONS(1052), 1, + aux_sym_string_literal_token1, + ACTIONS(4641), 1, + sym_crate, + STATE(2183), 1, + sym_string_literal, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(890), 11, + ACTIONS(4603), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [64090] = 11, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64257] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4349), 1, + ACTIONS(4382), 1, anon_sym_COLON_COLON, - ACTIONS(4351), 1, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4570), 1, + ACTIONS(4643), 1, anon_sym_for, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(1940), 1, + STATE(1925), 1, sym_parameters, - STATE(2039), 2, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3160), 4, + ACTIONS(3188), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [64128] = 6, + [64295] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3204), 1, - anon_sym_DOT_DOT, - ACTIONS(3198), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2040), 2, + ACTIONS(1052), 1, + aux_sym_string_literal_token1, + ACTIONS(4645), 1, + sym_crate, + STATE(2183), 1, + sym_string_literal, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3202), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [64156] = 11, + ACTIONS(4603), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64325] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4349), 1, - anon_sym_COLON_COLON, - ACTIONS(4351), 1, - anon_sym_BANG, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4572), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(1940), 1, - sym_parameters, - STATE(2041), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + sym_metavariable, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1464), 1, + sym_attribute_item, + STATE(2440), 1, + sym_lifetime, + STATE(2494), 1, + sym_constrained_type_parameter, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3160), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64194] = 4, + STATE(2978), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64367] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2042), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(2896), 1, + anon_sym_SQUOTE, + ACTIONS(4565), 1, + anon_sym_const, + ACTIONS(4651), 1, + sym_identifier, + ACTIONS(4653), 1, + sym_metavariable, + STATE(1464), 1, + sym_attribute_item, + STATE(2021), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2381), 1, + sym_lifetime, + STATE(2699), 1, + sym_constrained_type_parameter, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(886), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [64218] = 11, + STATE(2732), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64409] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4349), 1, + ACTIONS(4382), 1, anon_sym_COLON_COLON, - ACTIONS(4351), 1, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4574), 1, + ACTIONS(4655), 1, anon_sym_for, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(1940), 1, + STATE(1925), 1, sym_parameters, - STATE(2043), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3160), 4, + ACTIONS(3188), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [64256] = 11, + [64447] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4349), 1, + ACTIONS(4382), 1, anon_sym_COLON_COLON, - ACTIONS(4351), 1, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4576), 1, + ACTIONS(4657), 1, anon_sym_for, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(1940), 1, + STATE(1925), 1, sym_parameters, - STATE(2044), 2, + STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3160), 4, + ACTIONS(3188), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [64294] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [64485] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4578), 1, - sym_identifier, - STATE(170), 1, - sym_block, - STATE(3252), 1, - sym_label, - STATE(2045), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(4580), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64328] = 8, + ACTIONS(864), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_else, + anon_sym_in, + [64509] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3170), 1, - anon_sym_LT2, - ACTIONS(3394), 1, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, anon_sym_COLON_COLON, - ACTIONS(4582), 1, + ACTIONS(4384), 1, anon_sym_BANG, - STATE(1052), 1, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4659), 1, + anon_sym_for, + STATE(1921), 1, sym_type_arguments, - STATE(2046), 2, + STATE(1925), 1, + sym_parameters, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64359] = 4, + ACTIONS(3188), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64547] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2047), 2, + ACTIONS(4663), 1, + anon_sym_COLON, + ACTIONS(4665), 1, + anon_sym_COLON_COLON, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(4584), 10, + ACTIONS(4661), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64382] = 4, + [64575] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2048), 2, + ACTIONS(4669), 1, + anon_sym_COLON, + ACTIONS(4671), 1, + anon_sym_COLON_COLON, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(4586), 10, + ACTIONS(4667), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64405] = 10, + [64603] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4588), 1, - anon_sym_COLON_COLON, - ACTIONS(4590), 1, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4412), 1, anon_sym_BANG, - ACTIONS(4594), 1, + ACTIONS(4416), 1, anon_sym_DOT_DOT, - STATE(1928), 1, + ACTIONS(4418), 1, + anon_sym_COLON_COLON, + STATE(1918), 1, sym_type_arguments, - ACTIONS(4592), 2, + ACTIONS(4414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2049), 2, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(4373), 3, - anon_sym_EQ_GT, + ACTIONS(4406), 3, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_if, - [64440] = 4, + [64641] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2050), 2, + ACTIONS(4513), 1, + anon_sym_COLON_COLON, + ACTIONS(4669), 1, + anon_sym_COLON, + STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(4355), 10, + ACTIONS(4667), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64463] = 4, + [64669] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2051), 2, + ACTIONS(4669), 1, + anon_sym_COLON, + ACTIONS(4673), 1, + anon_sym_COLON_COLON, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(4566), 10, + ACTIONS(4667), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64486] = 8, + [64697] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4379), 1, - anon_sym_BANG, - ACTIONS(4439), 1, + ACTIONS(4665), 1, anon_sym_COLON_COLON, - STATE(1928), 1, - sym_type_arguments, - STATE(2052), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64517] = 13, - ACTIONS(65), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4596), 1, - sym_identifier, - ACTIONS(4598), 1, - anon_sym_RBRACE, - ACTIONS(4600), 1, - anon_sym_COMMA, - ACTIONS(4602), 1, - sym_crate, - STATE(1494), 1, - sym_attribute_item, - STATE(2176), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2690), 1, - sym_field_declaration, - STATE(3405), 1, - sym_visibility_modifier, - STATE(2053), 2, - sym_line_comment, - sym_block_comment, - [64558] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4604), 1, - sym_identifier, - ACTIONS(4606), 1, - anon_sym_RBRACE, - ACTIONS(4608), 1, - anon_sym_COMMA, - ACTIONS(4610), 1, - anon_sym_DOT_DOT, - STATE(1494), 1, - sym_attribute_item, - STATE(2477), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2054), 2, - sym_line_comment, - sym_block_comment, - STATE(2734), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [64595] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, + ACTIONS(4677), 1, + anon_sym_COLON, STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(4612), 10, + ACTIONS(4675), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64618] = 13, - ACTIONS(65), 1, - anon_sym_pub, + [64725] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4602), 1, - sym_crate, - ACTIONS(4614), 1, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4679), 1, sym_identifier, - ACTIONS(4616), 1, - anon_sym_RBRACE, - ACTIONS(4618), 1, - anon_sym_COMMA, - STATE(1494), 1, - sym_attribute_item, - STATE(2155), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2930), 1, - sym_enum_variant, - STATE(3455), 1, - sym_visibility_modifier, + STATE(179), 1, + sym_block, + STATE(3422), 1, + sym_label, STATE(2056), 2, sym_line_comment, sym_block_comment, - [64659] = 4, + ACTIONS(4681), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64759] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4673), 1, + anon_sym_COLON_COLON, + ACTIONS(4685), 1, + anon_sym_COLON, STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(4620), 10, + ACTIONS(4683), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64682] = 13, - ACTIONS(65), 1, - anon_sym_pub, + [64787] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4602), 1, - sym_crate, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4622), 1, - anon_sym_RBRACE, - ACTIONS(4624), 1, - anon_sym_COMMA, - STATE(1494), 1, - sym_attribute_item, - STATE(2167), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2749), 1, - sym_enum_variant, - STATE(3455), 1, - sym_visibility_modifier, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4382), 1, + anon_sym_COLON_COLON, + ACTIONS(4384), 1, + anon_sym_BANG, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4687), 1, + anon_sym_for, + STATE(1921), 1, + sym_type_arguments, + STATE(1925), 1, + sym_parameters, STATE(2058), 2, sym_line_comment, sym_block_comment, - [64723] = 4, + ACTIONS(3188), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64825] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4513), 1, + anon_sym_COLON_COLON, + ACTIONS(4685), 1, + anon_sym_COLON, STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 10, + ACTIONS(4683), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64746] = 4, + [64853] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166022,7 +164759,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(4628), 10, + ACTIONS(854), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166030,10 +164767,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64769] = 4, + [64877] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166041,7 +164779,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(4630), 10, + ACTIONS(858), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166049,33 +164787,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_EQ, anon_sym_COMMA, + anon_sym_GT, anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64792] = 8, + [64901] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3692), 1, - anon_sym_LT2, - ACTIONS(3957), 1, + ACTIONS(4671), 1, anon_sym_COLON_COLON, - ACTIONS(4632), 1, - anon_sym_BANG, - STATE(1545), 1, - sym_type_arguments, + ACTIONS(4685), 1, + anon_sym_COLON, STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64823] = 4, + ACTIONS(4683), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_else, + anon_sym_in, + [64929] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166083,7 +164821,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(4634), 10, + ACTIONS(4689), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166094,7 +164832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64846] = 4, + [64952] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166102,7 +164840,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(4636), 10, + ACTIONS(4691), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166113,7 +164851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64869] = 4, + [64975] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166121,7 +164859,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(4638), 10, + ACTIONS(4693), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166132,7 +164870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64892] = 4, + [64998] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166140,7 +164878,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(4640), 10, + ACTIONS(4695), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166151,7 +164889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64915] = 4, + [65021] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166159,7 +164897,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(4642), 10, + ACTIONS(4697), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166170,7 +164908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64938] = 4, + [65044] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166178,7 +164916,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(4644), 10, + ACTIONS(4699), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166189,32 +164927,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [64961] = 10, + [65067] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, - anon_sym_BANG, - ACTIONS(4357), 1, - anon_sym_LPAREN, - ACTIONS(4361), 1, - anon_sym_COLON, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - ACTIONS(4646), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(4355), 3, + ACTIONS(4683), 10, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, - [64996] = 4, + anon_sym_else, + anon_sym_in, + [65090] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166222,7 +164954,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(4648), 10, + ACTIONS(4701), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166233,43 +164965,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65019] = 13, - ACTIONS(65), 1, - anon_sym_pub, + [65113] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4596), 1, - sym_identifier, - ACTIONS(4602), 1, - sym_crate, - ACTIONS(4650), 1, - anon_sym_RBRACE, - ACTIONS(4652), 1, - anon_sym_COMMA, - STATE(1494), 1, - sym_attribute_item, - STATE(2184), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2775), 1, - sym_field_declaration, - STATE(3405), 1, - sym_visibility_modifier, STATE(2071), 2, sym_line_comment, sym_block_comment, - [65060] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2072), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4654), 10, + ACTIONS(4703), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166280,15 +164984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65083] = 4, + [65136] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2073), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(4656), 10, + ACTIONS(4705), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166299,26 +165003,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65106] = 4, + [65159] = 13, + ACTIONS(65), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2074), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4707), 1, + sym_identifier, + ACTIONS(4709), 1, + anon_sym_RBRACE, + ACTIONS(4711), 1, + anon_sym_COMMA, + ACTIONS(4713), 1, + sym_crate, + STATE(1464), 1, + sym_attribute_item, + STATE(2168), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2999), 1, + sym_field_declaration, + STATE(3508), 1, + sym_visibility_modifier, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(4658), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + [65200] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4613), 1, + sym_identifier, + ACTIONS(4619), 1, + anon_sym_DOT_DOT, + ACTIONS(4621), 1, + sym_integer_literal, + ACTIONS(4715), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_else, - anon_sym_in, - [65129] = 4, + STATE(1464), 1, + sym_attribute_item, + STATE(2410), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2074), 2, + sym_line_comment, + sym_block_comment, + STATE(3234), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65237] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166326,7 +165065,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(4660), 10, + ACTIONS(4717), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166337,30 +165076,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65152] = 8, + [65260] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1606), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(2081), 1, - sym_block, - STATE(3501), 1, - sym_label, + ACTIONS(4384), 1, + anon_sym_BANG, + ACTIONS(4392), 1, + anon_sym_LPAREN, + ACTIONS(4396), 1, + anon_sym_COLON, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(4719), 1, + anon_sym_COLON_COLON, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65183] = 4, + ACTIONS(4390), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [65295] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166368,7 +165109,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(4662), 10, + ACTIONS(4721), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166379,58 +165120,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65206] = 11, + [65318] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4349), 1, - anon_sym_COLON_COLON, - ACTIONS(4351), 1, - anon_sym_BANG, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4664), 1, - anon_sym_EQ, - STATE(1940), 1, - sym_parameters, - STATE(2386), 1, - sym_type_arguments, STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3160), 3, - anon_sym_PLUS, + ACTIONS(4723), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_GT, - [65243] = 10, + anon_sym_PIPE, + anon_sym_else, + anon_sym_in, + [65341] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4379), 1, - anon_sym_BANG, - ACTIONS(4383), 1, - anon_sym_DOT_DOT, - ACTIONS(4468), 1, - anon_sym_COLON_COLON, - STATE(1928), 1, - sym_type_arguments, - ACTIONS(4381), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4373), 3, + ACTIONS(4725), 10, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, - [65278] = 4, + anon_sym_else, + anon_sym_in, + [65364] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166438,7 +165166,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(4666), 10, + ACTIONS(4727), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166449,7 +165177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65301] = 4, + [65387] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166457,7 +165185,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(904), 10, + ACTIONS(4729), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166468,33 +165196,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65324] = 11, + [65410] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4604), 1, - sym_identifier, - ACTIONS(4610), 1, - anon_sym_DOT_DOT, - ACTIONS(4668), 1, - anon_sym_RBRACE, - ACTIONS(4670), 1, - anon_sym_COMMA, - STATE(1494), 1, - sym_attribute_item, - STATE(2477), 1, - aux_sym_enum_variant_list_repeat1, STATE(2082), 2, sym_line_comment, sym_block_comment, - STATE(2700), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65361] = 4, + ACTIONS(4731), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_else, + anon_sym_in, + [65433] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166502,7 +165223,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(4672), 10, + ACTIONS(4733), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166513,7 +165234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65384] = 4, + [65456] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166521,7 +165242,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 10, + ACTIONS(4667), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166532,7 +165253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65407] = 4, + [65479] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166540,7 +165261,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(4676), 10, + ACTIONS(4735), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166551,7 +165272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65430] = 4, + [65502] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166559,7 +165280,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(4678), 10, + ACTIONS(4737), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166570,7 +165291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65453] = 4, + [65525] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166578,7 +165299,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(4536), 10, + ACTIONS(4739), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166589,7 +165310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65476] = 4, + [65548] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166597,7 +165318,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2088), 2, sym_line_comment, sym_block_comment, - ACTIONS(4680), 10, + ACTIONS(4741), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166608,7 +165329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65499] = 4, + [65571] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166616,7 +165337,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(4682), 10, + ACTIONS(4743), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166627,7 +165348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65522] = 4, + [65594] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166635,7 +165356,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2090), 2, sym_line_comment, sym_block_comment, - ACTIONS(4684), 10, + ACTIONS(4745), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166646,15 +165367,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65545] = 4, + [65617] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4613), 1, + sym_identifier, + ACTIONS(4619), 1, + anon_sym_DOT_DOT, + ACTIONS(4621), 1, + sym_integer_literal, + ACTIONS(4747), 1, + anon_sym_RBRACE, + STATE(1464), 1, + sym_attribute_item, + STATE(2410), 1, + aux_sym_enum_variant_list_repeat1, STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(4686), 10, + STATE(3234), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65654] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2092), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4749), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166665,39 +165412,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65568] = 9, + [65677] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3198), 1, + anon_sym_LT2, + ACTIONS(3421), 1, + anon_sym_COLON_COLON, + ACTIONS(4751), 1, + anon_sym_BANG, + STATE(1071), 1, + sym_type_arguments, + STATE(2093), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3281), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65708] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4613), 1, + sym_identifier, + ACTIONS(4619), 1, + anon_sym_DOT_DOT, + ACTIONS(4621), 1, + sym_integer_literal, + ACTIONS(4753), 1, + anon_sym_RBRACE, + STATE(1464), 1, + sym_attribute_item, + STATE(2410), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2094), 2, + sym_line_comment, + sym_block_comment, + STATE(3234), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65745] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4688), 1, + ACTIONS(4755), 1, anon_sym_LBRACE, - STATE(1929), 1, + STATE(1922), 1, sym_type_arguments, - STATE(1950), 1, + STATE(1938), 1, sym_parameters, - STATE(2092), 2, + STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 5, + ACTIONS(3234), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_PLUS, anon_sym_COMMA, - [65601] = 4, + [65778] = 13, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4713), 1, + sym_crate, + ACTIONS(4757), 1, + sym_identifier, + ACTIONS(4759), 1, + anon_sym_RBRACE, + ACTIONS(4761), 1, + anon_sym_COMMA, + STATE(1464), 1, + sym_attribute_item, + STATE(2203), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2926), 1, + sym_enum_variant, + STATE(3476), 1, + sym_visibility_modifier, + STATE(2096), 2, + sym_line_comment, + sym_block_comment, + [65819] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2093), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4412), 1, + anon_sym_BANG, + ACTIONS(4416), 1, + anon_sym_DOT_DOT, + ACTIONS(4505), 1, + anon_sym_COLON_COLON, + STATE(1918), 1, + sym_type_arguments, + ACTIONS(4414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2097), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4406), 3, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_PIPE, + [65854] = 13, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4713), 1, + sym_crate, + ACTIONS(4757), 1, + sym_identifier, + ACTIONS(4763), 1, + anon_sym_RBRACE, + ACTIONS(4765), 1, + anon_sym_COMMA, + STATE(1464), 1, + sym_attribute_item, + STATE(2164), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2785), 1, + sym_enum_variant, + STATE(3476), 1, + sym_visibility_modifier, + STATE(2098), 2, + sym_line_comment, + sym_block_comment, + [65895] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 10, + ACTIONS(4767), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -166708,630 +165585,585 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_else, anon_sym_in, - [65624] = 11, + [65918] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_SQUOTE, - ACTIONS(4692), 1, - sym_identifier, - ACTIONS(4694), 1, - anon_sym_GT, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4698), 1, - sym_metavariable, - STATE(2634), 1, - sym_lifetime, - STATE(2932), 1, - sym_constrained_type_parameter, - STATE(2094), 2, + STATE(2100), 2, sym_line_comment, sym_block_comment, - STATE(3078), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65660] = 12, + ACTIONS(4390), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_else, + anon_sym_in, + [65941] = 13, ACTIONS(65), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4602), 1, - sym_crate, - ACTIONS(4614), 1, + ACTIONS(4707), 1, sym_identifier, - ACTIONS(4700), 1, + ACTIONS(4713), 1, + sym_crate, + ACTIONS(4769), 1, anon_sym_RBRACE, - STATE(1494), 1, + ACTIONS(4771), 1, + anon_sym_COMMA, + STATE(1464), 1, sym_attribute_item, - STATE(2183), 1, + STATE(2166), 1, aux_sym_enum_variant_list_repeat1, - STATE(3211), 1, - sym_enum_variant, - STATE(3455), 1, + STATE(2815), 1, + sym_field_declaration, + STATE(3508), 1, sym_visibility_modifier, - STATE(2095), 2, + STATE(2101), 2, sym_line_comment, sym_block_comment, - [65698] = 7, + [65982] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4702), 1, - anon_sym_SEMI, - ACTIONS(4704), 1, + ACTIONS(1532), 1, anon_sym_LBRACE, - STATE(524), 1, - sym_declaration_list, - STATE(2096), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(2103), 1, + sym_block, + STATE(3543), 1, + sym_label, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, + ACTIONS(3281), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65726] = 9, + [66013] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4706), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(1950), 1, - sym_parameters, - STATE(2097), 2, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 4, + ACTIONS(916), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65758] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4708), 1, - anon_sym_LPAREN, - ACTIONS(4713), 1, - anon_sym_LBRACK, - ACTIONS(4716), 1, - anon_sym_LBRACE, - STATE(3397), 1, - sym_macro_rule, - STATE(3511), 1, - sym_token_tree_pattern, - ACTIONS(4711), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2098), 3, - sym_line_comment, - sym_block_comment, - aux_sym_macro_definition_repeat1, - [65790] = 7, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_else, + anon_sym_in, + [66036] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4719), 1, + ACTIONS(4773), 1, anon_sym_COLON_COLON, - STATE(1928), 1, + ACTIONS(4775), 1, + anon_sym_BANG, + ACTIONS(4779), 1, + anon_sym_DOT_DOT, + STATE(1918), 1, sym_type_arguments, - STATE(2099), 2, + ACTIONS(4777), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65818] = 5, + ACTIONS(4406), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [66071] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3232), 1, - anon_sym_DOT_DOT, - STATE(2100), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(3230), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_BANG, + ACTIONS(4781), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [65842] = 5, + anon_sym_else, + anon_sym_in, + [66094] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3204), 1, - anon_sym_DOT_DOT, - STATE(2101), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(3202), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_BANG, + ACTIONS(4783), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [65866] = 9, + anon_sym_else, + anon_sym_in, + [66117] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, - anon_sym_BANG, - ACTIONS(4357), 1, - anon_sym_LPAREN, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - ACTIONS(4721), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2102), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(4355), 3, + ACTIONS(4785), 10, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, anon_sym_COMMA, anon_sym_PIPE, - [65898] = 12, + anon_sym_else, + anon_sym_in, + [66140] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4723), 1, - anon_sym_SEMI, - ACTIONS(4725), 1, - anon_sym_LPAREN, - ACTIONS(4727), 1, - anon_sym_LBRACE, - ACTIONS(4729), 1, - anon_sym_LT, - ACTIONS(4731), 1, - anon_sym_where, - STATE(1301), 1, - sym_field_declaration_list, - STATE(2243), 1, - sym_type_parameters, - STATE(2736), 1, - sym_ordered_field_declaration_list, - STATE(3075), 1, - sym_where_clause, - STATE(2103), 2, + ACTIONS(3896), 1, + anon_sym_LT2, + ACTIONS(4032), 1, + anon_sym_COLON_COLON, + ACTIONS(4787), 1, + anon_sym_BANG, + STATE(1606), 1, + sym_type_arguments, + STATE(2108), 2, sym_line_comment, sym_block_comment, - [65936] = 12, - ACTIONS(65), 1, - anon_sym_pub, + ACTIONS(3281), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66171] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4602), 1, - sym_crate, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4733), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2183), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3211), 1, - sym_enum_variant, - STATE(3455), 1, - sym_visibility_modifier, - STATE(2104), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - [65974] = 5, + ACTIONS(4789), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_else, + anon_sym_in, + [66194] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3212), 1, - anon_sym_DOT_DOT, - STATE(2105), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(3210), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_COLON_COLON, - anon_sym_BANG, + ACTIONS(4791), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [65998] = 12, - ACTIONS(65), 1, - anon_sym_pub, + anon_sym_else, + anon_sym_in, + [66217] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4596), 1, - sym_identifier, - ACTIONS(4602), 1, - sym_crate, - ACTIONS(4735), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2179), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3170), 1, - sym_field_declaration, - STATE(3405), 1, - sym_visibility_modifier, - STATE(2106), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - [66036] = 12, - ACTIONS(65), 1, - anon_sym_pub, + ACTIONS(4793), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_else, + anon_sym_in, + [66240] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4596), 1, - sym_identifier, - ACTIONS(4602), 1, - sym_crate, - ACTIONS(4737), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2179), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3170), 1, - sym_field_declaration, - STATE(3405), 1, - sym_visibility_modifier, - STATE(2107), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - [66074] = 10, + ACTIONS(4795), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_PIPE, + anon_sym_else, + anon_sym_in, + [66263] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4604), 1, - sym_identifier, - ACTIONS(4610), 1, - anon_sym_DOT_DOT, - ACTIONS(4739), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2477), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2108), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4412), 1, + anon_sym_BANG, + ACTIONS(4495), 1, + anon_sym_COLON_COLON, + STATE(1918), 1, + sym_type_arguments, + STATE(2113), 2, sym_line_comment, sym_block_comment, - STATE(2982), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66108] = 12, - ACTIONS(65), 1, - anon_sym_pub, + ACTIONS(3281), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66294] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4602), 1, - sym_crate, - ACTIONS(4614), 1, + ACTIONS(4613), 1, sym_identifier, - ACTIONS(4741), 1, + ACTIONS(4619), 1, + anon_sym_DOT_DOT, + ACTIONS(4621), 1, + sym_integer_literal, + ACTIONS(4797), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1464), 1, sym_attribute_item, - STATE(2183), 1, + STATE(2410), 1, aux_sym_enum_variant_list_repeat1, - STATE(3211), 1, - sym_enum_variant, - STATE(3455), 1, - sym_visibility_modifier, - STATE(2109), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, - [66146] = 12, + STATE(3234), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66331] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, - anon_sym_LPAREN, - ACTIONS(4727), 1, - anon_sym_LBRACE, - ACTIONS(4729), 1, - anon_sym_LT, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4743), 1, - anon_sym_SEMI, - STATE(1179), 1, - sym_field_declaration_list, - STATE(2263), 1, - sym_type_parameters, - STATE(2795), 1, - sym_ordered_field_declaration_list, - STATE(3216), 1, - sym_where_clause, - STATE(2110), 2, + ACTIONS(3256), 1, + anon_sym_DOT_DOT, + STATE(2115), 2, sym_line_comment, sym_block_comment, - [66184] = 11, + ACTIONS(3254), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [66355] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_SQUOTE, - ACTIONS(4692), 1, - sym_identifier, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4698), 1, - sym_metavariable, - ACTIONS(4745), 1, - anon_sym_GT, - STATE(2634), 1, - sym_lifetime, - STATE(2932), 1, - sym_constrained_type_parameter, - STATE(2111), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4799), 1, + anon_sym_for, + STATE(1922), 1, + sym_type_arguments, + STATE(1938), 1, + sym_parameters, + STATE(2116), 2, sym_line_comment, sym_block_comment, - STATE(3078), 2, - sym_const_parameter, - sym_optional_type_parameter, - [66220] = 7, + ACTIONS(3234), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66387] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3170), 1, - anon_sym_LT2, - ACTIONS(4747), 1, + ACTIONS(4406), 1, + anon_sym_PIPE, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4416), 1, + anon_sym_DOT_DOT, + ACTIONS(4511), 1, anon_sym_COLON_COLON, - STATE(1052), 1, - sym_type_arguments, - STATE(2112), 2, + ACTIONS(4414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66248] = 12, + ACTIONS(3234), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [66419] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, + ACTIONS(4801), 1, + anon_sym_SEMI, + ACTIONS(4803), 1, anon_sym_LPAREN, - ACTIONS(4729), 1, + ACTIONS(4805), 1, + anon_sym_LBRACE, + ACTIONS(4807), 1, anon_sym_LT, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4749), 1, - anon_sym_SEMI, - ACTIONS(4751), 1, - anon_sym_LBRACE, - STATE(572), 1, + STATE(494), 1, sym_field_declaration_list, - STATE(2240), 1, + STATE(2264), 1, sym_type_parameters, - STATE(2789), 1, + STATE(2725), 1, sym_ordered_field_declaration_list, - STATE(3199), 1, + STATE(3281), 1, sym_where_clause, - STATE(2113), 2, + STATE(2118), 2, sym_line_comment, sym_block_comment, - [66286] = 7, + [66457] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4753), 1, + ACTIONS(3228), 1, + anon_sym_DOT_DOT, + STATE(2119), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3226), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [66481] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4811), 1, anon_sym_SEMI, - STATE(705), 1, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1177), 1, sym_declaration_list, - STATE(2114), 2, + STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, + ACTIONS(3281), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66314] = 11, + [66509] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_SQUOTE, - ACTIONS(4692), 1, - sym_identifier, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4698), 1, - sym_metavariable, - ACTIONS(4755), 1, - anon_sym_GT, - STATE(2634), 1, - sym_lifetime, - STATE(2932), 1, - sym_constrained_type_parameter, - STATE(2115), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4815), 1, + anon_sym_for, + STATE(1922), 1, + sym_type_arguments, + STATE(1938), 1, + sym_parameters, + STATE(2121), 2, sym_line_comment, sym_block_comment, - STATE(3078), 2, - sym_const_parameter, - sym_optional_type_parameter, - [66350] = 7, + ACTIONS(3234), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66541] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3692), 1, - anon_sym_LT2, - ACTIONS(4757), 1, - anon_sym_COLON_COLON, - STATE(1545), 1, - sym_type_arguments, - STATE(2116), 2, + ACTIONS(3244), 1, + anon_sym_DOT_DOT, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66378] = 11, + ACTIONS(3242), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [66565] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_SQUOTE, - ACTIONS(4692), 1, - sym_identifier, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4698), 1, - sym_metavariable, - ACTIONS(4759), 1, - anon_sym_GT, - STATE(2634), 1, - sym_lifetime, - STATE(2932), 1, - sym_constrained_type_parameter, - STATE(2117), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4817), 1, + anon_sym_for, + STATE(1922), 1, + sym_type_arguments, + STATE(1938), 1, + sym_parameters, + STATE(2123), 2, sym_line_comment, sym_block_comment, - STATE(3078), 2, - sym_const_parameter, - sym_optional_type_parameter, - [66414] = 11, + ACTIONS(3234), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66597] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_SQUOTE, - ACTIONS(4692), 1, - sym_identifier, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4698), 1, - sym_metavariable, - ACTIONS(4761), 1, - anon_sym_GT, - STATE(2634), 1, - sym_lifetime, - STATE(2932), 1, - sym_constrained_type_parameter, - STATE(2118), 2, + ACTIONS(4803), 1, + anon_sym_LPAREN, + ACTIONS(4807), 1, + anon_sym_LT, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4819), 1, + anon_sym_SEMI, + ACTIONS(4821), 1, + anon_sym_LBRACE, + STATE(1122), 1, + sym_field_declaration_list, + STATE(2231), 1, + sym_type_parameters, + STATE(2726), 1, + sym_ordered_field_declaration_list, + STATE(3278), 1, + sym_where_clause, + STATE(2124), 2, sym_line_comment, sym_block_comment, - STATE(3078), 2, - sym_const_parameter, - sym_optional_type_parameter, - [66450] = 10, + [66635] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4604), 1, - sym_identifier, - ACTIONS(4610), 1, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4406), 1, + anon_sym_PIPE, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4412), 1, + anon_sym_BANG, + ACTIONS(4416), 1, anon_sym_DOT_DOT, - ACTIONS(4763), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2477), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2119), 2, + ACTIONS(4511), 1, + anon_sym_COLON_COLON, + STATE(1918), 1, + sym_type_arguments, + ACTIONS(4414), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2125), 2, sym_line_comment, sym_block_comment, - STATE(2982), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66484] = 5, + [66671] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4767), 1, + ACTIONS(4825), 1, anon_sym_PLUS, - STATE(2120), 3, + STATE(2135), 1, + aux_sym_trait_bounds_repeat1, + STATE(2126), 2, sym_line_comment, sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(4765), 7, + ACTIONS(4823), 7, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_EQ, @@ -167339,1477 +166171,1321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SQUOTE, anon_sym_where, - [66508] = 9, + [66697] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4770), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(1950), 1, - sym_parameters, - STATE(2121), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3194), 4, + ACTIONS(4827), 1, anon_sym_SEMI, + ACTIONS(4829), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66540] = 9, + STATE(640), 1, + sym_declaration_list, + STATE(2127), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3281), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66725] = 12, + ACTIONS(65), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4772), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(1950), 1, - sym_parameters, - STATE(2122), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4707), 1, + sym_identifier, + ACTIONS(4713), 1, + sym_crate, + ACTIONS(4831), 1, + anon_sym_RBRACE, + STATE(1464), 1, + sym_attribute_item, + STATE(2190), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3172), 1, + sym_field_declaration, + STATE(3508), 1, + sym_visibility_modifier, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66572] = 7, + [66763] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4774), 1, - anon_sym_SEMI, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - STATE(1418), 1, + ACTIONS(4833), 1, + anon_sym_SEMI, + STATE(535), 1, sym_declaration_list, - STATE(2123), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, + ACTIONS(3281), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66600] = 12, + [66791] = 12, ACTIONS(65), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4602), 1, + ACTIONS(4713), 1, sym_crate, - ACTIONS(4614), 1, + ACTIONS(4757), 1, sym_identifier, - ACTIONS(4778), 1, + ACTIONS(4835), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1464), 1, sym_attribute_item, - STATE(2183), 1, + STATE(2192), 1, aux_sym_enum_variant_list_repeat1, - STATE(3211), 1, + STATE(3218), 1, sym_enum_variant, - STATE(3455), 1, + STATE(3476), 1, sym_visibility_modifier, - STATE(2124), 2, - sym_line_comment, - sym_block_comment, - [66638] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_SQUOTE, - ACTIONS(4692), 1, - sym_identifier, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4698), 1, - sym_metavariable, - ACTIONS(4780), 1, - anon_sym_GT, - STATE(2634), 1, - sym_lifetime, - STATE(2932), 1, - sym_constrained_type_parameter, - STATE(2125), 2, + STATE(2130), 2, sym_line_comment, sym_block_comment, - STATE(3078), 2, - sym_const_parameter, - sym_optional_type_parameter, - [66674] = 10, + [66829] = 12, + ACTIONS(65), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4604), 1, + ACTIONS(4713), 1, + sym_crate, + ACTIONS(4757), 1, sym_identifier, - ACTIONS(4610), 1, - anon_sym_DOT_DOT, - ACTIONS(4782), 1, + ACTIONS(4837), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1464), 1, sym_attribute_item, - STATE(2477), 1, + STATE(2192), 1, aux_sym_enum_variant_list_repeat1, - STATE(2126), 2, + STATE(3218), 1, + sym_enum_variant, + STATE(3476), 1, + sym_visibility_modifier, + STATE(2131), 2, sym_line_comment, sym_block_comment, - STATE(2982), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66708] = 11, + [66867] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_SQUOTE, - ACTIONS(4692), 1, - sym_identifier, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4698), 1, - sym_metavariable, - ACTIONS(4784), 1, - anon_sym_GT, - STATE(2634), 1, - sym_lifetime, - STATE(2932), 1, - sym_constrained_type_parameter, - STATE(2127), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4839), 1, + anon_sym_for, + STATE(1922), 1, + sym_type_arguments, + STATE(1938), 1, + sym_parameters, + STATE(2132), 2, sym_line_comment, sym_block_comment, - STATE(3078), 2, - sym_const_parameter, - sym_optional_type_parameter, - [66744] = 11, + ACTIONS(3234), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [66899] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_SQUOTE, - ACTIONS(4692), 1, - sym_identifier, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4698), 1, - sym_metavariable, - ACTIONS(4786), 1, - anon_sym_GT, - STATE(2473), 1, - sym_lifetime, - STATE(2932), 1, - sym_constrained_type_parameter, - STATE(2128), 2, + ACTIONS(4843), 1, + anon_sym_PLUS, + STATE(2126), 1, + aux_sym_trait_bounds_repeat1, + STATE(2133), 2, sym_line_comment, sym_block_comment, - STATE(3078), 2, - sym_const_parameter, - sym_optional_type_parameter, - [66780] = 9, + ACTIONS(4841), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [66925] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4504), 1, - anon_sym_LPAREN, - ACTIONS(4510), 1, + ACTIONS(4384), 1, anon_sym_BANG, - ACTIONS(4516), 1, + ACTIONS(4392), 1, + anon_sym_LPAREN, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4788), 1, + ACTIONS(4845), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 2, + ACTIONS(4402), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2129), 2, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(4355), 3, - anon_sym_EQ_GT, + ACTIONS(4390), 3, + anon_sym_RBRACK, + anon_sym_COMMA, anon_sym_PIPE, - anon_sym_if, - [66812] = 11, + [66957] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4373), 1, - anon_sym_PIPE, - ACTIONS(4375), 1, - anon_sym_COLON, - ACTIONS(4379), 1, - anon_sym_BANG, - ACTIONS(4383), 1, - anon_sym_DOT_DOT, - ACTIONS(4476), 1, - anon_sym_COLON_COLON, - STATE(1928), 1, - sym_type_arguments, - ACTIONS(4381), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2130), 2, + ACTIONS(4849), 1, + anon_sym_PLUS, + STATE(2135), 3, sym_line_comment, sym_block_comment, - [66848] = 7, + aux_sym_trait_bounds_repeat1, + ACTIONS(4847), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [66981] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(4790), 1, - anon_sym_SEMI, - STATE(1281), 1, - sym_declaration_list, - STATE(2131), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4852), 1, + anon_sym_for, + STATE(1922), 1, + sym_type_arguments, + STATE(1938), 1, + sym_parameters, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66876] = 12, - ACTIONS(65), 1, - anon_sym_pub, + ACTIONS(3234), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67013] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4602), 1, - sym_crate, - ACTIONS(4614), 1, - sym_identifier, - ACTIONS(4792), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2183), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3211), 1, - sym_enum_variant, - STATE(3455), 1, - sym_visibility_modifier, - STATE(2132), 2, + ACTIONS(4854), 1, + anon_sym_PLUS, + STATE(2126), 1, + aux_sym_trait_bounds_repeat1, + STATE(2137), 2, sym_line_comment, sym_block_comment, - [66914] = 9, + ACTIONS(4841), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [67039] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4794), 1, + ACTIONS(4856), 1, anon_sym_for, - STATE(1929), 1, + STATE(1922), 1, sym_type_arguments, - STATE(1950), 1, + STATE(1938), 1, sym_parameters, - STATE(2133), 2, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 4, + ACTIONS(3234), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [66946] = 12, + [67071] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3198), 1, + anon_sym_LT2, + ACTIONS(4858), 1, + anon_sym_COLON_COLON, + STATE(1071), 1, + sym_type_arguments, + STATE(2139), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3281), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67099] = 12, ACTIONS(65), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4596), 1, + ACTIONS(4707), 1, sym_identifier, - ACTIONS(4602), 1, + ACTIONS(4713), 1, sym_crate, - ACTIONS(4796), 1, + ACTIONS(4860), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1464), 1, sym_attribute_item, - STATE(2179), 1, + STATE(2190), 1, aux_sym_enum_variant_list_repeat1, - STATE(3170), 1, + STATE(3172), 1, sym_field_declaration, - STATE(3405), 1, + STATE(3508), 1, sym_visibility_modifier, - STATE(2134), 2, + STATE(2140), 2, sym_line_comment, sym_block_comment, - [66984] = 10, + [67137] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3194), 1, + ACTIONS(4825), 1, anon_sym_PLUS, - ACTIONS(4373), 1, - anon_sym_PIPE, - ACTIONS(4375), 1, - anon_sym_COLON, - ACTIONS(4377), 1, - anon_sym_COLON_COLON, - ACTIONS(4383), 1, - anon_sym_DOT_DOT, - ACTIONS(4381), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4798), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2135), 2, + STATE(2126), 1, + aux_sym_trait_bounds_repeat1, + STATE(2141), 2, sym_line_comment, sym_block_comment, - [67018] = 9, + ACTIONS(4841), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [67163] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(4380), 1, anon_sym_LPAREN, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4801), 1, + ACTIONS(4862), 1, anon_sym_for, - STATE(1929), 1, + STATE(1922), 1, sym_type_arguments, - STATE(1950), 1, + STATE(1938), 1, sym_parameters, - STATE(2136), 2, + STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 4, + ACTIONS(3234), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67050] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_SQUOTE, - ACTIONS(4692), 1, - sym_identifier, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4698), 1, - sym_metavariable, - ACTIONS(4803), 1, - anon_sym_GT, - STATE(2634), 1, - sym_lifetime, - STATE(2932), 1, - sym_constrained_type_parameter, - STATE(2137), 2, - sym_line_comment, - sym_block_comment, - STATE(3078), 2, - sym_const_parameter, - sym_optional_type_parameter, - [67086] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4383), 1, - anon_sym_DOT_DOT, - ACTIONS(4468), 1, - anon_sym_COLON_COLON, - ACTIONS(4798), 1, - anon_sym_RBRACK, - ACTIONS(3194), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4373), 2, - anon_sym_COMMA, - anon_sym_PIPE, - ACTIONS(4381), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2138), 2, - sym_line_comment, - sym_block_comment, - [67118] = 12, - ACTIONS(65), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4596), 1, - sym_identifier, - ACTIONS(4602), 1, - sym_crate, - ACTIONS(4805), 1, - anon_sym_RBRACE, - STATE(1494), 1, - sym_attribute_item, - STATE(2179), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3170), 1, - sym_field_declaration, - STATE(3405), 1, - sym_visibility_modifier, - STATE(2139), 2, - sym_line_comment, - sym_block_comment, - [67156] = 12, + [67195] = 12, ACTIONS(65), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4596), 1, + ACTIONS(4707), 1, sym_identifier, - ACTIONS(4602), 1, + ACTIONS(4713), 1, sym_crate, - ACTIONS(4807), 1, + ACTIONS(4864), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1464), 1, sym_attribute_item, - STATE(2179), 1, + STATE(2190), 1, aux_sym_enum_variant_list_repeat1, - STATE(3170), 1, + STATE(3172), 1, sym_field_declaration, - STATE(3405), 1, + STATE(3508), 1, sym_visibility_modifier, - STATE(2140), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - [67194] = 12, + [67233] = 12, ACTIONS(65), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4596), 1, + ACTIONS(4707), 1, sym_identifier, - ACTIONS(4602), 1, + ACTIONS(4713), 1, sym_crate, - ACTIONS(4809), 1, + ACTIONS(4866), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1464), 1, sym_attribute_item, - STATE(2179), 1, + STATE(2190), 1, aux_sym_enum_variant_list_repeat1, - STATE(3170), 1, + STATE(3172), 1, sym_field_declaration, - STATE(3405), 1, + STATE(3508), 1, sym_visibility_modifier, - STATE(2141), 2, + STATE(2144), 2, sym_line_comment, sym_block_comment, - [67232] = 10, + [67271] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4604), 1, + ACTIONS(4613), 1, sym_identifier, - ACTIONS(4610), 1, + ACTIONS(4619), 1, anon_sym_DOT_DOT, - ACTIONS(4811), 1, - anon_sym_RBRACE, - STATE(1494), 1, + ACTIONS(4621), 1, + sym_integer_literal, + STATE(1464), 1, sym_attribute_item, - STATE(2477), 1, + STATE(2410), 1, aux_sym_enum_variant_list_repeat1, - STATE(2142), 2, + STATE(2145), 2, sym_line_comment, sym_block_comment, - STATE(2982), 3, + STATE(3234), 3, sym_shorthand_field_initializer, sym_field_initializer, - sym_base_field_initializer, - [67266] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4815), 1, - anon_sym_PLUS, - STATE(2120), 1, - aux_sym_trait_bounds_repeat1, - STATE(2143), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4813), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_SQUOTE, - anon_sym_where, - [67292] = 9, + sym_base_field_initializer, + [67305] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4373), 1, - anon_sym_PIPE, - ACTIONS(4375), 1, - anon_sym_COLON, - ACTIONS(4383), 1, + ACTIONS(4416), 1, anon_sym_DOT_DOT, - ACTIONS(4476), 1, + ACTIONS(4505), 1, anon_sym_COLON_COLON, - ACTIONS(4381), 2, + ACTIONS(4868), 1, + anon_sym_RBRACK, + ACTIONS(3234), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4406), 2, + anon_sym_COMMA, + anon_sym_PIPE, + ACTIONS(4414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2144), 2, + STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [67324] = 9, + [67337] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4817), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(1950), 1, - sym_parameters, - STATE(2145), 2, + ACTIONS(3220), 1, + anon_sym_DOT_DOT, + STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67356] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(3218), 8, anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4819), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(1950), 1, - sym_parameters, - STATE(2146), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3194), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67388] = 12, + anon_sym_EQ_GT, + anon_sym_COLON_COLON, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [67361] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, + ACTIONS(4803), 1, anon_sym_LPAREN, - ACTIONS(4729), 1, + ACTIONS(4805), 1, + anon_sym_LBRACE, + ACTIONS(4807), 1, anon_sym_LT, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4751), 1, - anon_sym_LBRACE, - ACTIONS(4821), 1, + ACTIONS(4871), 1, anon_sym_SEMI, - STATE(541), 1, + STATE(696), 1, sym_field_declaration_list, - STATE(2262), 1, + STATE(2223), 1, sym_type_parameters, - STATE(2811), 1, + STATE(2949), 1, sym_ordered_field_declaration_list, - STATE(3224), 1, + STATE(3068), 1, sym_where_clause, - STATE(2147), 2, - sym_line_comment, - sym_block_comment, - [67426] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4823), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(1950), 1, - sym_parameters, STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67458] = 12, + [67399] = 12, ACTIONS(65), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4602), 1, + ACTIONS(4713), 1, sym_crate, - ACTIONS(4614), 1, + ACTIONS(4757), 1, sym_identifier, - ACTIONS(4825), 1, + ACTIONS(4873), 1, anon_sym_RBRACE, - STATE(1494), 1, + STATE(1464), 1, sym_attribute_item, - STATE(2183), 1, + STATE(2192), 1, aux_sym_enum_variant_list_repeat1, - STATE(3211), 1, + STATE(3218), 1, sym_enum_variant, - STATE(3455), 1, + STATE(3476), 1, sym_visibility_modifier, STATE(2149), 2, sym_line_comment, sym_block_comment, - [67496] = 6, + [67437] = 12, + ACTIONS(65), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4829), 1, - anon_sym_PLUS, - STATE(2143), 1, - aux_sym_trait_bounds_repeat1, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4707), 1, + sym_identifier, + ACTIONS(4713), 1, + sym_crate, + ACTIONS(4875), 1, + anon_sym_RBRACE, + STATE(1464), 1, + sym_attribute_item, + STATE(2190), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3172), 1, + sym_field_declaration, + STATE(3508), 1, + sym_visibility_modifier, STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(4827), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_SQUOTE, - anon_sym_where, - [67522] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4831), 1, - anon_sym_PLUS, - STATE(2143), 1, - aux_sym_trait_bounds_repeat1, - STATE(2151), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4827), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_SQUOTE, - anon_sym_where, - [67548] = 6, + [67475] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4815), 1, + ACTIONS(3234), 1, anon_sym_PLUS, - STATE(2143), 1, - aux_sym_trait_bounds_repeat1, - STATE(2152), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4827), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_SQUOTE, - anon_sym_where, - [67574] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3224), 1, + ACTIONS(4406), 1, + anon_sym_PIPE, + ACTIONS(4408), 1, + anon_sym_COLON, + ACTIONS(4416), 1, anon_sym_DOT_DOT, - STATE(2153), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3222), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4418), 1, anon_sym_COLON_COLON, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_if, + ACTIONS(4414), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [67598] = 10, + ACTIONS(4868), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2151), 2, + sym_line_comment, + sym_block_comment, + [67509] = 12, + ACTIONS(65), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_SQUOTE, - ACTIONS(4692), 1, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4713), 1, + sym_crate, + ACTIONS(4757), 1, sym_identifier, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4698), 1, - sym_metavariable, - STATE(2634), 1, - sym_lifetime, - STATE(2932), 1, - sym_constrained_type_parameter, - STATE(2154), 2, + ACTIONS(4877), 1, + anon_sym_RBRACE, + STATE(1464), 1, + sym_attribute_item, + STATE(2192), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3218), 1, + sym_enum_variant, + STATE(3476), 1, + sym_visibility_modifier, + STATE(2152), 2, sym_line_comment, sym_block_comment, - STATE(3078), 2, - sym_const_parameter, - sym_optional_type_parameter, - [67631] = 11, + [67547] = 12, ACTIONS(65), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4602), 1, + ACTIONS(4713), 1, sym_crate, - ACTIONS(4614), 1, + ACTIONS(4757), 1, sym_identifier, - STATE(1452), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, + ACTIONS(4879), 1, + anon_sym_RBRACE, + STATE(1464), 1, sym_attribute_item, - STATE(2919), 1, + STATE(2192), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3218), 1, sym_enum_variant, - STATE(3455), 1, + STATE(3476), 1, sym_visibility_modifier, - STATE(2155), 2, + STATE(2153), 2, sym_line_comment, sym_block_comment, - [67666] = 11, + [67585] = 12, + ACTIONS(65), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4833), 1, - anon_sym_SEMI, - ACTIONS(4835), 1, - anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_PLUS, - STATE(658), 1, - sym_block, - STATE(2442), 1, - sym_where_clause, - STATE(3505), 1, - sym_label, - STATE(2156), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4707), 1, + sym_identifier, + ACTIONS(4713), 1, + sym_crate, + ACTIONS(4881), 1, + anon_sym_RBRACE, + STATE(1464), 1, + sym_attribute_item, + STATE(2190), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3172), 1, + sym_field_declaration, + STATE(3508), 1, + sym_visibility_modifier, + STATE(2154), 2, sym_line_comment, sym_block_comment, - [67701] = 6, + [67623] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4532), 1, - anon_sym_COLON_COLON, - ACTIONS(4590), 1, - anon_sym_BANG, - STATE(2157), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4883), 1, + anon_sym_SEMI, + STATE(1176), 1, + sym_declaration_list, + STATE(2155), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, + ACTIONS(3281), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67726] = 6, + [67651] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4399), 1, - anon_sym_trait, - ACTIONS(4839), 1, - anon_sym_impl, - STATE(2158), 2, + ACTIONS(3896), 1, + anon_sym_LT2, + ACTIONS(4885), 1, + anon_sym_COLON_COLON, + STATE(1606), 1, + sym_type_arguments, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, + ACTIONS(3281), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67751] = 11, + [67679] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4835), 1, - anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(4841), 1, - anon_sym_SEMI, - STATE(661), 1, - sym_block, - STATE(2446), 1, - sym_where_clause, - STATE(3505), 1, - sym_label, - STATE(2159), 2, + ACTIONS(4547), 1, + anon_sym_LPAREN, + ACTIONS(4553), 1, + anon_sym_BANG, + ACTIONS(4559), 1, + anon_sym_DOT_DOT, + ACTIONS(4887), 1, + anon_sym_COLON_COLON, + ACTIONS(4557), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2157), 2, sym_line_comment, sym_block_comment, - [67786] = 11, + ACTIONS(4390), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [67711] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4803), 1, + anon_sym_LPAREN, + ACTIONS(4807), 1, + anon_sym_LT, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4835), 1, + ACTIONS(4821), 1, anon_sym_LBRACE, - ACTIONS(4843), 1, + ACTIONS(4889), 1, anon_sym_SEMI, - ACTIONS(4845), 1, - anon_sym_DASH_GT, - STATE(614), 1, - sym_block, - STATE(2362), 1, + STATE(1414), 1, + sym_field_declaration_list, + STATE(2263), 1, + sym_type_parameters, + STATE(2835), 1, + sym_ordered_field_declaration_list, + STATE(3151), 1, sym_where_clause, - STATE(3505), 1, - sym_label, - STATE(2160), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - [67821] = 11, + [67749] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4835), 1, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4891), 1, + anon_sym_COLON_COLON, + STATE(1918), 1, + sym_type_arguments, + STATE(2159), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3281), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [67777] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4893), 1, + anon_sym_LPAREN, + ACTIONS(4898), 1, + anon_sym_LBRACK, + ACTIONS(4901), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(4847), 1, - anon_sym_SEMI, - STATE(534), 1, - sym_block, - STATE(2450), 1, - sym_where_clause, - STATE(3505), 1, - sym_label, - STATE(2161), 2, + STATE(3289), 1, + sym_macro_rule, + STATE(3382), 1, + sym_token_tree_pattern, + ACTIONS(4896), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(2160), 3, sym_line_comment, sym_block_comment, - [67856] = 11, - ACTIONS(65), 1, - anon_sym_pub, + aux_sym_macro_definition_repeat1, + [67809] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4596), 1, - sym_identifier, - ACTIONS(4602), 1, - sym_crate, - STATE(1494), 1, - sym_attribute_item, - STATE(2179), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3170), 1, - sym_field_declaration, - STATE(3405), 1, - sym_visibility_modifier, - STATE(2162), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4904), 1, + anon_sym_for, + STATE(1922), 1, + sym_type_arguments, + STATE(1938), 1, + sym_parameters, + STATE(2161), 2, sym_line_comment, sym_block_comment, - [67891] = 11, + ACTIONS(3234), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67841] = 12, ACTIONS(65), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4602), 1, + ACTIONS(4713), 1, sym_crate, - ACTIONS(4614), 1, + ACTIONS(4757), 1, sym_identifier, - STATE(1494), 1, + ACTIONS(4906), 1, + anon_sym_RBRACE, + STATE(1464), 1, sym_attribute_item, - STATE(2183), 1, + STATE(2192), 1, aux_sym_enum_variant_list_repeat1, - STATE(3211), 1, + STATE(3218), 1, sym_enum_variant, - STATE(3455), 1, + STATE(3476), 1, sym_visibility_modifier, - STATE(2163), 2, + STATE(2162), 2, sym_line_comment, sym_block_comment, - [67926] = 11, + [67879] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4849), 1, + ACTIONS(4908), 1, anon_sym_SEMI, - ACTIONS(4851), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(4853), 1, + ACTIONS(4912), 1, anon_sym_DASH_GT, - STATE(1119), 1, + STATE(1251), 1, sym_block, - STATE(2418), 1, + STATE(2397), 1, sym_where_clause, - STATE(3508), 1, + STATE(3550), 1, sym_label, + STATE(2163), 2, + sym_line_comment, + sym_block_comment, + [67914] = 11, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4713), 1, + sym_crate, + ACTIONS(4757), 1, + sym_identifier, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1464), 1, + sym_attribute_item, + STATE(2884), 1, + sym_enum_variant, + STATE(3476), 1, + sym_visibility_modifier, STATE(2164), 2, sym_line_comment, sym_block_comment, - [67961] = 8, + [67949] = 11, + ACTIONS(65), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4855), 1, - anon_sym_fn, - ACTIONS(4857), 1, - anon_sym_extern, - STATE(2192), 1, - aux_sym_function_modifiers_repeat1, - STATE(2318), 1, - sym_extern_modifier, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4707), 1, + sym_identifier, + ACTIONS(4713), 1, + sym_crate, + STATE(1464), 1, + sym_attribute_item, + STATE(2190), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3172), 1, + sym_field_declaration, + STATE(3508), 1, + sym_visibility_modifier, STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(4385), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [67990] = 11, + [67984] = 11, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4707), 1, + sym_identifier, + ACTIONS(4713), 1, + sym_crate, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1464), 1, + sym_attribute_item, + STATE(2906), 1, + sym_field_declaration, + STATE(3508), 1, + sym_visibility_modifier, + STATE(2166), 2, + sym_line_comment, + sym_block_comment, + [68019] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4835), 1, - anon_sym_LBRACE, - ACTIONS(4859), 1, + ACTIONS(4914), 1, anon_sym_SEMI, - ACTIONS(4861), 1, + ACTIONS(4916), 1, + anon_sym_LBRACE, + ACTIONS(4918), 1, anon_sym_DASH_GT, - STATE(505), 1, + STATE(669), 1, sym_block, - STATE(2436), 1, + STATE(2462), 1, sym_where_clause, - STATE(3505), 1, + STATE(3547), 1, sym_label, - STATE(2166), 2, + STATE(2167), 2, sym_line_comment, sym_block_comment, - [68025] = 11, + [68054] = 11, ACTIONS(65), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4602), 1, - sym_crate, - ACTIONS(4614), 1, + ACTIONS(4707), 1, sym_identifier, - STATE(1452), 1, + ACTIONS(4713), 1, + sym_crate, + STATE(1077), 1, aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, + STATE(1464), 1, sym_attribute_item, - STATE(2841), 1, - sym_enum_variant, - STATE(3455), 1, + STATE(2789), 1, + sym_field_declaration, + STATE(3508), 1, sym_visibility_modifier, - STATE(2167), 2, + STATE(2168), 2, sym_line_comment, sym_block_comment, - [68060] = 11, + [68089] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4835), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(4863), 1, + ACTIONS(4920), 1, anon_sym_SEMI, - STATE(540), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + STATE(1320), 1, sym_block, - STATE(2434), 1, + STATE(2429), 1, sym_where_clause, - STATE(3505), 1, + STATE(3550), 1, sym_label, - STATE(2168), 2, + STATE(2169), 2, sym_line_comment, sym_block_comment, - [68095] = 9, + [68124] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4604), 1, - sym_identifier, - ACTIONS(4610), 1, - anon_sym_DOT_DOT, - STATE(1494), 1, - sym_attribute_item, - STATE(2477), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2169), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LT, + STATE(721), 1, + sym_declaration_list, + STATE(2294), 1, + sym_type_parameters, + STATE(2498), 1, + sym_trait_bounds, + STATE(3045), 1, + sym_where_clause, + STATE(2170), 2, sym_line_comment, sym_block_comment, - STATE(2982), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68126] = 11, + [68159] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4865), 1, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4924), 1, anon_sym_COLON, - ACTIONS(4867), 1, + ACTIONS(4926), 1, anon_sym_LT, - STATE(623), 1, + STATE(1404), 1, sym_declaration_list, - STATE(2316), 1, + STATE(2352), 1, sym_type_parameters, - STATE(2673), 1, + STATE(2568), 1, sym_trait_bounds, - STATE(3082), 1, + STATE(3155), 1, sym_where_clause, - STATE(2170), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - [68161] = 6, + [68194] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1074), 1, + ACTIONS(1052), 1, aux_sym_string_literal_token1, - STATE(2185), 1, + STATE(2183), 1, sym_string_literal, - STATE(2171), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(4544), 6, + ACTIONS(4603), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68186] = 4, + [68219] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2172), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4765), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(3317), 1, anon_sym_SQUOTE, + ACTIONS(4809), 1, anon_sym_where, - [68207] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2173), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4765), 8, - anon_sym_SEMI, + ACTIONS(4916), 1, anon_sym_LBRACE, + ACTIONS(4922), 1, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_SQUOTE, - anon_sym_where, - [68228] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2174), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4765), 8, + ACTIONS(4928), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_SQUOTE, - anon_sym_where, - [68249] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2175), 2, + STATE(598), 1, + sym_block, + STATE(2436), 1, + sym_where_clause, + STATE(3547), 1, + sym_label, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(4765), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_SQUOTE, - anon_sym_where, - [68270] = 11, + [68254] = 11, ACTIONS(65), 1, anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, + ACTIONS(2894), 1, anon_sym_POUND, - ACTIONS(4596), 1, - sym_identifier, - ACTIONS(4602), 1, + ACTIONS(4713), 1, sym_crate, - STATE(1452), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, + ACTIONS(4757), 1, + sym_identifier, + STATE(1464), 1, sym_attribute_item, - STATE(2953), 1, - sym_field_declaration, - STATE(3405), 1, + STATE(2192), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3218), 1, + sym_enum_variant, + STATE(3476), 1, sym_visibility_modifier, - STATE(2176), 2, + STATE(2174), 2, sym_line_comment, sym_block_comment, - [68305] = 4, + [68289] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2177), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4765), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, + ACTIONS(3317), 1, anon_sym_SQUOTE, + ACTIONS(4809), 1, anon_sym_where, - [68326] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(4865), 1, - anon_sym_COLON, - ACTIONS(4867), 1, - anon_sym_LT, - STATE(1191), 1, - sym_declaration_list, - STATE(2325), 1, - sym_type_parameters, - STATE(2664), 1, - sym_trait_bounds, - STATE(3188), 1, + ACTIONS(4930), 1, + anon_sym_SEMI, + ACTIONS(4932), 1, + anon_sym_DASH_GT, + STATE(644), 1, + sym_block, + STATE(2458), 1, sym_where_clause, - STATE(2178), 2, + STATE(3547), 1, + sym_label, + STATE(2175), 2, sym_line_comment, sym_block_comment, - [68361] = 11, - ACTIONS(65), 1, - anon_sym_pub, + [68324] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4596), 1, - sym_identifier, - ACTIONS(4602), 1, - sym_crate, - STATE(1452), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(3050), 1, - sym_field_declaration, - STATE(3405), 1, - sym_visibility_modifier, - STATE(2179), 2, + ACTIONS(4434), 1, + anon_sym_trait, + ACTIONS(4934), 1, + anon_sym_impl, + STATE(2176), 2, sym_line_comment, sym_block_comment, - [68396] = 10, + ACTIONS(3281), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68349] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_SQUOTE, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4869), 1, - sym_identifier, - ACTIONS(4871), 1, - sym_metavariable, - STATE(2413), 1, - sym_lifetime, - STATE(2666), 1, - sym_constrained_type_parameter, - STATE(2180), 2, + ACTIONS(4939), 1, + anon_sym_fn, + ACTIONS(4941), 1, + anon_sym_extern, + STATE(2366), 1, + sym_extern_modifier, + STATE(2177), 3, sym_line_comment, sym_block_comment, - STATE(2782), 2, - sym_const_parameter, - sym_optional_type_parameter, - [68429] = 10, + aux_sym_function_modifiers_repeat1, + ACTIONS(4936), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [68376] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, - anon_sym_BANG, - ACTIONS(4355), 1, - anon_sym_PIPE, - ACTIONS(4357), 1, - anon_sym_LPAREN, - ACTIONS(4361), 1, - anon_sym_COLON, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - ACTIONS(4873), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2181), 2, + ACTIONS(4944), 1, + anon_sym_fn, + ACTIONS(4946), 1, + anon_sym_extern, + STATE(2177), 1, + aux_sym_function_modifiers_repeat1, + STATE(2366), 1, + sym_extern_modifier, + STATE(2178), 2, sym_line_comment, sym_block_comment, - [68462] = 11, + ACTIONS(4420), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [68405] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4835), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(4875), 1, + ACTIONS(4948), 1, anon_sym_SEMI, - STATE(715), 1, + STATE(1335), 1, sym_block, - STATE(2414), 1, + STATE(2438), 1, sym_where_clause, - STATE(3505), 1, + STATE(3550), 1, sym_label, - STATE(2182), 2, + STATE(2179), 2, sym_line_comment, sym_block_comment, - [68497] = 11, - ACTIONS(65), 1, - anon_sym_pub, + [68440] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4602), 1, - sym_crate, - ACTIONS(4614), 1, - sym_identifier, - STATE(1452), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(3116), 1, - sym_enum_variant, - STATE(3455), 1, - sym_visibility_modifier, - STATE(2183), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LT, + STATE(1360), 1, + sym_declaration_list, + STATE(2315), 1, + sym_type_parameters, + STATE(2529), 1, + sym_trait_bounds, + STATE(3098), 1, + sym_where_clause, + STATE(2180), 2, sym_line_comment, sym_block_comment, - [68532] = 11, - ACTIONS(65), 1, - anon_sym_pub, + [68475] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(4596), 1, - sym_identifier, - ACTIONS(4602), 1, - sym_crate, - STATE(1452), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(2861), 1, - sym_field_declaration, - STATE(3405), 1, - sym_visibility_modifier, - STATE(2184), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4916), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(4950), 1, + anon_sym_SEMI, + STATE(578), 1, + sym_block, + STATE(2425), 1, + sym_where_clause, + STATE(3547), 1, + sym_label, + STATE(2181), 2, sym_line_comment, sym_block_comment, - [68567] = 4, + [68510] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2185), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4916), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(4952), 1, + anon_sym_SEMI, + STATE(531), 1, + sym_block, + STATE(2415), 1, + sym_where_clause, + STATE(3547), 1, + sym_label, + STATE(2182), 2, + sym_line_comment, + sym_block_comment, + [68545] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4877), 8, + ACTIONS(4954), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -168818,367 +167494,432 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68588] = 11, + [68566] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4851), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(4879), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(4956), 1, anon_sym_SEMI, - ACTIONS(4881), 1, - anon_sym_DASH_GT, - STATE(1223), 1, + STATE(513), 1, sym_block, - STATE(2427), 1, + STATE(2413), 1, sym_where_clause, - STATE(3508), 1, + STATE(3547), 1, sym_label, - STATE(2186), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - [68623] = 10, + [68601] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, - anon_sym_DOT_DOT, - ACTIONS(4883), 1, - sym_identifier, - ACTIONS(4885), 1, - anon_sym_RBRACE, - ACTIONS(4887), 1, - anon_sym_COMMA, - ACTIONS(4889), 1, - anon_sym_ref, - ACTIONS(4891), 1, - sym_mutable_specifier, - STATE(2187), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(4958), 1, + anon_sym_SEMI, + STATE(1357), 1, + sym_block, + STATE(2372), 1, + sym_where_clause, + STATE(3550), 1, + sym_label, + STATE(2185), 2, sym_line_comment, sym_block_comment, - STATE(2743), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [68656] = 10, + [68636] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, - anon_sym_DOT_DOT, - ACTIONS(4883), 1, - sym_identifier, - ACTIONS(4889), 1, - anon_sym_ref, - ACTIONS(4891), 1, - sym_mutable_specifier, - ACTIONS(4893), 1, - anon_sym_RBRACE, - ACTIONS(4895), 1, - anon_sym_COMMA, - STATE(2188), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LT, + STATE(1123), 1, + sym_declaration_list, + STATE(2333), 1, + sym_type_parameters, + STATE(2710), 1, + sym_trait_bounds, + STATE(3280), 1, + sym_where_clause, + STATE(2186), 2, sym_line_comment, sym_block_comment, - STATE(2741), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [68689] = 11, + [68671] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4835), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(4897), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(4960), 1, anon_sym_SEMI, - ACTIONS(4899), 1, - anon_sym_DASH_GT, - STATE(760), 1, + STATE(700), 1, sym_block, - STATE(2405), 1, + STATE(2471), 1, sym_where_clause, - STATE(3505), 1, + STATE(3547), 1, sym_label, - STATE(2189), 2, + STATE(2187), 2, sym_line_comment, sym_block_comment, - [68724] = 11, + [68706] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(4962), 1, + anon_sym_SEMI, + STATE(1209), 1, + sym_block, + STATE(2424), 1, + sym_where_clause, + STATE(3550), 1, + sym_label, + STATE(2188), 2, + sym_line_comment, + sym_block_comment, + [68741] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4865), 1, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4924), 1, anon_sym_COLON, - ACTIONS(4867), 1, + ACTIONS(4926), 1, anon_sym_LT, - STATE(530), 1, + STATE(499), 1, sym_declaration_list, - STATE(2353), 1, + STATE(2363), 1, sym_type_parameters, - STATE(2469), 1, + STATE(2703), 1, sym_trait_bounds, - STATE(3240), 1, + STATE(3276), 1, sym_where_clause, + STATE(2189), 2, + sym_line_comment, + sym_block_comment, + [68776] = 11, + ACTIONS(65), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4707), 1, + sym_identifier, + ACTIONS(4713), 1, + sym_crate, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1464), 1, + sym_attribute_item, + STATE(3089), 1, + sym_field_declaration, + STATE(3508), 1, + sym_visibility_modifier, STATE(2190), 2, sym_line_comment, sym_block_comment, - [68759] = 10, + [68811] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2966), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4901), 1, - sym_identifier, - ACTIONS(4903), 1, - sym_metavariable, - STATE(2350), 1, - sym_lifetime, - STATE(2538), 1, - sym_constrained_type_parameter, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(4964), 1, + anon_sym_SEMI, + ACTIONS(4966), 1, + anon_sym_DASH_GT, + STATE(1241), 1, + sym_block, + STATE(2428), 1, + sym_where_clause, + STATE(3550), 1, + sym_label, STATE(2191), 2, sym_line_comment, sym_block_comment, - STATE(2835), 2, - sym_const_parameter, - sym_optional_type_parameter, - [68792] = 7, + [68846] = 11, + ACTIONS(65), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4908), 1, - anon_sym_fn, - ACTIONS(4910), 1, - anon_sym_extern, - STATE(2318), 1, - sym_extern_modifier, - STATE(2192), 3, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4713), 1, + sym_crate, + ACTIONS(4757), 1, + sym_identifier, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1464), 1, + sym_attribute_item, + STATE(3100), 1, + sym_enum_variant, + STATE(3476), 1, + sym_visibility_modifier, + STATE(2192), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(4905), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [68819] = 11, + [68881] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4835), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(4913), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(4968), 1, anon_sym_SEMI, - ACTIONS(4915), 1, - anon_sym_DASH_GT, - STATE(626), 1, + STATE(1141), 1, sym_block, - STATE(2396), 1, + STATE(2423), 1, sym_where_clause, - STATE(3505), 1, + STATE(3550), 1, sym_label, STATE(2193), 2, sym_line_comment, sym_block_comment, - [68854] = 11, + [68916] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(4851), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(4917), 1, + ACTIONS(4970), 1, anon_sym_SEMI, - STATE(1414), 1, + ACTIONS(4972), 1, + anon_sym_DASH_GT, + STATE(588), 1, sym_block, - STATE(2412), 1, + STATE(2390), 1, sym_where_clause, - STATE(3508), 1, + STATE(3547), 1, sym_label, STATE(2194), 2, sym_line_comment, sym_block_comment, - [68889] = 10, + [68951] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, - anon_sym_DOT_DOT, - ACTIONS(4883), 1, - sym_identifier, - ACTIONS(4889), 1, - anon_sym_ref, - ACTIONS(4891), 1, - sym_mutable_specifier, - ACTIONS(4919), 1, - anon_sym_RBRACE, - ACTIONS(4921), 1, - anon_sym_COMMA, STATE(2195), 2, sym_line_comment, sym_block_comment, - STATE(2872), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [68922] = 11, + ACTIONS(4847), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [68972] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(4851), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(4923), 1, + ACTIONS(4974), 1, anon_sym_SEMI, - STATE(1403), 1, + ACTIONS(4976), 1, + anon_sym_DASH_GT, + STATE(484), 1, sym_block, - STATE(2420), 1, + STATE(2377), 1, sym_where_clause, - STATE(3508), 1, + STATE(3547), 1, sym_label, STATE(2196), 2, sym_line_comment, sym_block_comment, - [68957] = 11, + [69007] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(4925), 1, - anon_sym_SEMI, - STATE(1385), 1, - sym_block, - STATE(2421), 1, - sym_where_clause, - STATE(3508), 1, - sym_label, STATE(2197), 2, sym_line_comment, sym_block_comment, - [68992] = 11, + ACTIONS(4847), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [69028] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4835), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(4927), 1, + ACTIONS(4978), 1, anon_sym_SEMI, - ACTIONS(4929), 1, + ACTIONS(4980), 1, anon_sym_DASH_GT, - STATE(644), 1, + STATE(676), 1, sym_block, - STATE(2449), 1, + STATE(2466), 1, sym_where_clause, - STATE(3505), 1, + STATE(3547), 1, sym_label, STATE(2198), 2, sym_line_comment, sym_block_comment, - [69027] = 11, + [69063] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4865), 1, + ACTIONS(4384), 1, + anon_sym_BANG, + ACTIONS(4390), 1, + anon_sym_PIPE, + ACTIONS(4392), 1, + anon_sym_LPAREN, + ACTIONS(4396), 1, anon_sym_COLON, - ACTIONS(4867), 1, - anon_sym_LT, - STATE(643), 1, - sym_declaration_list, - STATE(2315), 1, - sym_type_parameters, - STATE(2595), 1, - sym_trait_bounds, - STATE(3041), 1, - sym_where_clause, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(4982), 1, + anon_sym_COLON_COLON, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2199), 2, sym_line_comment, sym_block_comment, - [69062] = 11, + [69096] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4851), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(4931), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(4984), 1, anon_sym_SEMI, - ACTIONS(4933), 1, - anon_sym_DASH_GT, - STATE(1133), 1, + STATE(686), 1, sym_block, - STATE(2376), 1, + STATE(2468), 1, sym_where_clause, - STATE(3508), 1, + STATE(3547), 1, sym_label, STATE(2200), 2, sym_line_comment, sym_block_comment, - [69097] = 4, + [69131] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4916), 1, + anon_sym_LBRACE, + ACTIONS(4986), 1, + anon_sym_SEMI, + ACTIONS(4988), 1, + anon_sym_DASH_GT, + STATE(739), 1, + sym_block, + STATE(2441), 1, + sym_where_clause, + STATE(3547), 1, + sym_label, STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(4935), 8, + [69166] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2202), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4847), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -169187,182 +167928,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SQUOTE, anon_sym_where, - [69118] = 11, + [69187] = 11, + ACTIONS(65), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(4937), 1, - anon_sym_SEMI, - STATE(1168), 1, - sym_block, - STATE(2369), 1, - sym_where_clause, - STATE(3508), 1, - sym_label, - STATE(2202), 2, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(4713), 1, + sym_crate, + ACTIONS(4757), 1, + sym_identifier, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1464), 1, + sym_attribute_item, + STATE(2850), 1, + sym_enum_variant, + STATE(3476), 1, + sym_visibility_modifier, + STATE(2203), 2, sym_line_comment, sym_block_comment, - [69153] = 10, + [69222] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(1142), 1, anon_sym_DOT_DOT, - ACTIONS(4883), 1, + ACTIONS(4990), 1, sym_identifier, - ACTIONS(4889), 1, + ACTIONS(4992), 1, + anon_sym_RBRACE, + ACTIONS(4994), 1, + anon_sym_COMMA, + ACTIONS(4996), 1, anon_sym_ref, - ACTIONS(4891), 1, + ACTIONS(4998), 1, sym_mutable_specifier, - ACTIONS(4939), 1, + STATE(2204), 2, + sym_line_comment, + sym_block_comment, + STATE(2920), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69255] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4665), 1, + anon_sym_COLON_COLON, + ACTIONS(4775), 1, + anon_sym_BANG, + STATE(2205), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3281), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69280] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1142), 1, + anon_sym_DOT_DOT, + ACTIONS(4990), 1, + sym_identifier, + ACTIONS(4996), 1, + anon_sym_ref, + ACTIONS(4998), 1, + sym_mutable_specifier, + ACTIONS(5000), 1, anon_sym_RBRACE, - ACTIONS(4941), 1, + ACTIONS(5002), 1, anon_sym_COMMA, - STATE(2203), 2, + STATE(2206), 2, sym_line_comment, sym_block_comment, - STATE(2916), 2, + STATE(2909), 2, sym_field_pattern, sym_remaining_field_pattern, - [69186] = 11, + [69313] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(4851), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(4943), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5004), 1, anon_sym_SEMI, - STATE(1341), 1, + STATE(1268), 1, sym_block, - STATE(2430), 1, + STATE(2408), 1, sym_where_clause, - STATE(3508), 1, + STATE(3550), 1, sym_label, - STATE(2204), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - [69221] = 11, + [69348] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(4865), 1, - anon_sym_COLON, - ACTIONS(4867), 1, - anon_sym_LT, - STATE(1300), 1, - sym_declaration_list, - STATE(2359), 1, - sym_type_parameters, - STATE(2677), 1, - sym_trait_bounds, - STATE(3195), 1, - sym_where_clause, - STATE(2205), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - [69256] = 11, + ACTIONS(4847), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_SQUOTE, + anon_sym_where, + [69369] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4851), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(4945), 1, + ACTIONS(5006), 1, anon_sym_SEMI, - ACTIONS(4947), 1, + ACTIONS(5008), 1, anon_sym_DASH_GT, - STATE(1259), 1, + STATE(1276), 1, sym_block, - STATE(2440), 1, + STATE(2379), 1, sym_where_clause, - STATE(3508), 1, + STATE(3550), 1, sym_label, - STATE(2206), 2, + STATE(2209), 2, sym_line_comment, sym_block_comment, - [69291] = 11, + [69404] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4851), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(4949), 1, + ACTIONS(5010), 1, anon_sym_SEMI, - ACTIONS(4951), 1, + ACTIONS(5012), 1, anon_sym_DASH_GT, - STATE(1352), 1, + STATE(1408), 1, sym_block, - STATE(2429), 1, + STATE(2406), 1, sym_where_clause, - STATE(3508), 1, + STATE(3550), 1, sym_label, - STATE(2207), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - [69326] = 11, + [69439] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(4865), 1, + ACTIONS(4924), 1, anon_sym_COLON, - ACTIONS(4867), 1, + ACTIONS(4926), 1, anon_sym_LT, - STATE(1144), 1, + STATE(497), 1, sym_declaration_list, - STATE(2360), 1, + STATE(2368), 1, sym_type_parameters, - STATE(2643), 1, + STATE(2692), 1, sym_trait_bounds, - STATE(3112), 1, + STATE(3184), 1, sym_where_clause, - STATE(2208), 2, + STATE(2211), 2, sym_line_comment, sym_block_comment, - [69361] = 4, + [69474] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2209), 2, + STATE(2212), 2, sym_line_comment, sym_block_comment, - ACTIONS(4953), 8, + ACTIONS(4847), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -169371,23972 +168147,24680 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_SQUOTE, anon_sym_where, - [69382] = 10, + [69495] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2966), 1, - anon_sym_SQUOTE, - ACTIONS(4696), 1, - anon_sym_const, - ACTIONS(4901), 1, + ACTIONS(1142), 1, + anon_sym_DOT_DOT, + ACTIONS(4990), 1, sym_identifier, - ACTIONS(4903), 1, - sym_metavariable, - STATE(2425), 1, - sym_lifetime, - STATE(2538), 1, - sym_constrained_type_parameter, - STATE(2210), 2, + ACTIONS(4996), 1, + anon_sym_ref, + ACTIONS(4998), 1, + sym_mutable_specifier, + ACTIONS(5014), 1, + anon_sym_RBRACE, + ACTIONS(5016), 1, + anon_sym_COMMA, + STATE(2213), 2, sym_line_comment, sym_block_comment, - STATE(2835), 2, - sym_const_parameter, - sym_optional_type_parameter, - [69415] = 11, + STATE(2779), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69528] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4835), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(4955), 1, + ACTIONS(5018), 1, anon_sym_SEMI, - ACTIONS(4957), 1, + ACTIONS(5020), 1, anon_sym_DASH_GT, - STATE(724), 1, + STATE(1224), 1, sym_block, - STATE(2428), 1, + STATE(2422), 1, sym_where_clause, - STATE(3505), 1, + STATE(3550), 1, sym_label, - STATE(2211), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - [69450] = 11, + [69563] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4851), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(4959), 1, + ACTIONS(5022), 1, anon_sym_SEMI, - ACTIONS(4961), 1, + ACTIONS(5024), 1, anon_sym_DASH_GT, - STATE(1241), 1, + STATE(1103), 1, sym_block, - STATE(2441), 1, + STATE(2388), 1, sym_where_clause, - STATE(3508), 1, + STATE(3550), 1, sym_label, - STATE(2212), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - [69485] = 11, + [69598] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(4963), 1, - anon_sym_SEMI, - STATE(1279), 1, - sym_block, - STATE(2437), 1, - sym_where_clause, - STATE(3508), 1, - sym_label, - STATE(2213), 2, + ACTIONS(1142), 1, + anon_sym_DOT_DOT, + ACTIONS(4990), 1, + sym_identifier, + ACTIONS(4996), 1, + anon_sym_ref, + ACTIONS(4998), 1, + sym_mutable_specifier, + ACTIONS(5026), 1, + anon_sym_RBRACE, + ACTIONS(5028), 1, + anon_sym_COMMA, + STATE(2216), 2, sym_line_comment, sym_block_comment, - [69520] = 11, + STATE(2775), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69631] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4835), 1, - anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(4965), 1, - anon_sym_SEMI, - STATE(766), 1, - sym_block, - STATE(2374), 1, - sym_where_clause, - STATE(3505), 1, - sym_label, - STATE(2214), 2, + ACTIONS(1142), 1, + anon_sym_DOT_DOT, + ACTIONS(4990), 1, + sym_identifier, + ACTIONS(4996), 1, + anon_sym_ref, + ACTIONS(4998), 1, + sym_mutable_specifier, + ACTIONS(5030), 1, + anon_sym_RBRACE, + STATE(2217), 2, sym_line_comment, sym_block_comment, - [69555] = 10, + STATE(3249), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69661] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(4673), 1, + anon_sym_COLON_COLON, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(4971), 1, + ACTIONS(5036), 1, anon_sym_RBRACK, - ACTIONS(4973), 1, + ACTIONS(5038), 1, anon_sym_LBRACE, - STATE(2098), 1, - aux_sym_macro_definition_repeat1, - STATE(3098), 1, - sym_macro_rule, - STATE(3511), 1, - sym_token_tree_pattern, - STATE(2215), 2, + ACTIONS(5040), 1, + anon_sym_EQ, + STATE(3399), 1, + sym_delim_token_tree, + STATE(2218), 2, sym_line_comment, sym_block_comment, - [69587] = 10, + [69693] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5046), 1, + anon_sym_RBRACK, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_RBRACE, - STATE(2232), 1, + STATE(2261), 1, aux_sym_macro_definition_repeat1, - STATE(3035), 1, + STATE(3210), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2216), 2, + STATE(2219), 2, sym_line_comment, sym_block_comment, - [69619] = 5, + [69725] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4977), 1, + ACTIONS(4240), 1, + anon_sym_LBRACE, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5052), 1, + anon_sym_STAR, + STATE(2967), 1, + sym_use_list, + STATE(3133), 1, + sym_type_arguments, + ACTIONS(5050), 2, sym_identifier, - STATE(2217), 2, + sym_super, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(4580), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69641] = 5, + [69755] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4979), 1, - sym_identifier, - STATE(2218), 2, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5054), 1, + anon_sym_RBRACK, + STATE(2251), 1, + aux_sym_macro_definition_repeat1, + STATE(3213), 1, + sym_macro_rule, + STATE(3382), 1, + sym_token_tree_pattern, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(4580), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69663] = 10, + [69787] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(4981), 1, + ACTIONS(5054), 1, anon_sym_RPAREN, - STATE(2235), 1, + STATE(2250), 1, aux_sym_macro_definition_repeat1, - STATE(3129), 1, + STATE(3215), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2219), 2, + STATE(2222), 2, sym_line_comment, sym_block_comment, - [69695] = 5, + [69819] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4983), 1, - anon_sym_trait, - STATE(2220), 2, + ACTIONS(4803), 1, + anon_sym_LPAREN, + ACTIONS(4805), 1, + anon_sym_LBRACE, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(5056), 1, + anon_sym_SEMI, + STATE(506), 1, + sym_field_declaration_list, + STATE(2743), 1, + sym_ordered_field_declaration_list, + STATE(3252), 1, + sym_where_clause, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, + [69851] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5058), 1, + sym_identifier, + STATE(2224), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4681), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69717] = 9, + [69873] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4113), 1, - anon_sym_LBRACE, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4987), 1, - anon_sym_STAR, - STATE(2821), 1, - sym_use_list, - STATE(3287), 1, - sym_type_arguments, - ACTIONS(4985), 2, + ACTIONS(1142), 1, + anon_sym_DOT_DOT, + ACTIONS(4990), 1, sym_identifier, - sym_super, - STATE(2221), 2, + ACTIONS(4996), 1, + anon_sym_ref, + ACTIONS(4998), 1, + sym_mutable_specifier, + ACTIONS(5060), 1, + anon_sym_RBRACE, + STATE(2225), 2, + sym_line_comment, + sym_block_comment, + STATE(3249), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69903] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4803), 1, + anon_sym_LPAREN, + ACTIONS(4821), 1, + anon_sym_LBRACE, + ACTIONS(5064), 1, + anon_sym_EQ, + ACTIONS(5062), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2226), 2, + sym_line_comment, + sym_block_comment, + STATE(2856), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [69931] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(5068), 1, + anon_sym_COLON, + ACTIONS(5070), 1, + anon_sym_COLON_COLON, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5066), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2227), 2, sym_line_comment, sym_block_comment, - [69747] = 9, + [69959] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(1142), 1, anon_sym_DOT_DOT, - ACTIONS(4883), 1, + ACTIONS(4990), 1, sym_identifier, - ACTIONS(4889), 1, + ACTIONS(4996), 1, anon_sym_ref, - ACTIONS(4891), 1, + ACTIONS(4998), 1, sym_mutable_specifier, - ACTIONS(4989), 1, + ACTIONS(5072), 1, anon_sym_RBRACE, - STATE(2222), 2, + STATE(2228), 2, sym_line_comment, sym_block_comment, - STATE(3149), 2, + STATE(3249), 2, sym_field_pattern, sym_remaining_field_pattern, - [69777] = 7, + [69989] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4588), 1, - anon_sym_COLON_COLON, - ACTIONS(4594), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4592), 2, + ACTIONS(5074), 1, + anon_sym_COLON_COLON, + ACTIONS(4402), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2223), 2, + STATE(2229), 2, sym_line_comment, sym_block_comment, - ACTIONS(4373), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [69803] = 7, + ACTIONS(3234), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [70015] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4991), 1, + ACTIONS(5074), 1, anon_sym_COLON_COLON, - ACTIONS(4367), 2, + ACTIONS(5078), 1, + anon_sym_COLON, + ACTIONS(4402), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2224), 2, + ACTIONS(5076), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 3, + [70043] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4803), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4821), 1, + anon_sym_LBRACE, + ACTIONS(5080), 1, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [69829] = 9, + STATE(1375), 1, + sym_field_declaration_list, + STATE(2817), 1, + sym_ordered_field_declaration_list, + STATE(3166), 1, + sym_where_clause, + STATE(2231), 2, + sym_line_comment, + sym_block_comment, + [70075] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(1142), 1, anon_sym_DOT_DOT, - ACTIONS(4883), 1, + ACTIONS(4990), 1, sym_identifier, - ACTIONS(4889), 1, + ACTIONS(4996), 1, anon_sym_ref, - ACTIONS(4891), 1, + ACTIONS(4998), 1, sym_mutable_specifier, - ACTIONS(4993), 1, + ACTIONS(5082), 1, anon_sym_RBRACE, - STATE(2225), 2, + STATE(2232), 2, sym_line_comment, sym_block_comment, - STATE(3149), 2, + STATE(3249), 2, sym_field_pattern, sym_remaining_field_pattern, - [69859] = 9, + [70105] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4113), 1, - anon_sym_LBRACE, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4987), 1, - anon_sym_STAR, - STATE(2821), 1, - sym_use_list, - STATE(3292), 1, - sym_type_arguments, - ACTIONS(4985), 2, + ACTIONS(5084), 1, sym_identifier, - sym_super, - STATE(2226), 2, + STATE(2233), 2, sym_line_comment, sym_block_comment, - [69889] = 10, + ACTIONS(4681), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70127] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(4995), 1, - anon_sym_RPAREN, - STATE(2098), 1, + ACTIONS(5086), 1, + anon_sym_RBRACE, + STATE(2160), 1, aux_sym_macro_definition_repeat1, - STATE(3192), 1, + STATE(3124), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2227), 2, + STATE(2234), 2, sym_line_comment, sym_block_comment, - [69921] = 10, + [70159] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACK, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(4995), 1, - anon_sym_RBRACK, - STATE(2098), 1, - aux_sym_macro_definition_repeat1, - STATE(3189), 1, - sym_macro_rule, - STATE(3511), 1, - sym_token_tree_pattern, - STATE(2228), 2, + ACTIONS(1142), 1, + anon_sym_DOT_DOT, + ACTIONS(4990), 1, + sym_identifier, + ACTIONS(4996), 1, + anon_sym_ref, + ACTIONS(4998), 1, + sym_mutable_specifier, + ACTIONS(5088), 1, + anon_sym_RBRACE, + STATE(2235), 2, sym_line_comment, sym_block_comment, - [69953] = 7, + STATE(3249), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70189] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, + ACTIONS(1142), 1, anon_sym_DOT_DOT, - ACTIONS(4997), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2229), 2, + ACTIONS(4990), 1, + sym_identifier, + ACTIONS(4996), 1, + anon_sym_ref, + ACTIONS(4998), 1, + sym_mutable_specifier, + ACTIONS(5090), 1, + anon_sym_RBRACE, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [69979] = 8, + STATE(3249), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70219] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, + ACTIONS(1142), 1, anon_sym_DOT_DOT, - ACTIONS(4997), 1, - anon_sym_COLON_COLON, - ACTIONS(5001), 1, - anon_sym_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4999), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2230), 2, + ACTIONS(4990), 1, + sym_identifier, + ACTIONS(4996), 1, + anon_sym_ref, + ACTIONS(4998), 1, + sym_mutable_specifier, + ACTIONS(5092), 1, + anon_sym_RBRACE, + STATE(2237), 2, sym_line_comment, sym_block_comment, - [70007] = 10, + STATE(3249), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70249] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5003), 1, - anon_sym_RBRACE, - STATE(2098), 1, + ACTIONS(5094), 1, + anon_sym_RBRACK, + STATE(2160), 1, aux_sym_macro_definition_repeat1, - STATE(3181), 1, + STATE(3112), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2231), 2, + STATE(2238), 2, + sym_line_comment, + sym_block_comment, + [70281] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5094), 1, + anon_sym_RPAREN, + STATE(2160), 1, + aux_sym_macro_definition_repeat1, + STATE(3109), 1, + sym_macro_rule, + STATE(3382), 1, + sym_token_tree_pattern, + STATE(2239), 2, sym_line_comment, sym_block_comment, - [70039] = 10, + [70313] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5005), 1, + ACTIONS(5096), 1, anon_sym_RBRACE, - STATE(2098), 1, + STATE(2160), 1, aux_sym_macro_definition_repeat1, - STATE(3213), 1, + STATE(3097), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2232), 2, + STATE(2240), 2, + sym_line_comment, + sym_block_comment, + [70345] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5098), 1, + sym_identifier, + STATE(2241), 2, sym_line_comment, sym_block_comment, - [70071] = 8, + ACTIONS(4681), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70367] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, + ACTIONS(4803), 1, anon_sym_LPAREN, - ACTIONS(4727), 1, + ACTIONS(4821), 1, anon_sym_LBRACE, - ACTIONS(5009), 1, + ACTIONS(5102), 1, anon_sym_EQ, - ACTIONS(5007), 2, + ACTIONS(5100), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(2233), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - STATE(2904), 2, + STATE(2760), 2, sym_field_declaration_list, sym_ordered_field_declaration_list, - [70099] = 10, + [70395] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4773), 1, + anon_sym_COLON_COLON, + ACTIONS(4779), 1, + anon_sym_DOT_DOT, + ACTIONS(4777), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2243), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4406), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [70421] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(4671), 1, + anon_sym_COLON_COLON, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5036), 1, anon_sym_RBRACK, - STATE(2098), 1, - aux_sym_macro_definition_repeat1, - STATE(3096), 1, - sym_macro_rule, - STATE(3511), 1, - sym_token_tree_pattern, - STATE(2234), 2, + ACTIONS(5038), 1, + anon_sym_LBRACE, + ACTIONS(5040), 1, + anon_sym_EQ, + STATE(3399), 1, + sym_delim_token_tree, + STATE(2244), 2, sym_line_comment, sym_block_comment, - [70131] = 10, + [70453] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(4513), 1, + anon_sym_COLON_COLON, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5036), 1, + anon_sym_RBRACK, + ACTIONS(5038), 1, anon_sym_LBRACE, - ACTIONS(5013), 1, - anon_sym_RPAREN, - STATE(2098), 1, - aux_sym_macro_definition_repeat1, - STATE(3176), 1, - sym_macro_rule, - STATE(3511), 1, - sym_token_tree_pattern, - STATE(2235), 2, + ACTIONS(5040), 1, + anon_sym_EQ, + STATE(3399), 1, + sym_delim_token_tree, + STATE(2245), 2, sym_line_comment, sym_block_comment, - [70163] = 10, + [70485] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5011), 1, + ACTIONS(5046), 1, anon_sym_RPAREN, - STATE(2098), 1, + ACTIONS(5048), 1, + anon_sym_LBRACE, + STATE(2260), 1, aux_sym_macro_definition_repeat1, - STATE(3097), 1, + STATE(3212), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2236), 2, + STATE(2246), 2, sym_line_comment, sym_block_comment, - [70195] = 10, + [70517] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(4665), 1, + anon_sym_COLON_COLON, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5038), 1, anon_sym_LBRACE, - ACTIONS(5013), 1, + ACTIONS(5104), 1, anon_sym_RBRACK, - STATE(2098), 1, - aux_sym_macro_definition_repeat1, - STATE(3175), 1, - sym_macro_rule, - STATE(3511), 1, - sym_token_tree_pattern, - STATE(2237), 2, + ACTIONS(5106), 1, + anon_sym_EQ, + STATE(3392), 1, + sym_delim_token_tree, + STATE(2247), 2, sym_line_comment, sym_block_comment, - [70227] = 10, + [70549] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5015), 1, + ACTIONS(5108), 1, anon_sym_RBRACE, - STATE(2098), 1, + STATE(2268), 1, aux_sym_macro_definition_repeat1, - STATE(3174), 1, + STATE(3255), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2238), 2, + STATE(2248), 2, sym_line_comment, sym_block_comment, - [70259] = 8, + [70581] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - ACTIONS(5019), 1, - anon_sym_COLON, - ACTIONS(5021), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5017), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2239), 2, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5110), 1, + anon_sym_RBRACE, + STATE(2270), 1, + aux_sym_macro_definition_repeat1, + STATE(3259), 1, + sym_macro_rule, + STATE(3382), 1, + sym_token_tree_pattern, + STATE(2249), 2, sym_line_comment, sym_block_comment, - [70287] = 10, + [70613] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4751), 1, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5023), 1, - anon_sym_SEMI, - STATE(634), 1, - sym_field_declaration_list, - STATE(2942), 1, - sym_ordered_field_declaration_list, - STATE(3026), 1, - sym_where_clause, - STATE(2240), 2, + ACTIONS(5112), 1, + anon_sym_RPAREN, + STATE(2160), 1, + aux_sym_macro_definition_repeat1, + STATE(3185), 1, + sym_macro_rule, + STATE(3382), 1, + sym_token_tree_pattern, + STATE(2250), 2, sym_line_comment, sym_block_comment, - [70319] = 10, + [70645] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4971), 1, - anon_sym_RPAREN, - ACTIONS(4973), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - STATE(2098), 1, + ACTIONS(5112), 1, + anon_sym_RBRACK, + STATE(2160), 1, aux_sym_macro_definition_repeat1, - STATE(3102), 1, + STATE(3181), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2241), 2, + STATE(2251), 2, sym_line_comment, sym_block_comment, - [70351] = 10, + [70677] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5025), 1, - anon_sym_RBRACE, - STATE(2098), 1, + ACTIONS(5114), 1, + anon_sym_RBRACK, + STATE(2160), 1, aux_sym_macro_definition_repeat1, - STATE(3223), 1, + STATE(3093), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2242), 2, + STATE(2252), 2, sym_line_comment, sym_block_comment, - [70383] = 10, + [70709] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4727), 1, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(5027), 1, - anon_sym_SEMI, - STATE(1206), 1, - sym_field_declaration_list, - STATE(2777), 1, - sym_ordered_field_declaration_list, - STATE(3163), 1, - sym_where_clause, - STATE(2243), 2, + ACTIONS(5116), 1, + anon_sym_RBRACE, + STATE(2234), 1, + aux_sym_macro_definition_repeat1, + STATE(3182), 1, + sym_macro_rule, + STATE(3382), 1, + sym_token_tree_pattern, + STATE(2253), 2, sym_line_comment, sym_block_comment, - [70415] = 10, + [70741] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5029), 1, + ACTIONS(5118), 1, anon_sym_RBRACK, - STATE(2234), 1, + STATE(2238), 1, aux_sym_macro_definition_repeat1, - STATE(3140), 1, + STATE(3183), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2244), 2, + STATE(2254), 2, sym_line_comment, sym_block_comment, - [70447] = 10, + [70773] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4540), 1, - anon_sym_COLON_COLON, - ACTIONS(5031), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5033), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5035), 1, - anon_sym_RBRACK, - ACTIONS(5037), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_EQ, - STATE(3266), 1, - sym_delim_token_tree, - STATE(2245), 2, + ACTIONS(5118), 1, + anon_sym_RPAREN, + STATE(2239), 1, + aux_sym_macro_definition_repeat1, + STATE(3186), 1, + sym_macro_rule, + STATE(3382), 1, + sym_token_tree_pattern, + STATE(2255), 2, sym_line_comment, sym_block_comment, - [70479] = 10, + [70805] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4478), 1, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(5120), 1, anon_sym_COLON_COLON, - ACTIONS(5031), 1, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2256), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3234), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [70831] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5033), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5035), 1, - anon_sym_RBRACK, - ACTIONS(5037), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_EQ, - STATE(3266), 1, - sym_delim_token_tree, - STATE(2246), 2, + ACTIONS(5122), 1, + anon_sym_RBRACE, + STATE(2240), 1, + aux_sym_macro_definition_repeat1, + STATE(3188), 1, + sym_macro_rule, + STATE(3382), 1, + sym_token_tree_pattern, + STATE(2257), 2, sym_line_comment, sym_block_comment, - [70511] = 10, + [70863] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4542), 1, - anon_sym_COLON_COLON, - ACTIONS(5031), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5033), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5035), 1, - anon_sym_RBRACK, - ACTIONS(5037), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_EQ, - STATE(3266), 1, - sym_delim_token_tree, - STATE(2247), 2, + ACTIONS(5124), 1, + anon_sym_RBRACK, + STATE(2252), 1, + aux_sym_macro_definition_repeat1, + STATE(3140), 1, + sym_macro_rule, + STATE(3382), 1, + sym_token_tree_pattern, + STATE(2258), 2, sym_line_comment, sym_block_comment, - [70543] = 10, + [70895] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5029), 1, + ACTIONS(5124), 1, anon_sym_RPAREN, - STATE(2236), 1, + STATE(2262), 1, aux_sym_macro_definition_repeat1, - STATE(3142), 1, + STATE(3200), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2248), 2, + STATE(2259), 2, sym_line_comment, sym_block_comment, - [70575] = 10, + [70927] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_RBRACK, - STATE(2215), 1, + ACTIONS(5126), 1, + anon_sym_RPAREN, + STATE(2160), 1, aux_sym_macro_definition_repeat1, - STATE(3147), 1, + STATE(3180), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2249), 2, + STATE(2260), 2, sym_line_comment, sym_block_comment, - [70607] = 10, + [70959] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4969), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5041), 1, - anon_sym_RPAREN, - STATE(2241), 1, + ACTIONS(5126), 1, + anon_sym_RBRACK, + STATE(2160), 1, aux_sym_macro_definition_repeat1, - STATE(3153), 1, + STATE(3177), 1, sym_macro_rule, - STATE(3511), 1, + STATE(3382), 1, sym_token_tree_pattern, - STATE(2250), 2, + STATE(2261), 2, sym_line_comment, sym_block_comment, - [70639] = 10, + [70991] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4532), 1, - anon_sym_COLON_COLON, - ACTIONS(5031), 1, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(5033), 1, + ACTIONS(5044), 1, anon_sym_LBRACK, - ACTIONS(5037), 1, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_RBRACK, - ACTIONS(5045), 1, - anon_sym_EQ, - STATE(3270), 1, - sym_delim_token_tree, - STATE(2251), 2, + ACTIONS(5114), 1, + anon_sym_RPAREN, + STATE(2160), 1, + aux_sym_macro_definition_repeat1, + STATE(3091), 1, + sym_macro_rule, + STATE(3382), 1, + sym_token_tree_pattern, + STATE(2262), 2, sym_line_comment, sym_block_comment, - [70671] = 9, + [71023] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, - anon_sym_DOT_DOT, - ACTIONS(4883), 1, - sym_identifier, - ACTIONS(4889), 1, - anon_sym_ref, - ACTIONS(4891), 1, - sym_mutable_specifier, - ACTIONS(5047), 1, - anon_sym_RBRACE, - STATE(2252), 2, + ACTIONS(4803), 1, + anon_sym_LPAREN, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4821), 1, + anon_sym_LBRACE, + ACTIONS(5128), 1, + anon_sym_SEMI, + STATE(1383), 1, + sym_field_declaration_list, + STATE(2922), 1, + sym_ordered_field_declaration_list, + STATE(3103), 1, + sym_where_clause, + STATE(2263), 2, sym_line_comment, sym_block_comment, - STATE(3149), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70701] = 9, + [71055] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, - anon_sym_DOT_DOT, - ACTIONS(4883), 1, - sym_identifier, - ACTIONS(4889), 1, - anon_sym_ref, - ACTIONS(4891), 1, - sym_mutable_specifier, - ACTIONS(5049), 1, - anon_sym_RBRACE, - STATE(2253), 2, + ACTIONS(4803), 1, + anon_sym_LPAREN, + ACTIONS(4805), 1, + anon_sym_LBRACE, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(5130), 1, + anon_sym_SEMI, + STATE(670), 1, + sym_field_declaration_list, + STATE(2996), 1, + sym_ordered_field_declaration_list, + STATE(3016), 1, + sym_where_clause, + STATE(2264), 2, sym_line_comment, sym_block_comment, - STATE(3149), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70731] = 5, + [71087] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5051), 1, - sym_identifier, - STATE(2254), 2, + ACTIONS(5132), 1, + anon_sym_trait, + STATE(2265), 2, sym_line_comment, sym_block_comment, - ACTIONS(4580), 6, + ACTIONS(3281), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70753] = 9, + [71109] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4883), 1, - sym_identifier, - ACTIONS(4889), 1, - anon_sym_ref, - ACTIONS(4891), 1, - sym_mutable_specifier, - ACTIONS(5053), 1, - anon_sym_RBRACE, - STATE(2255), 2, + ACTIONS(5078), 1, + anon_sym_COLON, + ACTIONS(5134), 1, + anon_sym_COLON_COLON, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5076), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2266), 2, sym_line_comment, sym_block_comment, - STATE(3149), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70783] = 9, + [71137] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(1142), 1, anon_sym_DOT_DOT, - ACTIONS(4883), 1, + ACTIONS(4990), 1, sym_identifier, - ACTIONS(4889), 1, + ACTIONS(4996), 1, anon_sym_ref, - ACTIONS(4891), 1, + ACTIONS(4998), 1, sym_mutable_specifier, - ACTIONS(5055), 1, + ACTIONS(5136), 1, anon_sym_RBRACE, - STATE(2256), 2, + STATE(2267), 2, sym_line_comment, sym_block_comment, - STATE(3149), 2, + STATE(3249), 2, sym_field_pattern, sym_remaining_field_pattern, - [70813] = 9, + [71167] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, - anon_sym_DOT_DOT, - ACTIONS(4883), 1, - sym_identifier, - ACTIONS(4889), 1, - anon_sym_ref, - ACTIONS(4891), 1, - sym_mutable_specifier, - ACTIONS(5057), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5138), 1, anon_sym_RBRACE, - STATE(2257), 2, + STATE(2160), 1, + aux_sym_macro_definition_repeat1, + STATE(3138), 1, + sym_macro_rule, + STATE(3382), 1, + sym_token_tree_pattern, + STATE(2268), 2, sym_line_comment, sym_block_comment, - STATE(3149), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70843] = 9, + [71199] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4883), 1, - sym_identifier, - ACTIONS(4889), 1, - anon_sym_ref, - ACTIONS(4891), 1, - sym_mutable_specifier, - ACTIONS(5059), 1, + ACTIONS(5134), 1, + anon_sym_COLON_COLON, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2269), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3234), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [71225] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5044), 1, + anon_sym_LBRACK, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5140), 1, anon_sym_RBRACE, - STATE(2258), 2, + STATE(2160), 1, + aux_sym_macro_definition_repeat1, + STATE(3144), 1, + sym_macro_rule, + STATE(3382), 1, + sym_token_tree_pattern, + STATE(2270), 2, sym_line_comment, sym_block_comment, - STATE(3149), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70873] = 5, + [71257] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5061), 1, + ACTIONS(5142), 1, anon_sym_trait, - STATE(2259), 2, + STATE(2271), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, + ACTIONS(3281), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [70895] = 10, + [71279] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACK, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5063), 1, - anon_sym_RBRACE, - STATE(2242), 1, - aux_sym_macro_definition_repeat1, - STATE(3011), 1, - sym_macro_rule, - STATE(3511), 1, - sym_token_tree_pattern, - STATE(2260), 2, + ACTIONS(5144), 1, + sym_identifier, + STATE(2272), 2, sym_line_comment, sym_block_comment, - [70927] = 8, + ACTIONS(4681), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71301] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, - anon_sym_LPAREN, - ACTIONS(4727), 1, + ACTIONS(4240), 1, anon_sym_LBRACE, - ACTIONS(5067), 1, - anon_sym_EQ, - ACTIONS(5065), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2261), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5052), 1, + anon_sym_STAR, + STATE(2967), 1, + sym_use_list, + STATE(3139), 1, + sym_type_arguments, + ACTIONS(5050), 2, + sym_identifier, + sym_super, + STATE(2273), 2, sym_line_comment, sym_block_comment, - STATE(2809), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [70955] = 10, + [71331] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, - anon_sym_LPAREN, - ACTIONS(4731), 1, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4799), 1, + anon_sym_for, + STATE(2274), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3234), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_where, - ACTIONS(4751), 1, + [71354] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(5069), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5146), 1, anon_sym_SEMI, - STATE(731), 1, - sym_field_declaration_list, - STATE(2696), 1, - sym_ordered_field_declaration_list, - STATE(2986), 1, + STATE(711), 1, + sym_declaration_list, + STATE(2827), 1, sym_where_clause, - STATE(2262), 2, + STATE(2275), 2, sym_line_comment, sym_block_comment, - [70987] = 10, + [71383] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4725), 1, - anon_sym_LPAREN, - ACTIONS(4727), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(5071), 1, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5148), 1, anon_sym_SEMI, - STATE(1098), 1, - sym_field_declaration_list, - STATE(2877), 1, - sym_ordered_field_declaration_list, - STATE(3128), 1, + STATE(524), 1, + sym_declaration_list, + STATE(2766), 1, sym_where_clause, - STATE(2263), 2, + STATE(2276), 2, sym_line_comment, sym_block_comment, - [71019] = 10, + [71412] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACK, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5073), 1, - anon_sym_RBRACE, - STATE(2238), 1, - aux_sym_macro_definition_repeat1, - STATE(3138), 1, - sym_macro_rule, - STATE(3511), 1, - sym_token_tree_pattern, - STATE(2264), 2, + ACTIONS(5150), 1, + anon_sym_RBRACK, + ACTIONS(4729), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(2277), 2, sym_line_comment, sym_block_comment, - [71051] = 10, + ACTIONS(3357), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [71435] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(4981), 1, - anon_sym_RBRACK, - STATE(2237), 1, - aux_sym_macro_definition_repeat1, - STATE(3137), 1, - sym_macro_rule, - STATE(3511), 1, - sym_token_tree_pattern, - STATE(2265), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5153), 1, + anon_sym_SEMI, + STATE(1196), 1, + sym_declaration_list, + STATE(3006), 1, + sym_where_clause, + STATE(2278), 2, sym_line_comment, sym_block_comment, - [71083] = 5, + [71464] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5075), 1, - sym_identifier, - STATE(2266), 2, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4815), 1, + anon_sym_for, + STATE(2279), 2, sym_line_comment, sym_block_comment, - ACTIONS(4580), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71105] = 10, + ACTIONS(3234), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71487] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(5077), 1, - anon_sym_RBRACE, - STATE(2231), 1, - aux_sym_macro_definition_repeat1, - STATE(3220), 1, - sym_macro_rule, - STATE(3511), 1, - sym_token_tree_pattern, - STATE(2267), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5155), 1, + anon_sym_SEMI, + STATE(1303), 1, + sym_declaration_list, + STATE(3005), 1, + sym_where_clause, + STATE(2280), 2, sym_line_comment, sym_block_comment, - [71137] = 10, + [71516] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(5079), 1, - anon_sym_RBRACK, - STATE(2228), 1, - aux_sym_macro_definition_repeat1, - STATE(2987), 1, - sym_macro_rule, - STATE(3511), 1, - sym_token_tree_pattern, - STATE(2268), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5157), 1, + anon_sym_SEMI, + STATE(713), 1, + sym_declaration_list, + STATE(2828), 1, + sym_where_clause, + STATE(2281), 2, sym_line_comment, sym_block_comment, - [71169] = 8, + [71545] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, + ACTIONS(1442), 1, anon_sym_DOT_DOT, - ACTIONS(5001), 1, - anon_sym_COLON, - ACTIONS(5081), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4999), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2269), 2, + STATE(2282), 2, sym_line_comment, sym_block_comment, - [71197] = 7, + ACTIONS(1444), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [71566] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(5081), 1, + ACTIONS(5134), 1, anon_sym_COLON_COLON, - ACTIONS(4367), 2, + ACTIONS(4402), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2270), 2, + ACTIONS(5066), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2283), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 3, - anon_sym_RPAREN, + [71591] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, anon_sym_PLUS, - anon_sym_COMMA, - [71223] = 10, + ACTIONS(5159), 1, + anon_sym_SEMI, + STATE(609), 1, + sym_declaration_list, + STATE(2885), 1, + sym_where_clause, + STATE(2284), 2, + sym_line_comment, + sym_block_comment, + [71620] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4967), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACK, - ACTIONS(4973), 1, + ACTIONS(4807), 1, + anon_sym_LT, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4821), 1, anon_sym_LBRACE, - ACTIONS(5079), 1, - anon_sym_RPAREN, - STATE(2227), 1, - aux_sym_macro_definition_repeat1, - STATE(3001), 1, - sym_macro_rule, - STATE(3511), 1, - sym_token_tree_pattern, - STATE(2271), 2, + STATE(1133), 1, + sym_field_declaration_list, + STATE(2712), 1, + sym_type_parameters, + STATE(3285), 1, + sym_where_clause, + STATE(2285), 2, + sym_line_comment, + sym_block_comment, + [71649] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(4926), 1, + anon_sym_LT, + ACTIONS(5161), 1, + anon_sym_SEMI, + ACTIONS(5163), 1, + anon_sym_EQ, + STATE(2713), 1, + sym_type_parameters, + STATE(3298), 1, + sym_trait_bounds, + STATE(2286), 2, sym_line_comment, sym_block_comment, - [71255] = 9, + [71678] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4817), 1, + anon_sym_for, + STATE(2287), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3234), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, anon_sym_PLUS, - ACTIONS(5083), 1, - anon_sym_SEMI, - STATE(701), 1, - sym_declaration_list, - STATE(2790), 1, - sym_where_clause, - STATE(2272), 2, + anon_sym_where, + [71701] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5165), 1, + anon_sym_RBRACK, + ACTIONS(4697), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(2288), 2, sym_line_comment, sym_block_comment, - [71284] = 5, + ACTIONS(3447), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [71724] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1502), 1, - anon_sym_DOT_DOT, - STATE(2273), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5168), 1, + anon_sym_SEMI, + STATE(1090), 1, + sym_declaration_list, + STATE(2729), 1, + sym_where_clause, + STATE(2289), 2, sym_line_comment, sym_block_comment, - ACTIONS(1504), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [71305] = 9, + [71753] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4805), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5085), 1, - anon_sym_SEMI, - STATE(1302), 1, - sym_declaration_list, - STATE(2947), 1, + ACTIONS(4807), 1, + anon_sym_LT, + ACTIONS(4809), 1, + anon_sym_where, + STATE(507), 1, + sym_field_declaration_list, + STATE(2678), 1, + sym_type_parameters, + STATE(3271), 1, sym_where_clause, - STATE(2274), 2, + STATE(2290), 2, sym_line_comment, sym_block_comment, - [71334] = 6, + [71782] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3322), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4686), 2, + ACTIONS(4924), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5087), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2275), 2, + ACTIONS(4926), 1, + anon_sym_LT, + ACTIONS(5170), 1, + anon_sym_SEMI, + ACTIONS(5172), 1, + anon_sym_EQ, + STATE(2702), 1, + sym_type_parameters, + STATE(3308), 1, + sym_trait_bounds, + STATE(2291), 2, sym_line_comment, sym_block_comment, - [71357] = 9, + [71811] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5090), 1, + ACTIONS(5174), 1, anon_sym_SEMI, - STATE(1328), 1, + STATE(562), 1, sym_declaration_list, - STATE(2951), 1, + STATE(2825), 1, sym_where_clause, - STATE(2276), 2, + STATE(2292), 2, sym_line_comment, sym_block_comment, - [71386] = 9, + [71840] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5092), 1, + ACTIONS(5176), 1, anon_sym_SEMI, - STATE(1114), 1, + STATE(573), 1, sym_declaration_list, - STATE(2866), 1, + STATE(2829), 1, sym_where_clause, - STATE(2277), 2, + STATE(2293), 2, sym_line_comment, sym_block_comment, - [71415] = 9, + [71869] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5094), 1, - anon_sym_SEMI, - STATE(1096), 1, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(516), 1, sym_declaration_list, - STATE(2852), 1, + STATE(2665), 1, + sym_trait_bounds, + STATE(3230), 1, sym_where_clause, - STATE(2278), 2, + STATE(2294), 2, sym_line_comment, sym_block_comment, - [71444] = 9, + [71898] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5096), 1, - anon_sym_SEMI, - STATE(773), 1, - sym_declaration_list, - STATE(2798), 1, - sym_where_clause, - STATE(2279), 2, + ACTIONS(1454), 1, + anon_sym_DOT_DOT, + STATE(2295), 2, sym_line_comment, sym_block_comment, - [71473] = 9, + ACTIONS(1456), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [71919] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5098), 1, + ACTIONS(5178), 1, anon_sym_SEMI, - STATE(759), 1, + STATE(1184), 1, sym_declaration_list, - STATE(2796), 1, + STATE(3000), 1, sym_where_clause, - STATE(2280), 2, + STATE(2296), 2, + sym_line_comment, + sym_block_comment, + [71948] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4862), 1, + anon_sym_for, + STATE(2297), 2, sym_line_comment, sym_block_comment, - [71502] = 9, + ACTIONS(3234), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [71971] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5100), 1, + ACTIONS(5180), 1, anon_sym_SEMI, - STATE(1331), 1, + STATE(1179), 1, sym_declaration_list, - STATE(2952), 1, + STATE(2998), 1, sym_where_clause, - STATE(2281), 2, + STATE(2298), 2, sym_line_comment, sym_block_comment, - [71531] = 4, + [72000] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2282), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5182), 1, + anon_sym_SEMI, + STATE(1174), 1, + sym_declaration_list, + STATE(2997), 1, + sym_where_clause, + STATE(2299), 2, sym_line_comment, sym_block_comment, - ACTIONS(4711), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [71550] = 9, + [72029] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5102), 1, + ACTIONS(5184), 1, anon_sym_SEMI, - STATE(1293), 1, + STATE(479), 1, sym_declaration_list, - STATE(2954), 1, + STATE(2718), 1, sym_where_clause, - STATE(2283), 2, + STATE(2300), 2, sym_line_comment, sym_block_comment, - [71579] = 6, + [72058] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(4794), 1, - anon_sym_for, - STATE(2284), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3194), 4, - anon_sym_SEMI, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, anon_sym_LBRACE, + ACTIONS(4922), 1, anon_sym_PLUS, - anon_sym_where, - [71602] = 9, + ACTIONS(5186), 1, + anon_sym_SEMI, + STATE(1159), 1, + sym_declaration_list, + STATE(2995), 1, + sym_where_clause, + STATE(2301), 2, + sym_line_comment, + sym_block_comment, + [72087] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5104), 1, + ACTIONS(5188), 1, anon_sym_SEMI, - STATE(1335), 1, + STATE(1156), 1, sym_declaration_list, - STATE(2955), 1, + STATE(2994), 1, sym_where_clause, - STATE(2285), 2, + STATE(2302), 2, sym_line_comment, sym_block_comment, - [71631] = 6, + [72116] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(4770), 1, - anon_sym_for, - STATE(2286), 2, + ACTIONS(4521), 1, + anon_sym_EQ, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5190), 1, + anon_sym_COMMA, + ACTIONS(5192), 1, + anon_sym_GT, + STATE(2832), 1, + aux_sym_type_parameters_repeat1, + STATE(2953), 1, + sym_trait_bounds, + STATE(2303), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 4, - anon_sym_SEMI, + [72145] = 8, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [71654] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5106), 1, - anon_sym_SEMI, - STATE(723), 1, - sym_declaration_list, - STATE(2792), 1, - sym_where_clause, - STATE(2287), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(5194), 1, + anon_sym_if, + STATE(3422), 1, + sym_label, + STATE(236), 2, + sym_if_expression, + sym_block, + STATE(2304), 2, sym_line_comment, sym_block_comment, - [71683] = 9, + [72172] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_LBRACE, - ACTIONS(4729), 1, + ACTIONS(4807), 1, anon_sym_LT, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - STATE(1294), 1, - sym_field_declaration_list, - STATE(2682), 1, + ACTIONS(5196), 1, + anon_sym_LBRACE, + STATE(1439), 1, + sym_enum_variant_list, + STATE(2695), 1, sym_type_parameters, - STATE(3065), 1, + STATE(3272), 1, sym_where_clause, - STATE(2288), 2, + STATE(2305), 2, sym_line_comment, sym_block_comment, - [71712] = 6, + [72201] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - ACTIONS(4772), 1, + ACTIONS(4852), 1, anon_sym_for, - STATE(2289), 2, + STATE(2306), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 4, + ACTIONS(3234), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [71735] = 7, + [72224] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(5081), 1, + ACTIONS(5134), 1, anon_sym_COLON_COLON, - ACTIONS(4367), 2, + ACTIONS(4402), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5108), 2, + ACTIONS(5198), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2290), 2, + STATE(2307), 2, sym_line_comment, sym_block_comment, - [71760] = 9, + [72249] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5110), 1, - anon_sym_SEMI, - STATE(1107), 1, - sym_declaration_list, - STATE(2849), 1, - sym_where_clause, - STATE(2291), 2, + ACTIONS(4521), 1, + anon_sym_EQ, + ACTIONS(4523), 1, + anon_sym_COMMA, + ACTIONS(4525), 1, + anon_sym_GT, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(2953), 1, + sym_trait_bounds, + STATE(2988), 1, + aux_sym_type_parameters_repeat1, + STATE(2308), 2, sym_line_comment, sym_block_comment, - [71789] = 9, + [72278] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4729), 1, - anon_sym_LT, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(5112), 1, - anon_sym_LBRACE, - STATE(589), 1, - sym_enum_variant_list, - STATE(2668), 1, - sym_type_parameters, - STATE(3130), 1, - sym_where_clause, - STATE(2292), 2, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5200), 1, + anon_sym_PLUS, + ACTIONS(5202), 1, + anon_sym_COMMA, + ACTIONS(5204), 1, + anon_sym_GT, + STATE(2900), 1, + aux_sym_type_arguments_repeat1, + STATE(2901), 1, + sym_trait_bounds, + STATE(2309), 2, sym_line_comment, sym_block_comment, - [71818] = 8, + [72307] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(5114), 1, - anon_sym_if, - STATE(3460), 1, - sym_label, - STATE(1115), 2, - sym_if_expression, - sym_block, - STATE(2293), 2, + ACTIONS(3028), 1, + anon_sym_PLUS, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5202), 1, + anon_sym_COMMA, + ACTIONS(5204), 1, + anon_sym_GT, + STATE(2900), 1, + aux_sym_type_arguments_repeat1, + STATE(2901), 1, + sym_trait_bounds, + STATE(2310), 2, sym_line_comment, sym_block_comment, - [71845] = 9, + [72336] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4729), 1, - anon_sym_LT, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4751), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - STATE(552), 1, - sym_field_declaration_list, - STATE(2671), 1, - sym_type_parameters, - STATE(3231), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5206), 1, + anon_sym_SEMI, + STATE(1200), 1, + sym_declaration_list, + STATE(3001), 1, sym_where_clause, - STATE(2294), 2, + STATE(2311), 2, sym_line_comment, sym_block_comment, - [71874] = 9, + [72365] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5116), 1, - anon_sym_SEMI, - STATE(1373), 1, - sym_declaration_list, - STATE(2958), 1, - sym_where_clause, - STATE(2295), 2, + STATE(2312), 2, sym_line_comment, sym_block_comment, - [71903] = 9, + ACTIONS(4896), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [72384] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4807), 1, + anon_sym_LT, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(5208), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5118), 1, - anon_sym_SEMI, - STATE(1375), 1, - sym_declaration_list, - STATE(2959), 1, + STATE(483), 1, + sym_enum_variant_list, + STATE(2694), 1, + sym_type_parameters, + STATE(3267), 1, sym_where_clause, - STATE(2296), 2, + STATE(2313), 2, sym_line_comment, sym_block_comment, - [71932] = 6, + [72413] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - ACTIONS(4819), 1, + ACTIONS(4856), 1, anon_sym_for, - STATE(2297), 2, + STATE(2314), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 4, + ACTIONS(3234), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [71955] = 9, + [72436] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5120), 1, - anon_sym_SEMI, - STATE(735), 1, - sym_declaration_list, - STATE(2694), 1, - sym_where_clause, - STATE(2298), 2, - sym_line_comment, - sym_block_comment, - [71984] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5122), 1, - anon_sym_SEMI, - STATE(728), 1, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(1430), 1, sym_declaration_list, - STATE(2692), 1, + STATE(2492), 1, + sym_trait_bounds, + STATE(3052), 1, sym_where_clause, - STATE(2299), 2, + STATE(2315), 2, sym_line_comment, sym_block_comment, - [72013] = 9, - ACTIONS(33), 1, - anon_sym_PIPE, + [72465] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5124), 1, - sym_identifier, - ACTIONS(5126), 1, - anon_sym_ref, - ACTIONS(5128), 1, - sym_mutable_specifier, - ACTIONS(5130), 1, - anon_sym_move, - STATE(149), 1, - sym_closure_parameters, - STATE(2300), 2, + ACTIONS(924), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(5210), 1, + anon_sym_if, + STATE(3551), 1, + sym_label, + STATE(459), 2, + sym_if_expression, + sym_block, + STATE(2316), 2, sym_line_comment, sym_block_comment, - [72042] = 9, + [72492] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3006), 1, + ACTIONS(3447), 2, anon_sym_PLUS, - ACTIONS(4865), 1, + anon_sym_DASH_GT, + ACTIONS(4697), 2, anon_sym_COLON, - ACTIONS(5132), 1, + anon_sym_PIPE, + ACTIONS(5165), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5134), 1, - anon_sym_GT, - STATE(2969), 1, - sym_trait_bounds, - STATE(2970), 1, - aux_sym_type_parameters_repeat1, - STATE(2301), 2, + STATE(2317), 2, sym_line_comment, sym_block_comment, - [72071] = 5, + [72515] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4520), 1, - anon_sym_DOT_DOT, - STATE(2302), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5212), 1, + anon_sym_SEMI, + STATE(508), 1, + sym_declaration_list, + STATE(2845), 1, + sym_where_clause, + STATE(2318), 2, sym_line_comment, sym_block_comment, - ACTIONS(4518), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [72092] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + [72544] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(5136), 1, - anon_sym_if, - STATE(3252), 1, - sym_label, - STATE(208), 2, - sym_if_expression, - sym_block, - STATE(2303), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5214), 1, + anon_sym_SEMI, + STATE(593), 1, + sym_declaration_list, + STATE(2847), 1, + sym_where_clause, + STATE(2319), 2, sym_line_comment, sym_block_comment, - [72119] = 9, + [72573] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4486), 1, - anon_sym_EQ, - ACTIONS(4488), 1, - anon_sym_COMMA, - ACTIONS(4490), 1, - anon_sym_GT, - ACTIONS(4865), 1, + ACTIONS(4697), 2, anon_sym_COLON, - STATE(2972), 1, - aux_sym_type_parameters_repeat1, - STATE(2975), 1, - sym_trait_bounds, - STATE(2304), 2, + anon_sym_PIPE, + STATE(2320), 2, sym_line_comment, sym_block_comment, - [72148] = 6, + ACTIONS(3447), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH_GT, + anon_sym_COMMA, + [72594] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4516), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4514), 2, + ACTIONS(5074), 1, + anon_sym_COLON_COLON, + ACTIONS(4402), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2305), 2, + ACTIONS(5198), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2321), 2, sym_line_comment, sym_block_comment, - ACTIONS(4355), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [72171] = 8, + [72619] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1195), 1, - anon_sym_DOT_DOT, - ACTIONS(4883), 1, - sym_identifier, - ACTIONS(4889), 1, - anon_sym_ref, - ACTIONS(4891), 1, - sym_mutable_specifier, - STATE(2306), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5216), 1, + anon_sym_SEMI, + STATE(1237), 1, + sym_declaration_list, + STATE(2962), 1, + sym_where_clause, + STATE(2322), 2, sym_line_comment, sym_block_comment, - STATE(3149), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72198] = 9, + [72648] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5138), 1, + ACTIONS(5218), 1, anon_sym_SEMI, - STATE(616), 1, + STATE(1247), 1, sym_declaration_list, - STATE(2712), 1, + STATE(2961), 1, sym_where_clause, - STATE(2307), 2, + STATE(2323), 2, sym_line_comment, sym_block_comment, - [72227] = 5, + [72677] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4654), 2, + ACTIONS(3465), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2308), 2, + ACTIONS(5220), 1, + anon_sym_EQ, + STATE(2324), 2, sym_line_comment, sym_block_comment, - ACTIONS(3286), 4, - anon_sym_RPAREN, + ACTIONS(3463), 4, anon_sym_PLUS, - anon_sym_DASH_GT, anon_sym_COMMA, - [72248] = 9, + anon_sym_COLON_COLON, + anon_sym_GT, + [72700] = 9, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4486), 1, - anon_sym_EQ, - ACTIONS(4865), 1, - anon_sym_COLON, - ACTIONS(5140), 1, - anon_sym_COMMA, - ACTIONS(5142), 1, - anon_sym_GT, - STATE(2758), 1, - aux_sym_type_parameters_repeat1, - STATE(2975), 1, - sym_trait_bounds, - STATE(2309), 2, + ACTIONS(5222), 1, + sym_identifier, + ACTIONS(5224), 1, + anon_sym_ref, + ACTIONS(5226), 1, + sym_mutable_specifier, + ACTIONS(5228), 1, + anon_sym_move, + STATE(126), 1, + sym_closure_parameters, + STATE(2325), 2, sym_line_comment, sym_block_comment, - [72277] = 9, + [72729] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5144), 1, + ACTIONS(5230), 1, anon_sym_SEMI, - STATE(750), 1, + STATE(1254), 1, sym_declaration_list, - STATE(2948), 1, + STATE(2956), 1, sym_where_clause, - STATE(2310), 2, + STATE(2326), 2, sym_line_comment, sym_block_comment, - [72306] = 7, + [72758] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, + ACTIONS(4404), 1, anon_sym_DOT_DOT, - ACTIONS(4997), 1, + ACTIONS(5074), 1, anon_sym_COLON_COLON, - ACTIONS(4367), 2, + ACTIONS(4402), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5108), 2, + ACTIONS(5066), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2311), 2, + STATE(2327), 2, + sym_line_comment, + sym_block_comment, + [72783] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5232), 1, + anon_sym_SEMI, + STATE(1261), 1, + sym_declaration_list, + STATE(2955), 1, + sym_where_clause, + STATE(2328), 2, sym_line_comment, sym_block_comment, - [72331] = 7, + [72812] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, + ACTIONS(1482), 1, anon_sym_DOT_DOT, - ACTIONS(4997), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, + STATE(2329), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1484), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5017), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2312), 2, + [72833] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5234), 1, + anon_sym_SEMI, + STATE(743), 1, + sym_declaration_list, + STATE(2848), 1, + sym_where_clause, + STATE(2330), 2, sym_line_comment, sym_block_comment, - [72356] = 9, + [72862] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5146), 1, + ACTIONS(5236), 1, anon_sym_SEMI, - STATE(622), 1, + STATE(1282), 1, sym_declaration_list, - STATE(2937), 1, + STATE(2802), 1, sym_where_clause, - STATE(2313), 2, + STATE(2331), 2, sym_line_comment, sym_block_comment, - [72385] = 6, + [72891] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(4706), 1, - anon_sym_for, - STATE(2314), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3194), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(4809), 1, anon_sym_where, - [72408] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(736), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5238), 1, + anon_sym_SEMI, + STATE(722), 1, sym_declaration_list, - STATE(2503), 1, - sym_trait_bounds, - STATE(3124), 1, + STATE(2868), 1, sym_where_clause, - STATE(2315), 2, + STATE(2332), 2, sym_line_comment, sym_block_comment, - [72437] = 9, + [72920] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4865), 1, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(4924), 1, anon_sym_COLON, - STATE(588), 1, + STATE(1390), 1, sym_declaration_list, - STATE(2624), 1, + STATE(2576), 1, sym_trait_bounds, - STATE(3005), 1, + STATE(3160), 1, sym_where_clause, - STATE(2316), 2, + STATE(2333), 2, sym_line_comment, sym_block_comment, - [72466] = 9, + [72949] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5148), 1, + ACTIONS(5240), 1, anon_sym_SEMI, - STATE(1297), 1, + STATE(1344), 1, sym_declaration_list, - STATE(2946), 1, + STATE(2826), 1, sym_where_clause, - STATE(2317), 2, + STATE(2334), 2, sym_line_comment, sym_block_comment, - [72495] = 4, + [72978] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2318), 2, + ACTIONS(3028), 1, + anon_sym_PLUS, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5242), 1, + anon_sym_COMMA, + ACTIONS(5244), 1, + anon_sym_GT, + STATE(2890), 1, + aux_sym_type_arguments_repeat1, + STATE(2891), 1, + sym_trait_bounds, + STATE(2335), 2, sym_line_comment, sym_block_comment, - ACTIONS(3254), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72514] = 9, + [73007] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5200), 1, anon_sym_PLUS, - ACTIONS(5150), 1, - anon_sym_SEMI, - STATE(610), 1, - sym_declaration_list, - STATE(2938), 1, - sym_where_clause, - STATE(2319), 2, + ACTIONS(5242), 1, + anon_sym_COMMA, + ACTIONS(5244), 1, + anon_sym_GT, + STATE(2890), 1, + aux_sym_type_arguments_repeat1, + STATE(2891), 1, + sym_trait_bounds, + STATE(2336), 2, sym_line_comment, sym_block_comment, - [72543] = 6, + [73036] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3286), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4654), 2, + ACTIONS(4924), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5152), 2, - anon_sym_RPAREN, + ACTIONS(5246), 1, anon_sym_COMMA, - STATE(2320), 2, + ACTIONS(5248), 1, + anon_sym_GT, + STATE(2876), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2960), 1, + aux_sym_type_parameters_repeat1, + STATE(2970), 1, + sym_trait_bounds, + STATE(2337), 2, sym_line_comment, sym_block_comment, - [72566] = 6, + [73065] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(4801), 1, - anon_sym_for, - STATE(2321), 2, + ACTIONS(4545), 1, + anon_sym_DOT_DOT, + STATE(2338), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4543), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [73086] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4497), 1, + anon_sym_COLON_COLON, + ACTIONS(5250), 1, + anon_sym_COMMA, + ACTIONS(5252), 1, + anon_sym_GT, + STATE(2960), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3234), 2, anon_sym_PLUS, - anon_sym_where, - [72589] = 8, + anon_sym_as, + STATE(2339), 2, + sym_line_comment, + sym_block_comment, + [73113] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(5155), 1, + ACTIONS(5254), 1, anon_sym_if, - STATE(3509), 1, + STATE(3552), 1, sym_label, - STATE(1670), 2, + STATE(1791), 2, sym_if_expression, sym_block, - STATE(2322), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [72616] = 9, + [73140] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, + ACTIONS(3028), 1, anon_sym_PLUS, - ACTIONS(5157), 1, - anon_sym_SEMI, - STATE(555), 1, - sym_declaration_list, - STATE(2961), 1, - sym_where_clause, - STATE(2323), 2, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5250), 1, + anon_sym_COMMA, + ACTIONS(5252), 1, + anon_sym_GT, + STATE(2960), 1, + aux_sym_type_parameters_repeat1, + STATE(2970), 1, + sym_trait_bounds, + STATE(2341), 2, sym_line_comment, sym_block_comment, - [72645] = 9, + [73169] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5159), 1, + ACTIONS(5256), 1, anon_sym_SEMI, - STATE(1170), 1, + STATE(488), 1, sym_declaration_list, - STATE(2908), 1, + STATE(2985), 1, sym_where_clause, - STATE(2324), 2, + STATE(2342), 2, sym_line_comment, sym_block_comment, - [72674] = 9, + [73198] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4839), 1, + anon_sym_for, + STATE(2343), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3234), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4865), 1, + anon_sym_PLUS, + anon_sym_where, + [73221] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4729), 2, anon_sym_COLON, - STATE(1131), 1, - sym_declaration_list, - STATE(2646), 1, - sym_trait_bounds, - STATE(3143), 1, - sym_where_clause, - STATE(2325), 2, + anon_sym_PIPE, + STATE(2344), 2, sym_line_comment, sym_block_comment, - [72703] = 9, + ACTIONS(3357), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH_GT, + anon_sym_COMMA, + [73242] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5161), 1, + ACTIONS(5258), 1, anon_sym_SEMI, - STATE(1172), 1, + STATE(533), 1, sym_declaration_list, - STATE(2909), 1, + STATE(2813), 1, sym_where_clause, - STATE(2326), 2, + STATE(2345), 2, sym_line_comment, sym_block_comment, - [72732] = 9, + [73271] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5163), 1, + ACTIONS(5260), 1, anon_sym_SEMI, - STATE(1312), 1, + STATE(539), 1, sym_declaration_list, - STATE(2773), 1, + STATE(2770), 1, sym_where_clause, - STATE(2327), 2, + STATE(2346), 2, sym_line_comment, sym_block_comment, - [72761] = 5, + [73300] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4686), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2328), 2, + ACTIONS(4559), 1, + anon_sym_DOT_DOT, + ACTIONS(4557), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2347), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_COMMA, - [72782] = 9, + ACTIONS(4390), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [73323] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, + ACTIONS(3357), 2, anon_sym_PLUS, - ACTIONS(5165), 1, - anon_sym_SEMI, - STATE(548), 1, - sym_declaration_list, - STATE(2709), 1, - sym_where_clause, - STATE(2329), 2, + anon_sym_DASH_GT, + ACTIONS(4729), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5150), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2348), 2, sym_line_comment, sym_block_comment, - [72811] = 9, + [73346] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(4805), 1, anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4807), 1, + anon_sym_LT, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5167), 1, - anon_sym_SEMI, - STATE(576), 1, - sym_declaration_list, - STATE(2710), 1, + STATE(692), 1, + sym_field_declaration_list, + STATE(2478), 1, + sym_type_parameters, + STATE(3073), 1, sym_where_clause, - STATE(2330), 2, + STATE(2349), 2, sym_line_comment, sym_block_comment, - [72840] = 9, + [73375] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5169), 1, + ACTIONS(5262), 1, anon_sym_SEMI, - STATE(611), 1, + STATE(563), 1, sym_declaration_list, - STATE(2711), 1, + STATE(2778), 1, sym_where_clause, - STATE(2331), 2, + STATE(2350), 2, sym_line_comment, sym_block_comment, - [72869] = 9, + [73404] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4729), 1, - anon_sym_LT, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(5171), 1, - anon_sym_LBRACE, - STATE(1321), 1, - sym_enum_variant_list, - STATE(2662), 1, - sym_type_parameters, - STATE(2977), 1, - sym_where_clause, - STATE(2332), 2, + ACTIONS(4541), 1, + anon_sym_DOT_DOT, + STATE(2351), 2, sym_line_comment, sym_block_comment, - [72898] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(5173), 1, + ACTIONS(4539), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_if, - STATE(3510), 1, - sym_label, - STATE(472), 2, - sym_if_expression, - sym_block, - STATE(2333), 2, - sym_line_comment, - sym_block_comment, - [72925] = 9, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [73425] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5175), 1, - anon_sym_SEMI, - STATE(1185), 1, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(1422), 1, sym_declaration_list, - STATE(2912), 1, + STATE(2535), 1, + sym_trait_bounds, + STATE(3115), 1, sym_where_clause, - STATE(2334), 2, + STATE(2352), 2, sym_line_comment, sym_block_comment, - [72954] = 9, + [73454] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5177), 1, + ACTIONS(5264), 1, anon_sym_SEMI, - STATE(1193), 1, + STATE(1434), 1, sym_declaration_list, - STATE(2913), 1, + STATE(2911), 1, sym_where_clause, - STATE(2335), 2, + STATE(2353), 2, sym_line_comment, sym_block_comment, - [72983] = 9, + [73483] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4729), 1, + ACTIONS(4807), 1, anon_sym_LT, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4751), 1, + ACTIONS(5208), 1, anon_sym_LBRACE, - STATE(522), 1, - sym_field_declaration_list, - STATE(2498), 1, + STATE(701), 1, + sym_enum_variant_list, + STATE(2503), 1, sym_type_parameters, - STATE(3177), 1, + STATE(3066), 1, sym_where_clause, - STATE(2336), 2, - sym_line_comment, - sym_block_comment, - [73012] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON, - ACTIONS(4867), 1, - anon_sym_LT, - ACTIONS(5179), 1, - anon_sym_SEMI, - ACTIONS(5181), 1, - anon_sym_EQ, - STATE(2502), 1, - sym_type_parameters, - STATE(3279), 1, - sym_trait_bounds, - STATE(2337), 2, + STATE(2354), 2, sym_line_comment, sym_block_comment, - [73041] = 9, + [73512] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON, - ACTIONS(4867), 1, - anon_sym_LT, - ACTIONS(5183), 1, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5266), 1, anon_sym_SEMI, - ACTIONS(5185), 1, - anon_sym_EQ, - STATE(2680), 1, - sym_type_parameters, - STATE(3411), 1, - sym_trait_bounds, - STATE(2338), 2, + STATE(566), 1, + sym_declaration_list, + STATE(2782), 1, + sym_where_clause, + STATE(2355), 2, sym_line_comment, sym_block_comment, - [73070] = 9, + [73541] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5187), 1, + ACTIONS(5268), 1, anon_sym_SEMI, - STATE(1217), 1, + STATE(1095), 1, sym_declaration_list, - STATE(2762), 1, + STATE(2897), 1, sym_where_clause, - STATE(2339), 2, + STATE(2356), 2, sym_line_comment, sym_block_comment, - [73099] = 6, + [73570] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(4823), 1, - anon_sym_for, - STATE(2340), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3194), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(4809), 1, anon_sym_where, - [73122] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5189), 1, + ACTIONS(5270), 1, anon_sym_SEMI, - STATE(566), 1, + STATE(1125), 1, sym_declaration_list, - STATE(2816), 1, + STATE(2894), 1, sym_where_clause, - STATE(2341), 2, + STATE(2357), 2, sym_line_comment, sym_block_comment, - [73151] = 7, + [73599] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - ACTIONS(5081), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5017), 2, - anon_sym_RPAREN, + ACTIONS(4521), 1, + anon_sym_EQ, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5272), 1, anon_sym_COMMA, - STATE(2342), 2, + ACTIONS(5274), 1, + anon_sym_GT, + STATE(2892), 1, + aux_sym_type_parameters_repeat1, + STATE(2953), 1, + sym_trait_bounds, + STATE(2358), 2, sym_line_comment, sym_block_comment, - [73176] = 6, + [73628] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5087), 1, - anon_sym_RBRACK, - ACTIONS(4686), 2, - anon_sym_COMMA, - anon_sym_PIPE, - STATE(2343), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(5276), 1, + anon_sym_if, + STATE(3500), 1, + sym_label, + STATE(1151), 2, + sym_if_expression, + sym_block, + STATE(2359), 2, sym_line_comment, sym_block_comment, - ACTIONS(3322), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [73199] = 8, + [73655] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3935), 1, - anon_sym_COLON_COLON, - ACTIONS(5132), 1, + ACTIONS(4521), 1, + anon_sym_EQ, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5278), 1, anon_sym_COMMA, - ACTIONS(5134), 1, + ACTIONS(5280), 1, anon_sym_GT, - STATE(2970), 1, + STATE(2794), 1, aux_sym_type_parameters_repeat1, - ACTIONS(3194), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2344), 2, + STATE(2953), 1, + sym_trait_bounds, + STATE(2360), 2, sym_line_comment, sym_block_comment, - [73226] = 9, + [73684] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4729), 1, - anon_sym_LT, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(5112), 1, - anon_sym_LBRACE, - STATE(577), 1, - sym_enum_variant_list, - STATE(2565), 1, - sym_type_parameters, - STATE(3114), 1, - sym_where_clause, - STATE(2345), 2, + ACTIONS(3028), 1, + anon_sym_PLUS, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5282), 1, + anon_sym_COMMA, + ACTIONS(5284), 1, + anon_sym_GT, + STATE(2863), 1, + sym_trait_bounds, + STATE(2864), 1, + aux_sym_type_arguments_repeat1, + STATE(2361), 2, sym_line_comment, sym_block_comment, - [73255] = 6, + [73713] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(4817), 1, - anon_sym_for, - STATE(2346), 2, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5200), 1, + anon_sym_PLUS, + ACTIONS(5282), 1, + anon_sym_COMMA, + ACTIONS(5284), 1, + anon_sym_GT, + STATE(2863), 1, + sym_trait_bounds, + STATE(2864), 1, + aux_sym_type_arguments_repeat1, + STATE(2362), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [73278] = 9, + [73742] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5191), 1, - anon_sym_SEMI, - STATE(627), 1, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(744), 1, sym_declaration_list, - STATE(2732), 1, + STATE(2488), 1, + sym_trait_bounds, + STATE(3034), 1, sym_where_clause, - STATE(2347), 2, - sym_line_comment, - sym_block_comment, - [73307] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4524), 1, - anon_sym_DOT_DOT, - STATE(2348), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - ACTIONS(4522), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [73328] = 5, + [73771] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1476), 1, + ACTIONS(1142), 1, anon_sym_DOT_DOT, - STATE(2349), 2, + ACTIONS(4990), 1, + sym_identifier, + ACTIONS(4996), 1, + anon_sym_ref, + ACTIONS(4998), 1, + sym_mutable_specifier, + STATE(2364), 2, sym_line_comment, sym_block_comment, - ACTIONS(1478), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [73349] = 9, + STATE(3249), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [73798] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON, - ACTIONS(5193), 1, - anon_sym_COMMA, - ACTIONS(5195), 1, - anon_sym_GT, - STATE(2883), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2969), 1, - sym_trait_bounds, - STATE(2970), 1, - aux_sym_type_parameters_repeat1, - STATE(2350), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5286), 1, + anon_sym_SEMI, + STATE(723), 1, + sym_declaration_list, + STATE(2986), 1, + sym_where_clause, + STATE(2365), 2, sym_line_comment, sym_block_comment, - [73378] = 5, + [73827] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1518), 1, - anon_sym_DOT_DOT, - STATE(2351), 2, + STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(1520), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [73399] = 6, + ACTIONS(3281), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73846] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5152), 1, - anon_sym_RBRACK, - ACTIONS(4654), 2, - anon_sym_COMMA, - anon_sym_PIPE, - STATE(2352), 2, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4904), 1, + anon_sym_for, + STATE(2367), 2, sym_line_comment, sym_block_comment, - ACTIONS(3286), 3, + ACTIONS(3234), 4, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [73422] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4704), 1, anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(688), 1, - sym_declaration_list, - STATE(2686), 1, - sym_trait_bounds, - STATE(3021), 1, - sym_where_clause, - STATE(2353), 2, - sym_line_comment, - sym_block_comment, - [73451] = 9, + anon_sym_PLUS, + anon_sym_where, + [73869] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_LBRACE, - ACTIONS(4729), 1, - anon_sym_LT, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - STATE(1177), 1, - sym_field_declaration_list, - STATE(2661), 1, - sym_type_parameters, - STATE(3233), 1, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(661), 1, + sym_declaration_list, + STATE(2598), 1, + sym_trait_bounds, + STATE(3074), 1, sym_where_clause, - STATE(2354), 2, + STATE(2368), 2, sym_line_comment, sym_block_comment, - [73480] = 9, + [73898] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5197), 1, + ACTIONS(5288), 1, anon_sym_SEMI, - STATE(676), 1, + STATE(606), 1, sym_declaration_list, - STATE(2723), 1, + STATE(2887), 1, sym_where_clause, - STATE(2355), 2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - [73509] = 9, + [73927] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, + ACTIONS(4807), 1, + anon_sym_LT, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5199), 1, - anon_sym_SEMI, - STATE(670), 1, - sym_declaration_list, - STATE(2721), 1, + ACTIONS(4821), 1, + anon_sym_LBRACE, + STATE(1415), 1, + sym_field_declaration_list, + STATE(2562), 1, + sym_type_parameters, + STATE(3150), 1, sym_where_clause, - STATE(2356), 2, + STATE(2370), 2, sym_line_comment, sym_block_comment, - [73538] = 9, + [73956] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4729), 1, + ACTIONS(4807), 1, anon_sym_LT, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(5171), 1, + ACTIONS(5196), 1, anon_sym_LBRACE, - STATE(1187), 1, + STATE(1410), 1, sym_enum_variant_list, - STATE(2663), 1, + STATE(2564), 1, sym_type_parameters, - STATE(3209), 1, + STATE(3154), 1, sym_where_clause, - STATE(2357), 2, + STATE(2371), 2, sym_line_comment, sym_block_comment, - [73567] = 9, + [73985] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5201), 1, + ACTIONS(5290), 1, anon_sym_SEMI, - STATE(1192), 1, - sym_declaration_list, - STATE(2786), 1, - sym_where_clause, - STATE(2358), 2, + STATE(1367), 1, + sym_block, + STATE(3550), 1, + sym_label, + STATE(2372), 2, sym_line_comment, sym_block_comment, - [73596] = 9, + [74011] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(1202), 1, - sym_declaration_list, - STATE(2667), 1, - sym_trait_bounds, - STATE(3168), 1, - sym_where_clause, - STATE(2359), 2, + STATE(2373), 2, sym_line_comment, sym_block_comment, - [73625] = 9, + ACTIONS(5292), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [74029] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(4865), 1, + ACTIONS(4593), 1, + anon_sym_GT, + ACTIONS(4924), 1, anon_sym_COLON, - STATE(1257), 1, - sym_declaration_list, - STATE(2631), 1, + ACTIONS(5294), 1, + anon_sym_COMMA, + STATE(2893), 1, + aux_sym_type_parameters_repeat1, + STATE(2970), 1, sym_trait_bounds, - STATE(3051), 1, - sym_where_clause, - STATE(2360), 2, + STATE(2374), 2, + sym_line_comment, + sym_block_comment, + [74055] = 8, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5296), 1, + aux_sym_line_comment_token1, + ACTIONS(5298), 1, + aux_sym_line_comment_token3, + ACTIONS(5300), 1, + sym__inner_line_doc_comment_marker, + ACTIONS(5302), 1, + sym__outer_line_doc_comment_marker, + STATE(3503), 1, + sym__line_doc_comment_marker, + STATE(2375), 2, sym_line_comment, sym_block_comment, - [73654] = 8, + [74081] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4371), 1, - anon_sym_COLON_COLON, - STATE(1560), 1, - sym_parameters, - STATE(1933), 1, - sym_type_arguments, - STATE(2361), 2, + ACTIONS(5304), 1, + anon_sym_RBRACK, + ACTIONS(3234), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4390), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(2376), 2, sym_line_comment, sym_block_comment, - [73680] = 8, + [74103] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4835), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(5203), 1, + ACTIONS(5307), 1, anon_sym_SEMI, STATE(647), 1, sym_block, - STATE(3505), 1, + STATE(3547), 1, sym_label, - STATE(2362), 2, - sym_line_comment, - sym_block_comment, - [73706] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5205), 1, - anon_sym_COMMA, - STATE(2377), 1, - aux_sym_where_clause_repeat1, - STATE(2363), 2, + STATE(2377), 2, sym_line_comment, sym_block_comment, - ACTIONS(3264), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [73728] = 4, + [74129] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2364), 2, + STATE(2378), 2, sym_line_comment, sym_block_comment, - ACTIONS(5207), 5, + ACTIONS(5309), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [73746] = 4, + [74147] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2365), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(5311), 1, + anon_sym_SEMI, + STATE(1232), 1, + sym_block, + STATE(3550), 1, + sym_label, + STATE(2379), 2, sym_line_comment, sym_block_comment, - ACTIONS(5209), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [73764] = 4, + [74173] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2366), 2, + STATE(2380), 2, sym_line_comment, sym_block_comment, - ACTIONS(3713), 5, + ACTIONS(5313), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [73782] = 4, + [74191] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2367), 2, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5315), 1, + anon_sym_COMMA, + ACTIONS(5317), 1, + anon_sym_GT, + STATE(2796), 1, + aux_sym_type_parameters_repeat1, + STATE(2970), 1, + sym_trait_bounds, + STATE(2381), 2, sym_line_comment, sym_block_comment, - ACTIONS(3709), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [73800] = 8, + [74217] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(5211), 1, - anon_sym_move, - STATE(1600), 1, - sym_block, - STATE(3509), 1, - sym_label, - STATE(2368), 2, - sym_line_comment, - sym_block_comment, - [73826] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(5213), 1, - anon_sym_SEMI, - STATE(1282), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + STATE(1820), 1, sym_block, - STATE(3508), 1, + STATE(3552), 1, sym_label, - STATE(2369), 2, - sym_line_comment, - sym_block_comment, - [73852] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2370), 2, + STATE(2382), 2, sym_line_comment, sym_block_comment, - ACTIONS(5215), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [73870] = 8, + [74243] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - STATE(1651), 1, + STATE(1717), 1, sym_block, - STATE(3509), 1, + STATE(3552), 1, sym_label, - STATE(2371), 2, + STATE(2383), 2, sym_line_comment, sym_block_comment, - [73896] = 7, + [74269] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - ACTIONS(5001), 1, + ACTIONS(5319), 1, + anon_sym_RPAREN, + ACTIONS(5321), 1, + anon_sym_COMMA, + STATE(2867), 1, + aux_sym_parameters_repeat1, + ACTIONS(4390), 2, anon_sym_COLON, - ACTIONS(5021), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2372), 2, + anon_sym_PIPE, + STATE(2384), 2, sym_line_comment, sym_block_comment, - [73920] = 8, + [74293] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4371), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_type_arguments, - STATE(1951), 1, - sym_parameters, - STATE(2373), 2, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5282), 1, + anon_sym_COMMA, + ACTIONS(5284), 1, + anon_sym_GT, + STATE(2863), 1, + sym_trait_bounds, + STATE(2864), 1, + aux_sym_type_arguments_repeat1, + STATE(2385), 2, sym_line_comment, sym_block_comment, - [73946] = 8, + [74319] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4835), 1, - anon_sym_LBRACE, - ACTIONS(5217), 1, + ACTIONS(5323), 1, + anon_sym_RBRACK, + ACTIONS(3524), 2, anon_sym_SEMI, - STATE(712), 1, - sym_block, - STATE(3505), 1, - sym_label, - STATE(2374), 2, + anon_sym_PLUS, + ACTIONS(4743), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(2386), 2, sym_line_comment, sym_block_comment, - [73972] = 8, + [74341] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - STATE(1106), 1, + STATE(1341), 1, sym_block, - STATE(3460), 1, + STATE(3500), 1, sym_label, - STATE(2375), 2, + STATE(2387), 2, sym_line_comment, sym_block_comment, - [73998] = 8, + [74367] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4851), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(5219), 1, + ACTIONS(5326), 1, anon_sym_SEMI, - STATE(1243), 1, + STATE(1204), 1, sym_block, - STATE(3508), 1, + STATE(3550), 1, sym_label, - STATE(2376), 2, + STATE(2388), 2, sym_line_comment, sym_block_comment, - [74024] = 5, + [74393] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5223), 1, + ACTIONS(4521), 1, + anon_sym_EQ, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(2953), 1, + sym_trait_bounds, + ACTIONS(5328), 2, anon_sym_COMMA, - ACTIONS(5221), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2377), 3, + anon_sym_GT, + STATE(2389), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - [74044] = 8, + [74417] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(395), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4837), 1, - anon_sym_PLUS, - STATE(1613), 1, + ACTIONS(4916), 1, + anon_sym_LBRACE, + ACTIONS(5330), 1, + anon_sym_SEMI, + STATE(523), 1, sym_block, - STATE(3509), 1, + STATE(3547), 1, sym_label, - STATE(2378), 2, + STATE(2390), 2, sym_line_comment, sym_block_comment, - [74070] = 7, + [74443] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5226), 1, + ACTIONS(5332), 1, + anon_sym_COMMA, + STATE(2412), 1, + aux_sym_where_clause_repeat1, + STATE(2391), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3417), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [74465] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1126), 1, anon_sym_RPAREN, - ACTIONS(5229), 1, + ACTIONS(5334), 1, anon_sym_COMMA, - STATE(2854), 1, + STATE(2945), 1, aux_sym_parameters_repeat1, - ACTIONS(4355), 2, + ACTIONS(4390), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2379), 2, + STATE(2392), 2, + sym_line_comment, + sym_block_comment, + [74489] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5200), 1, + anon_sym_PLUS, + STATE(3129), 1, + sym_trait_bounds, + ACTIONS(5336), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2393), 2, sym_line_comment, sym_block_comment, - [74094] = 7, + [74513] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1181), 1, + ACTIONS(5338), 1, anon_sym_RPAREN, - ACTIONS(5232), 1, + ACTIONS(5341), 1, anon_sym_COMMA, - STATE(2871), 1, + STATE(2889), 1, aux_sym_parameters_repeat1, - ACTIONS(4355), 2, + ACTIONS(4390), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2380), 2, + STATE(2394), 2, sym_line_comment, sym_block_comment, - [74118] = 6, + [74537] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3194), 1, + ACTIONS(3234), 1, anon_sym_PLUS, - ACTIONS(4355), 2, + ACTIONS(4390), 2, anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5234), 2, + ACTIONS(5304), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2381), 2, + STATE(2395), 2, sym_line_comment, sym_block_comment, - [74140] = 8, + [74559] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, + ACTIONS(4767), 1, anon_sym_PIPE, - ACTIONS(5237), 1, + ACTIONS(5344), 1, anon_sym_SEMI, - ACTIONS(5239), 1, + ACTIONS(5346), 1, anon_sym_COLON, - ACTIONS(5241), 1, + ACTIONS(5348), 1, anon_sym_EQ, - ACTIONS(5243), 1, + ACTIONS(5350), 1, anon_sym_else, - STATE(2382), 2, + STATE(2396), 2, sym_line_comment, sym_block_comment, - [74166] = 7, + [74585] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5245), 1, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(5352), 1, + anon_sym_SEMI, + STATE(1291), 1, + sym_block, + STATE(3550), 1, + sym_label, + STATE(2397), 2, + sym_line_comment, + sym_block_comment, + [74611] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1118), 1, anon_sym_RPAREN, - ACTIONS(5247), 1, + ACTIONS(5354), 1, anon_sym_COMMA, - STATE(2854), 1, + STATE(2734), 1, aux_sym_parameters_repeat1, - ACTIONS(4355), 2, + ACTIONS(4390), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2383), 2, + STATE(2398), 2, sym_line_comment, sym_block_comment, - [74190] = 5, + [74635] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4586), 2, + ACTIONS(4743), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2384), 2, + STATE(2399), 2, sym_line_comment, sym_block_comment, - ACTIONS(3592), 3, + ACTIONS(3524), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [74210] = 4, + [74655] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2385), 2, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4922), 1, + anon_sym_PLUS, + STATE(1654), 1, + sym_block, + STATE(3552), 1, + sym_label, + STATE(2400), 2, sym_line_comment, sym_block_comment, - ACTIONS(3680), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + [74681] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5356), 1, + anon_sym_RPAREN, + ACTIONS(5358), 1, anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [74228] = 5, + ACTIONS(5360), 1, + anon_sym_COMMA, + ACTIONS(5362), 1, + anon_sym_PIPE, + STATE(2865), 1, + aux_sym_slice_pattern_repeat1, + STATE(2401), 2, + sym_line_comment, + sym_block_comment, + [74707] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5249), 1, - anon_sym_EQ, - STATE(2386), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(5364), 1, + anon_sym_move, + STATE(1206), 1, + sym_block, + STATE(3500), 1, + sym_label, + STATE(2402), 2, sym_line_comment, sym_block_comment, - ACTIONS(3380), 4, - anon_sym_PLUS, - anon_sym_COMMA, + [74733] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(5070), 1, anon_sym_COLON_COLON, - anon_sym_GT, - [74248] = 4, + ACTIONS(5078), 1, + anon_sym_COLON, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2403), 2, + sym_line_comment, + sym_block_comment, + [74757] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2387), 2, + STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(3684), 5, + ACTIONS(3760), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [74266] = 6, + [74775] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5253), 1, + ACTIONS(3190), 1, + anon_sym_LPAREN, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4388), 1, anon_sym_COLON_COLON, - ACTIONS(5255), 1, - anon_sym_as, - STATE(2388), 2, + STATE(1065), 1, + sym_parameters, + STATE(1921), 1, + sym_type_arguments, + STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(5251), 3, + [74801] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(5366), 1, + anon_sym_SEMI, + STATE(1445), 1, + sym_block, + STATE(3550), 1, + sym_label, + STATE(2406), 2, + sym_line_comment, + sym_block_comment, + [74827] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2407), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5368), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [74845] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(5370), 1, + anon_sym_SEMI, + STATE(1144), 1, + sym_block, + STATE(3550), 1, + sym_label, + STATE(2408), 2, + sym_line_comment, + sym_block_comment, + [74871] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(5372), 1, + anon_sym_SEMI, + ACTIONS(5374), 1, + anon_sym_COLON, + ACTIONS(5376), 1, + anon_sym_EQ, + ACTIONS(5378), 1, + anon_sym_else, + STATE(2409), 2, + sym_line_comment, + sym_block_comment, + [74897] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2894), 1, + anon_sym_POUND, + ACTIONS(5380), 1, + sym_identifier, + ACTIONS(5382), 1, + sym_integer_literal, + STATE(1077), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1464), 1, + sym_attribute_item, + STATE(2410), 2, + sym_line_comment, + sym_block_comment, + [74923] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3028), 1, + anon_sym_PLUS, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(3129), 1, + sym_trait_bounds, + ACTIONS(5336), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2411), 2, + sym_line_comment, + sym_block_comment, + [74947] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5386), 1, anon_sym_COMMA, - [74288] = 6, + ACTIONS(5384), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2412), 3, + sym_line_comment, + sym_block_comment, + aux_sym_where_clause_repeat1, + [74967] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4916), 1, + anon_sym_LBRACE, + ACTIONS(5389), 1, + anon_sym_SEMI, + STATE(493), 1, + sym_block, + STATE(3547), 1, + sym_label, + STATE(2413), 2, + sym_line_comment, + sym_block_comment, + [74993] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5259), 1, + ACTIONS(5393), 1, anon_sym_COLON_COLON, - ACTIONS(5261), 1, + ACTIONS(5395), 1, anon_sym_as, - STATE(2389), 2, + STATE(2414), 2, sym_line_comment, sym_block_comment, - ACTIONS(5257), 3, + ACTIONS(5391), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [74310] = 8, + [75015] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5263), 1, - anon_sym_RPAREN, - ACTIONS(5265), 1, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4916), 1, + anon_sym_LBRACE, + ACTIONS(5397), 1, + anon_sym_SEMI, + STATE(705), 1, + sym_block, + STATE(3547), 1, + sym_label, + STATE(2415), 2, + sym_line_comment, + sym_block_comment, + [75041] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4521), 1, + anon_sym_EQ, + ACTIONS(4924), 1, anon_sym_COLON, - ACTIONS(5267), 1, + STATE(2953), 1, + sym_trait_bounds, + ACTIONS(5399), 2, anon_sym_COMMA, - ACTIONS(5269), 1, - anon_sym_PIPE, - STATE(2895), 1, - aux_sym_slice_pattern_repeat1, - STATE(2390), 2, + anon_sym_GT, + STATE(2416), 2, sym_line_comment, sym_block_comment, - [74336] = 6, + [75065] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5261), 1, - anon_sym_as, - ACTIONS(5271), 1, + ACTIONS(5403), 1, anon_sym_COLON_COLON, - STATE(2391), 2, + ACTIONS(5405), 1, + anon_sym_as, + STATE(2417), 2, sym_line_comment, sym_block_comment, - ACTIONS(5257), 3, + ACTIONS(5401), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [74358] = 8, + [75087] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(5273), 1, - anon_sym_SEMI, - ACTIONS(5275), 1, - anon_sym_COLON, - ACTIONS(5277), 1, - anon_sym_EQ, - ACTIONS(5279), 1, - anon_sym_else, - STATE(2392), 2, + ACTIONS(5405), 1, + anon_sym_as, + ACTIONS(5407), 1, + anon_sym_COLON_COLON, + STATE(2418), 2, sym_line_comment, sym_block_comment, - [74384] = 4, + ACTIONS(5401), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [75109] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2393), 2, + ACTIONS(5405), 1, + anon_sym_as, + ACTIONS(5409), 1, + anon_sym_COLON_COLON, + STATE(2419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3158), 5, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(5401), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_GT, - anon_sym_as, - [74402] = 6, + [75131] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5261), 1, - anon_sym_as, - ACTIONS(5281), 1, - anon_sym_COLON_COLON, - STATE(2394), 2, + STATE(2420), 2, sym_line_comment, sym_block_comment, - ACTIONS(5257), 3, + ACTIONS(5411), 5, anon_sym_SEMI, anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [74424] = 7, + anon_sym_where, + [75149] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1173), 1, - anon_sym_RPAREN, - ACTIONS(5283), 1, - anon_sym_COMMA, - STATE(2890), 1, - aux_sym_parameters_repeat1, - ACTIONS(4355), 2, + ACTIONS(3524), 1, + anon_sym_PLUS, + ACTIONS(4743), 2, anon_sym_COLON, anon_sym_PIPE, - STATE(2395), 2, + ACTIONS(5323), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2421), 2, sym_line_comment, sym_block_comment, - [74448] = 8, + [75171] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4835), 1, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(5285), 1, + ACTIONS(5413), 1, anon_sym_SEMI, - STATE(503), 1, + STATE(1245), 1, sym_block, - STATE(3505), 1, + STATE(3550), 1, sym_label, - STATE(2396), 2, + STATE(2422), 2, sym_line_comment, sym_block_comment, - [74474] = 8, + [75197] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(5287), 1, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(5415), 1, anon_sym_SEMI, - ACTIONS(5289), 1, - anon_sym_COLON, - ACTIONS(5291), 1, - anon_sym_EQ, - ACTIONS(5293), 1, - anon_sym_else, - STATE(2397), 2, + STATE(1273), 1, + sym_block, + STATE(3550), 1, + sym_label, + STATE(2423), 2, sym_line_comment, sym_block_comment, - [74500] = 6, + [75223] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5295), 1, - anon_sym_RBRACK, - ACTIONS(3592), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(5417), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4586), 2, - anon_sym_COMMA, - anon_sym_PIPE, - STATE(2398), 2, + STATE(1322), 1, + sym_block, + STATE(3550), 1, + sym_label, + STATE(2424), 2, sym_line_comment, sym_block_comment, - [74522] = 8, + [75249] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4674), 1, - anon_sym_PIPE, - ACTIONS(5298), 1, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4916), 1, + anon_sym_LBRACE, + ACTIONS(5419), 1, anon_sym_SEMI, - ACTIONS(5300), 1, - anon_sym_COLON, - ACTIONS(5302), 1, - anon_sym_EQ, - ACTIONS(5304), 1, - anon_sym_else, - STATE(2399), 2, + STATE(509), 1, + sym_block, + STATE(3547), 1, + sym_label, + STATE(2425), 2, sym_line_comment, sym_block_comment, - [74548] = 7, + [75275] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_RPAREN, - ACTIONS(5308), 1, + STATE(2426), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5421), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - STATE(2826), 1, - aux_sym_parameters_repeat1, - ACTIONS(4355), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2400), 2, + anon_sym_where, + [75293] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4922), 1, + anon_sym_PLUS, + STATE(1106), 1, + sym_block, + STATE(3500), 1, + sym_label, + STATE(2427), 2, sym_line_comment, sym_block_comment, - [74572] = 7, + [75319] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5310), 1, - anon_sym_RPAREN, - ACTIONS(5312), 1, - anon_sym_COMMA, - STATE(2915), 1, - aux_sym_parameters_repeat1, - ACTIONS(4355), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2401), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(5423), 1, + anon_sym_SEMI, + STATE(1331), 1, + sym_block, + STATE(3550), 1, + sym_label, + STATE(2428), 2, sym_line_comment, sym_block_comment, - [74596] = 7, + [75345] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4113), 1, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4910), 1, anon_sym_LBRACE, - ACTIONS(4987), 1, - anon_sym_STAR, - STATE(2821), 1, - sym_use_list, - ACTIONS(4985), 2, - sym_identifier, - sym_super, - STATE(2402), 2, + ACTIONS(5425), 1, + anon_sym_SEMI, + STATE(1352), 1, + sym_block, + STATE(3550), 1, + sym_label, + STATE(2429), 2, sym_line_comment, sym_block_comment, - [74620] = 4, + [75371] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2403), 2, + STATE(2430), 2, sym_line_comment, sym_block_comment, - ACTIONS(5314), 5, + ACTIONS(3812), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [74638] = 6, + [75389] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3592), 1, - anon_sym_PLUS, - ACTIONS(4586), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5295), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2404), 2, + STATE(2431), 2, sym_line_comment, sym_block_comment, - [74660] = 8, + ACTIONS(3674), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75407] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4835), 1, - anon_sym_LBRACE, - ACTIONS(5316), 1, - anon_sym_SEMI, - STATE(517), 1, - sym_block, - STATE(3505), 1, - sym_label, - STATE(2405), 2, + STATE(2432), 2, sym_line_comment, sym_block_comment, - [74686] = 5, + ACTIONS(5427), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75425] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4355), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2406), 2, + STATE(2433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3194), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [74706] = 8, + ACTIONS(3616), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75443] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(5318), 1, - anon_sym_move, - STATE(1441), 1, - sym_block, - STATE(3460), 1, - sym_label, - STATE(2407), 2, + STATE(2434), 2, sym_line_comment, sym_block_comment, - [74732] = 4, + ACTIONS(5429), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75461] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2408), 2, + STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(5320), 5, + ACTIONS(5431), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [74750] = 8, + [75479] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(5322), 1, - anon_sym_move, - STATE(484), 1, + ACTIONS(4916), 1, + anon_sym_LBRACE, + ACTIONS(5433), 1, + anon_sym_SEMI, + STATE(515), 1, sym_block, - STATE(3510), 1, + STATE(3547), 1, sym_label, - STATE(2409), 2, + STATE(2436), 2, sym_line_comment, sym_block_comment, - [74776] = 7, + [75505] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - ACTIONS(5019), 1, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(5435), 1, + anon_sym_SEMI, + ACTIONS(5437), 1, anon_sym_COLON, - ACTIONS(5021), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2410), 2, + ACTIONS(5439), 1, + anon_sym_EQ, + ACTIONS(5441), 1, + anon_sym_else, + STATE(2437), 2, sym_line_comment, sym_block_comment, - [74800] = 6, + [75531] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5234), 1, - anon_sym_RBRACK, - ACTIONS(3194), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4910), 1, + anon_sym_LBRACE, + ACTIONS(5443), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4355), 2, - anon_sym_COMMA, - anon_sym_PIPE, - STATE(2411), 2, + STATE(1359), 1, + sym_block, + STATE(3550), 1, + sym_label, + STATE(2438), 2, sym_line_comment, sym_block_comment, - [74822] = 8, + [75557] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4851), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(5324), 1, - anon_sym_SEMI, - STATE(1426), 1, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(5445), 1, + anon_sym_move, + STATE(1643), 1, sym_block, - STATE(3508), 1, + STATE(3552), 1, sym_label, - STATE(2412), 2, + STATE(2439), 2, sym_line_comment, sym_block_comment, - [74848] = 8, + [75583] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, + ACTIONS(4595), 1, + anon_sym_GT, + ACTIONS(4924), 1, anon_sym_COLON, - ACTIONS(5326), 1, + ACTIONS(5447), 1, anon_sym_COMMA, - ACTIONS(5328), 1, - anon_sym_GT, - STATE(2760), 1, + STATE(2830), 1, aux_sym_type_parameters_repeat1, - STATE(2969), 1, + STATE(2970), 1, sym_trait_bounds, - STATE(2413), 2, + STATE(2440), 2, sym_line_comment, sym_block_comment, - [74874] = 8, + [75609] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4835), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(5330), 1, + ACTIONS(5449), 1, anon_sym_SEMI, - STATE(582), 1, + STATE(586), 1, sym_block, - STATE(3505), 1, + STATE(3547), 1, sym_label, - STATE(2414), 2, + STATE(2441), 2, sym_line_comment, sym_block_comment, - [74900] = 8, - ACTIONS(3), 1, + [75635] = 6, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5332), 1, - aux_sym_line_comment_token1, - ACTIONS(5334), 1, - aux_sym_line_comment_token3, - ACTIONS(5336), 1, - sym__inner_line_doc_comment_marker, - ACTIONS(5338), 1, - sym__outer_line_doc_comment_marker, - STATE(3367), 1, - sym__line_doc_comment_marker, - STATE(2415), 2, + ACTIONS(5453), 1, + anon_sym_COMMA, + STATE(2391), 1, + aux_sym_where_clause_repeat1, + STATE(2442), 2, sym_line_comment, sym_block_comment, - [74926] = 4, + ACTIONS(5451), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [75657] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2416), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(4519), 1, + anon_sym_COLON, + STATE(1921), 1, + sym_type_arguments, + STATE(2557), 1, + sym_trait_bounds, + STATE(2443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3705), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [74944] = 8, + [75683] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, - anon_sym_PLUS, - STATE(1305), 1, - sym_block, - STATE(3460), 1, - sym_label, - STATE(2417), 2, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + STATE(1583), 1, + sym_parameters, + STATE(1921), 1, + sym_type_arguments, + STATE(2444), 2, sym_line_comment, sym_block_comment, - [74970] = 8, + [75709] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(5340), 1, - anon_sym_SEMI, - STATE(1164), 1, - sym_block, - STATE(3508), 1, - sym_label, - STATE(2418), 2, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5250), 1, + anon_sym_COMMA, + ACTIONS(5252), 1, + anon_sym_GT, + STATE(2960), 1, + aux_sym_type_parameters_repeat1, + STATE(2970), 1, + sym_trait_bounds, + STATE(2445), 2, sym_line_comment, sym_block_comment, - [74996] = 4, + [75735] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2419), 2, + STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3701), 5, + ACTIONS(3804), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [75014] = 8, + [75753] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(5342), 1, - anon_sym_SEMI, - STATE(1416), 1, - sym_block, - STATE(3508), 1, - sym_label, - STATE(2420), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + STATE(1921), 1, + sym_type_arguments, + STATE(1942), 1, + sym_parameters, + STATE(2447), 2, sym_line_comment, sym_block_comment, - [75040] = 8, + [75779] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(5344), 1, - anon_sym_SEMI, - STATE(1411), 1, - sym_block, - STATE(3508), 1, - sym_label, - STATE(2421), 2, + ACTIONS(5455), 1, + anon_sym_RPAREN, + ACTIONS(5457), 1, + anon_sym_COMMA, + STATE(2888), 1, + aux_sym_parameters_repeat1, + ACTIONS(4390), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2448), 2, sym_line_comment, sym_block_comment, - [75066] = 4, + [75803] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2422), 2, + ACTIONS(4739), 1, + anon_sym_RPAREN, + ACTIONS(5459), 1, + anon_sym_COLON, + ACTIONS(5461), 1, + anon_sym_COMMA, + ACTIONS(5463), 1, + anon_sym_PIPE, + STATE(2735), 1, + aux_sym_closure_parameters_repeat1, + STATE(2449), 2, + sym_line_comment, + sym_block_comment, + [75829] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2450), 2, sym_line_comment, sym_block_comment, - ACTIONS(5346), 5, + ACTIONS(5465), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [75084] = 4, + [75847] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2423), 2, + STATE(2451), 2, sym_line_comment, sym_block_comment, - ACTIONS(5348), 5, + ACTIONS(5467), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [75102] = 4, + [75865] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2424), 2, + ACTIONS(1120), 1, + anon_sym_RPAREN, + ACTIONS(5469), 1, + anon_sym_COMMA, + STATE(2853), 1, + aux_sym_parameters_repeat1, + ACTIONS(4390), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2452), 2, + sym_line_comment, + sym_block_comment, + [75889] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(5350), 5, + ACTIONS(3650), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [75120] = 8, + [75907] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON, - ACTIONS(5132), 1, - anon_sym_COMMA, - ACTIONS(5134), 1, - anon_sym_GT, - STATE(2969), 1, - sym_trait_bounds, - STATE(2970), 1, - aux_sym_type_parameters_repeat1, - STATE(2425), 2, + STATE(2454), 2, sym_line_comment, sym_block_comment, - [75146] = 4, + ACTIONS(3654), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75925] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2426), 2, + STATE(2455), 2, sym_line_comment, sym_block_comment, - ACTIONS(5352), 5, + ACTIONS(5471), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [75164] = 8, + [75943] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(5354), 1, + STATE(2456), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3698), 5, anon_sym_SEMI, - STATE(1117), 1, - sym_block, - STATE(3508), 1, - sym_label, - STATE(2427), 2, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75961] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4390), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2457), 2, sym_line_comment, sym_block_comment, - [75190] = 8, + ACTIONS(3234), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [75981] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4835), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5473), 1, anon_sym_SEMI, - STATE(641), 1, + STATE(690), 1, sym_block, - STATE(3505), 1, + STATE(3547), 1, sym_label, - STATE(2428), 2, + STATE(2458), 2, sym_line_comment, sym_block_comment, - [75216] = 8, + [76007] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(5358), 1, - anon_sym_SEMI, - STATE(1401), 1, - sym_block, - STATE(3508), 1, - sym_label, - STATE(2429), 2, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(5068), 1, + anon_sym_COLON, + ACTIONS(5070), 1, + anon_sym_COLON_COLON, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2459), 2, + sym_line_comment, + sym_block_comment, + [76031] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5475), 1, + anon_sym_RPAREN, + ACTIONS(5477), 1, + anon_sym_COMMA, + STATE(2889), 1, + aux_sym_parameters_repeat1, + ACTIONS(4390), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2460), 2, + sym_line_comment, + sym_block_comment, + [76055] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2461), 2, sym_line_comment, sym_block_comment, - [75242] = 8, + ACTIONS(3162), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_as, + [76073] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4851), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(5360), 1, + ACTIONS(5479), 1, anon_sym_SEMI, - STATE(1392), 1, + STATE(673), 1, sym_block, - STATE(3508), 1, + STATE(3547), 1, sym_label, - STATE(2430), 2, + STATE(2462), 2, sym_line_comment, sym_block_comment, - [75268] = 7, + [76099] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4113), 1, + ACTIONS(924), 1, anon_sym_LBRACE, - ACTIONS(5364), 1, - anon_sym_STAR, - STATE(2751), 1, - sym_use_list, - ACTIONS(5362), 2, - sym_identifier, - sym_super, - STATE(2431), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(5481), 1, + anon_sym_move, + STATE(455), 1, + sym_block, + STATE(3551), 1, + sym_label, + STATE(2463), 2, sym_line_comment, sym_block_comment, - [75292] = 8, + [76125] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4371), 1, - anon_sym_COLON_COLON, - STATE(1062), 1, - sym_parameters, - STATE(1933), 1, - sym_type_arguments, - STATE(2432), 2, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5242), 1, + anon_sym_COMMA, + ACTIONS(5244), 1, + anon_sym_GT, + STATE(2890), 1, + aux_sym_type_arguments_repeat1, + STATE(2891), 1, + sym_trait_bounds, + STATE(2464), 2, sym_line_comment, sym_block_comment, - [75318] = 4, + [76151] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2433), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5366), 5, + ACTIONS(4767), 1, + anon_sym_PIPE, + ACTIONS(5483), 1, anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(5485), 1, + anon_sym_COLON, + ACTIONS(5487), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75336] = 8, + ACTIONS(5489), 1, + anon_sym_else, + STATE(2465), 2, + sym_line_comment, + sym_block_comment, + [76177] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4835), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(5368), 1, + ACTIONS(5491), 1, anon_sym_SEMI, - STATE(629), 1, + STATE(580), 1, sym_block, - STATE(3505), 1, + STATE(3547), 1, sym_label, - STATE(2434), 2, - sym_line_comment, - sym_block_comment, - [75362] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1169), 1, - anon_sym_RPAREN, - ACTIONS(5370), 1, - anon_sym_COMMA, - STATE(2899), 1, - aux_sym_parameters_repeat1, - ACTIONS(4355), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2435), 2, + STATE(2466), 2, sym_line_comment, sym_block_comment, - [75386] = 8, + [76203] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4835), 1, + ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(5372), 1, - anon_sym_SEMI, - STATE(683), 1, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + ACTIONS(4922), 1, + anon_sym_PLUS, + STATE(1333), 1, sym_block, - STATE(3505), 1, + STATE(3500), 1, sym_label, - STATE(2436), 2, + STATE(2467), 2, sym_line_comment, sym_block_comment, - [75412] = 8, + [76229] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4851), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(5374), 1, + ACTIONS(5493), 1, anon_sym_SEMI, - STATE(1358), 1, + STATE(595), 1, sym_block, - STATE(3508), 1, + STATE(3547), 1, sym_label, - STATE(2437), 2, + STATE(2468), 2, sym_line_comment, sym_block_comment, - [75438] = 4, + [76255] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2438), 2, + STATE(2469), 2, sym_line_comment, sym_block_comment, - ACTIONS(5376), 5, + ACTIONS(3710), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [75456] = 8, + [76273] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, - anon_sym_PLUS, - STATE(1299), 1, - sym_block, - STATE(3460), 1, - sym_label, - STATE(2439), 2, + STATE(2470), 2, sym_line_comment, sym_block_comment, - [75482] = 8, + ACTIONS(3682), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [76291] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4851), 1, + ACTIONS(4916), 1, anon_sym_LBRACE, - ACTIONS(5378), 1, + ACTIONS(5495), 1, anon_sym_SEMI, - STATE(1354), 1, + STATE(663), 1, sym_block, - STATE(3508), 1, + STATE(3547), 1, sym_label, - STATE(2440), 2, + STATE(2471), 2, sym_line_comment, sym_block_comment, - [75508] = 8, + [76317] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(5380), 1, - anon_sym_SEMI, - STATE(1089), 1, - sym_block, - STATE(3508), 1, - sym_label, - STATE(2441), 2, + ACTIONS(5497), 1, + anon_sym_STAR_SLASH, + ACTIONS(5499), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5501), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5503), 1, + sym__block_comment_content, + STATE(3095), 1, + sym__block_doc_comment_marker, + STATE(2472), 2, sym_line_comment, sym_block_comment, - [75534] = 8, + [76343] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4835), 1, - anon_sym_LBRACE, - ACTIONS(5382), 1, - anon_sym_SEMI, - STATE(563), 1, - sym_block, - STATE(3505), 1, - sym_label, - STATE(2442), 2, + STATE(2473), 2, sym_line_comment, sym_block_comment, - [75560] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4486), 1, + ACTIONS(5505), 5, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_EQ, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(2975), 1, - sym_trait_bounds, - ACTIONS(5384), 2, anon_sym_COMMA, - anon_sym_GT, - STATE(2443), 2, - sym_line_comment, - sym_block_comment, - [75584] = 4, + anon_sym_where, + [76361] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2444), 2, + STATE(2474), 2, sym_line_comment, sym_block_comment, - ACTIONS(5386), 5, + ACTIONS(5507), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [75602] = 8, + [76379] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4371), 1, - anon_sym_COLON_COLON, - ACTIONS(4484), 1, + ACTIONS(4924), 1, anon_sym_COLON, - STATE(1933), 1, - sym_type_arguments, - STATE(2635), 1, + ACTIONS(5202), 1, + anon_sym_COMMA, + ACTIONS(5204), 1, + anon_sym_GT, + STATE(2900), 1, + aux_sym_type_arguments_repeat1, + STATE(2901), 1, sym_trait_bounds, - STATE(2445), 2, + STATE(2475), 2, sym_line_comment, sym_block_comment, - [75628] = 8, + [76405] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4835), 1, + ACTIONS(4240), 1, anon_sym_LBRACE, - ACTIONS(5388), 1, - anon_sym_SEMI, - STATE(690), 1, - sym_block, - STATE(3505), 1, - sym_label, - STATE(2446), 2, + ACTIONS(5511), 1, + anon_sym_STAR, + STATE(2972), 1, + sym_use_list, + ACTIONS(5509), 2, + sym_identifier, + sym_super, + STATE(2476), 2, sym_line_comment, sym_block_comment, - [75654] = 8, + [76429] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(395), 1, + ACTIONS(4240), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4837), 1, - anon_sym_PLUS, - STATE(1628), 1, - sym_block, - STATE(3509), 1, - sym_label, - STATE(2447), 2, + ACTIONS(5052), 1, + anon_sym_STAR, + STATE(2967), 1, + sym_use_list, + ACTIONS(5050), 2, + sym_identifier, + sym_super, + STATE(2477), 2, sym_line_comment, sym_block_comment, - [75680] = 6, + [76453] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5392), 1, - anon_sym_COMMA, - STATE(2363), 1, - aux_sym_where_clause_repeat1, - STATE(2448), 2, + ACTIONS(4805), 1, + anon_sym_LBRACE, + ACTIONS(4809), 1, + anon_sym_where, + STATE(500), 1, + sym_field_declaration_list, + STATE(3262), 1, + sym_where_clause, + STATE(2478), 2, sym_line_comment, sym_block_comment, - ACTIONS(5390), 3, - anon_sym_SEMI, + [76476] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5050), 1, + sym_super, + ACTIONS(5513), 1, + sym_identifier, + STATE(3139), 1, + sym_type_arguments, + STATE(2479), 2, + sym_line_comment, + sym_block_comment, + [76499] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_SQUOTE, - [75702] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - ACTIONS(4835), 1, - anon_sym_LBRACE, - ACTIONS(5394), 1, - anon_sym_SEMI, - STATE(761), 1, + STATE(199), 1, sym_block, - STATE(3505), 1, + STATE(3422), 1, sym_label, - STATE(2449), 2, + STATE(2480), 2, sym_line_comment, sym_block_comment, - [75728] = 8, + [76522] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4835), 1, - anon_sym_LBRACE, - ACTIONS(5396), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5515), 1, anon_sym_SEMI, - STATE(765), 1, - sym_block, - STATE(3505), 1, - sym_label, - STATE(2450), 2, + ACTIONS(5517), 1, + anon_sym_EQ, + ACTIONS(5519), 1, + anon_sym_else, + STATE(2481), 2, sym_line_comment, sym_block_comment, - [75754] = 4, + [76545] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2451), 2, + ACTIONS(5521), 1, + anon_sym_DQUOTE, + STATE(2504), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5523), 2, + sym_string_content, + sym_escape_sequence, + STATE(2482), 2, sym_line_comment, sym_block_comment, - ACTIONS(5398), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75772] = 4, + [76566] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2452), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(5525), 1, + anon_sym_for, + STATE(1921), 1, + sym_type_arguments, + STATE(2483), 2, sym_line_comment, sym_block_comment, - ACTIONS(5400), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75790] = 8, + [76589] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5402), 1, - anon_sym_STAR_SLASH, - ACTIONS(5404), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5406), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5408), 1, - sym__block_comment_content, - STATE(3091), 1, - sym__block_doc_comment_marker, - STATE(2453), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(226), 1, + sym_block, + STATE(3422), 1, + sym_label, + STATE(2484), 2, sym_line_comment, sym_block_comment, - [75816] = 7, + [76612] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(395), 1, + ACTIONS(924), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(1609), 1, + STATE(457), 1, sym_block, - STATE(3509), 1, + STATE(3551), 1, sym_label, - STATE(2454), 2, + STATE(2485), 2, sym_line_comment, sym_block_comment, - [75839] = 6, + [76635] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - ACTIONS(5081), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2455), 2, + ACTIONS(924), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(465), 1, + sym_block, + STATE(3551), 1, + sym_label, + STATE(2486), 2, sym_line_comment, sym_block_comment, - [75860] = 5, - ACTIONS(3), 1, + [76658] = 7, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5410), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2456), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5527), 1, + anon_sym_RPAREN, + ACTIONS(5529), 1, + anon_sym_COMMA, + STATE(2792), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2487), 2, sym_line_comment, sym_block_comment, - ACTIONS(5412), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [75879] = 5, - ACTIONS(3), 1, + [76681] = 7, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5414), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2457), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(543), 1, + sym_declaration_list, + STATE(3199), 1, + sym_where_clause, + STATE(2488), 2, sym_line_comment, sym_block_comment, - ACTIONS(5416), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [75898] = 7, + [76704] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4371), 1, - anon_sym_COLON_COLON, - ACTIONS(5418), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(2458), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5531), 1, + anon_sym_SEMI, + STATE(3372), 1, + sym_where_clause, + STATE(2489), 2, sym_line_comment, sym_block_comment, - [75921] = 7, + [76727] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(3460), 1, - sym_label, - STATE(3516), 1, + STATE(1635), 1, sym_block, - STATE(2459), 2, + STATE(3552), 1, + sym_label, + STATE(2490), 2, sym_line_comment, sym_block_comment, - [75944] = 7, + [76750] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4371), 1, + ACTIONS(4388), 1, anon_sym_COLON_COLON, - ACTIONS(5420), 1, + ACTIONS(5533), 1, anon_sym_for, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(2460), 2, + STATE(2491), 2, sym_line_comment, sym_block_comment, - [75967] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [76773] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(277), 1, - sym_block, - STATE(3252), 1, - sym_label, - STATE(2461), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1234), 1, + sym_declaration_list, + STATE(3014), 1, + sym_where_clause, + STATE(2492), 2, sym_line_comment, sym_block_comment, - [75990] = 7, + [76796] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4371), 1, + ACTIONS(4388), 1, anon_sym_COLON_COLON, - ACTIONS(5422), 1, + ACTIONS(5535), 1, anon_sym_for, - STATE(1933), 1, + STATE(1921), 1, sym_type_arguments, - STATE(2462), 2, + STATE(2493), 2, sym_line_comment, sym_block_comment, - [76013] = 4, + [76819] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2463), 2, + ACTIONS(4595), 1, + anon_sym_GT, + ACTIONS(5447), 1, + anon_sym_COMMA, + ACTIONS(5537), 1, + anon_sym_EQ, + STATE(2830), 1, + aux_sym_type_parameters_repeat1, + STATE(2494), 2, sym_line_comment, sym_block_comment, - ACTIONS(1456), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [76030] = 5, - ACTIONS(3), 1, + [76842] = 6, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5424), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2464), 2, + ACTIONS(5539), 1, + anon_sym_DQUOTE, + STATE(2634), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5523), 2, + sym_string_content, + sym_escape_sequence, + STATE(2495), 2, sym_line_comment, sym_block_comment, - ACTIONS(5426), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [76049] = 7, + [76863] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4371), 1, - anon_sym_COLON_COLON, - ACTIONS(4534), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(2465), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5541), 1, + anon_sym_SEMI, + STATE(3293), 1, + sym_where_clause, + STATE(2496), 2, sym_line_comment, sym_block_comment, - [76072] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [76886] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(191), 1, - sym_block, - STATE(3252), 1, - sym_label, - STATE(2466), 2, + ACTIONS(3896), 1, + anon_sym_LT2, + ACTIONS(4032), 1, + anon_sym_COLON_COLON, + ACTIONS(4787), 1, + anon_sym_BANG, + STATE(1606), 1, + sym_type_arguments, + STATE(2497), 2, sym_line_comment, sym_block_comment, - [76095] = 7, + [76909] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5428), 1, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(5430), 1, - anon_sym_for, - ACTIONS(5432), 1, - anon_sym_loop, - ACTIONS(5434), 1, - anon_sym_while, - STATE(2467), 2, + STATE(517), 1, + sym_declaration_list, + STATE(3228), 1, + sym_where_clause, + STATE(2498), 2, sym_line_comment, sym_block_comment, - [76118] = 6, + [76932] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - ACTIONS(4991), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2468), 2, + ACTIONS(924), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(454), 1, + sym_block, + STATE(3551), 1, + sym_label, + STATE(2499), 2, sym_line_comment, sym_block_comment, - [76139] = 7, + [76955] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(5543), 1, + anon_sym_LPAREN, + ACTIONS(5545), 1, + anon_sym_LBRACK, + ACTIONS(5547), 1, anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - STATE(694), 1, - sym_declaration_list, - STATE(3007), 1, - sym_where_clause, - STATE(2469), 2, + STATE(1936), 1, + sym_delim_token_tree, + STATE(2500), 2, sym_line_comment, sym_block_comment, - [76162] = 7, + [76978] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, + ACTIONS(924), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(3339), 1, + STATE(444), 1, sym_block, - STATE(3460), 1, + STATE(3551), 1, sym_label, - STATE(2470), 2, + STATE(2501), 2, sym_line_comment, sym_block_comment, - [76185] = 7, + [77001] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5436), 1, + ACTIONS(924), 1, anon_sym_LBRACE, - ACTIONS(5438), 1, - anon_sym_for, - ACTIONS(5440), 1, - anon_sym_loop, - ACTIONS(5442), 1, - anon_sym_while, - STATE(2471), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(458), 1, + sym_block, + STATE(3551), 1, + sym_label, + STATE(2502), 2, sym_line_comment, sym_block_comment, - [76208] = 6, + [77024] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - ACTIONS(4997), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2472), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(5208), 1, + anon_sym_LBRACE, + STATE(481), 1, + sym_enum_variant_list, + STATE(3248), 1, + sym_where_clause, + STATE(2503), 2, sym_line_comment, sym_block_comment, - [76229] = 6, + [77047] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(2969), 1, - sym_trait_bounds, - ACTIONS(5444), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2473), 2, + ACTIONS(5549), 1, + anon_sym_DQUOTE, + STATE(2670), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5523), 2, + sym_string_content, + sym_escape_sequence, + STATE(2504), 2, sym_line_comment, sym_block_comment, - [76250] = 6, + [77068] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5447), 1, - anon_sym_DQUOTE, - STATE(2579), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5449), 2, - sym__string_content, - sym_escape_sequence, - STATE(2474), 2, + ACTIONS(3896), 1, + anon_sym_LT2, + ACTIONS(5551), 1, + sym_identifier, + ACTIONS(5553), 1, + sym_super, + STATE(1547), 1, + sym_type_arguments, + STATE(2505), 2, sym_line_comment, sym_block_comment, - [76271] = 7, + [77091] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, + ACTIONS(5543), 1, + anon_sym_LPAREN, + ACTIONS(5545), 1, + anon_sym_LBRACK, + ACTIONS(5547), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(3460), 1, - sym_label, - STATE(3494), 1, - sym_block, - STATE(2475), 2, + STATE(1951), 1, + sym_delim_token_tree, + STATE(2506), 2, sym_line_comment, sym_block_comment, - [76294] = 7, + [77114] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4729), 1, - anon_sym_LT, - STATE(2160), 1, - sym_parameters, - STATE(3080), 1, - sym_type_parameters, - STATE(2476), 2, + ACTIONS(5555), 1, + anon_sym_COLON_COLON, + STATE(2507), 2, sym_line_comment, sym_block_comment, - [76317] = 7, + ACTIONS(4667), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77133] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2922), 1, - anon_sym_POUND, - ACTIONS(5451), 1, - sym_identifier, - STATE(1452), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1494), 1, - sym_attribute_item, - STATE(2477), 2, + ACTIONS(5557), 1, + anon_sym_COLON_COLON, + STATE(2508), 2, sym_line_comment, sym_block_comment, - [76340] = 5, + ACTIONS(4667), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77152] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4355), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5453), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2478), 2, + ACTIONS(5559), 1, + anon_sym_COLON_COLON, + STATE(2509), 2, sym_line_comment, sym_block_comment, - [76359] = 7, + ACTIONS(4667), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77171] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(3460), 1, - sym_label, - STATE(3507), 1, - sym_block, - STATE(2479), 2, + ACTIONS(5561), 1, + anon_sym_COLON_COLON, + STATE(2510), 2, sym_line_comment, sym_block_comment, - [76382] = 7, + ACTIONS(4675), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77190] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(3460), 1, - sym_label, - STATE(3520), 1, - sym_block, - STATE(2480), 2, + ACTIONS(3896), 1, + anon_sym_LT2, + ACTIONS(5551), 1, + sym_identifier, + ACTIONS(5553), 1, + sym_super, + STATE(1550), 1, + sym_type_arguments, + STATE(2511), 2, sym_line_comment, sym_block_comment, - [76405] = 5, + [77213] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5455), 1, - anon_sym_DQUOTE, - ACTIONS(5457), 2, - sym__string_content, - sym_escape_sequence, - STATE(2481), 3, + STATE(2512), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [76424] = 7, + ACTIONS(4186), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_SQUOTE, + anon_sym_AMP_AMP, + [77230] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(3460), 1, - sym_label, - STATE(3489), 1, - sym_block, - STATE(2482), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5563), 1, + anon_sym_RPAREN, + ACTIONS(5565), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_tuple_type_repeat1, + STATE(2513), 2, sym_line_comment, sym_block_comment, - [76447] = 7, + [77253] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(3379), 1, - sym_block, - STATE(3460), 1, - sym_label, - STATE(2483), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4807), 1, + anon_sym_LT, + STATE(2167), 1, + sym_parameters, + STATE(3270), 1, + sym_type_parameters, + STATE(2514), 2, sym_line_comment, sym_block_comment, - [76470] = 7, + [77276] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(3373), 1, + STATE(3332), 1, sym_block, - STATE(3460), 1, + STATE(3500), 1, sym_label, - STATE(2484), 2, + STATE(2515), 2, sym_line_comment, sym_block_comment, - [76493] = 4, + [77299] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2485), 2, + ACTIONS(5555), 1, + anon_sym_COLON_COLON, + STATE(2516), 2, sym_line_comment, sym_block_comment, - ACTIONS(1448), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [76510] = 7, + ACTIONS(4683), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77318] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(1428), 1, - sym_block, - STATE(3460), 1, - sym_label, - STATE(2486), 2, + ACTIONS(5557), 1, + anon_sym_COLON_COLON, + STATE(2517), 2, sym_line_comment, sym_block_comment, - [76533] = 7, + ACTIONS(4683), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77337] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(1422), 1, - sym_block, - STATE(3460), 1, - sym_label, - STATE(2487), 2, + ACTIONS(5559), 1, + anon_sym_COLON_COLON, + STATE(2518), 2, sym_line_comment, sym_block_comment, - [76556] = 5, - ACTIONS(3), 1, + ACTIONS(4683), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77356] = 5, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5460), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2488), 2, + ACTIONS(5561), 1, + anon_sym_COLON_COLON, + STATE(2519), 2, sym_line_comment, sym_block_comment, - ACTIONS(5462), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [76575] = 7, + ACTIONS(4661), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [77375] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4729), 1, - anon_sym_LT, - STATE(2206), 1, - sym_parameters, - STATE(3087), 1, - sym_type_parameters, - STATE(2489), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(171), 1, + sym_block, + STATE(3422), 1, + sym_label, + STATE(2520), 2, sym_line_comment, sym_block_comment, - [76598] = 6, + [77398] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - STATE(3292), 1, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(1922), 1, sym_type_arguments, - ACTIONS(5464), 2, - sym_identifier, - sym_super, - STATE(2490), 2, + STATE(2615), 1, + sym_trait_bounds, + STATE(2521), 2, sym_line_comment, sym_block_comment, - [76619] = 7, + [77421] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(3300), 1, - sym_block, - STATE(3460), 1, - sym_label, - STATE(2491), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + STATE(3133), 1, + sym_type_arguments, + ACTIONS(5050), 2, + sym_identifier, + sym_super, + STATE(2522), 2, sym_line_comment, sym_block_comment, - [76642] = 7, + [77442] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5466), 1, - anon_sym_SEMI, - STATE(3473), 1, - sym_where_clause, - STATE(2492), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + STATE(3139), 1, + sym_type_arguments, + ACTIONS(5050), 2, + sym_identifier, + sym_super, + STATE(2523), 2, sym_line_comment, sym_block_comment, - [76665] = 7, + [77463] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4379), 1, - anon_sym_BANG, - ACTIONS(4439), 1, - anon_sym_COLON_COLON, - STATE(1928), 1, + ACTIONS(5050), 1, + sym_super, + ACTIONS(5567), 1, + sym_identifier, + STATE(3139), 1, sym_type_arguments, - STATE(2493), 2, + STATE(2524), 2, sym_line_comment, sym_block_comment, - [76688] = 7, + [77486] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, + ACTIONS(5569), 1, + anon_sym_LPAREN, + ACTIONS(5571), 1, + anon_sym_LBRACK, + ACTIONS(5573), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(3415), 1, - sym_block, - STATE(3460), 1, - sym_label, - STATE(2494), 2, + STATE(2706), 1, + sym_token_tree, + STATE(2525), 2, sym_line_comment, sym_block_comment, - [76711] = 7, + [77509] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4729), 1, - anon_sym_LT, - STATE(2200), 1, - sym_parameters, - STATE(3108), 1, - sym_type_parameters, - STATE(2495), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(5575), 1, + anon_sym_for, + STATE(1921), 1, + sym_type_arguments, + STATE(2526), 2, sym_line_comment, sym_block_comment, - [76734] = 5, + [77532] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5468), 1, - anon_sym_COMMA, - ACTIONS(4045), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2496), 3, + ACTIONS(3890), 1, + anon_sym_LPAREN, + ACTIONS(4386), 1, + anon_sym_LT2, + STATE(1586), 1, + sym_parameters, + STATE(1922), 1, + sym_type_arguments, + STATE(2527), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [76753] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [77555] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(223), 1, - sym_block, - STATE(3252), 1, - sym_label, - STATE(2497), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5050), 1, + sym_super, + ACTIONS(5567), 1, + sym_identifier, + STATE(3133), 1, + sym_type_arguments, + STATE(2528), 2, sym_line_comment, sym_block_comment, - [76776] = 7, + [77578] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4751), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - STATE(656), 1, - sym_field_declaration_list, - STATE(3058), 1, + STATE(1376), 1, + sym_declaration_list, + STATE(3053), 1, sym_where_clause, - STATE(2498), 2, + STATE(2529), 2, sym_line_comment, sym_block_comment, - [76799] = 7, + [77601] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, + ACTIONS(924), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(3326), 1, + STATE(453), 1, sym_block, - STATE(3460), 1, + STATE(3551), 1, sym_label, - STATE(2499), 2, + STATE(2530), 2, sym_line_comment, sym_block_comment, - [76822] = 7, + [77624] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5471), 1, - anon_sym_RPAREN, - ACTIONS(5473), 1, - anon_sym_COMMA, - STATE(2716), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2500), 2, + ACTIONS(5577), 1, + anon_sym_SEMI, + STATE(3531), 1, + sym_where_clause, + STATE(2531), 2, sym_line_comment, sym_block_comment, - [76845] = 7, + [77647] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5475), 1, - anon_sym_LBRACE, - ACTIONS(5477), 1, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(5579), 1, anon_sym_for, - ACTIONS(5479), 1, - anon_sym_loop, - ACTIONS(5481), 1, - anon_sym_while, - STATE(2501), 2, + STATE(1921), 1, + sym_type_arguments, + STATE(2532), 2, sym_line_comment, sym_block_comment, - [76868] = 7, + [77670] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON, - ACTIONS(5483), 1, - anon_sym_SEMI, - ACTIONS(5485), 1, - anon_sym_EQ, - STATE(3463), 1, - sym_trait_bounds, - STATE(2502), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(5581), 1, + anon_sym_RPAREN, + ACTIONS(5583), 1, + anon_sym_COMMA, + STATE(2858), 1, + aux_sym_slice_pattern_repeat1, + STATE(2533), 2, sym_line_comment, sym_block_comment, - [76891] = 7, + [77693] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - STATE(529), 1, - sym_declaration_list, - STATE(3028), 1, - sym_where_clause, - STATE(2503), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5455), 1, + anon_sym_RPAREN, + ACTIONS(5457), 1, + anon_sym_COMMA, + STATE(2888), 1, + aux_sym_parameters_repeat1, + STATE(2534), 2, sym_line_comment, sym_block_comment, - [76914] = 5, + [77716] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5487), 1, - anon_sym_in, - STATE(2504), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1223), 1, + sym_declaration_list, + STATE(3057), 1, + sym_where_clause, + STATE(2535), 2, sym_line_comment, sym_block_comment, - ACTIONS(5489), 3, - sym_self, - sym_super, - sym_crate, - [76933] = 6, + [77739] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - STATE(3287), 1, - sym_type_arguments, - ACTIONS(5464), 2, - sym_identifier, - sym_super, - STATE(2505), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + STATE(2536), 2, sym_line_comment, sym_block_comment, - [76954] = 7, + ACTIONS(5585), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [77758] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4729), 1, - anon_sym_LT, - STATE(2186), 1, - sym_parameters, - STATE(3172), 1, - sym_type_parameters, - STATE(2506), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5587), 1, + anon_sym_SEMI, + STATE(3528), 1, + sym_where_clause, + STATE(2537), 2, sym_line_comment, sym_block_comment, - [76977] = 6, - ACTIONS(101), 1, + [77781] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - STATE(3287), 1, - sym_type_arguments, - ACTIONS(4985), 2, - sym_identifier, - sym_super, - STATE(2507), 2, + ACTIONS(5589), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2538), 2, sym_line_comment, sym_block_comment, - [76998] = 6, + ACTIONS(5591), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [77800] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - STATE(3292), 1, - sym_type_arguments, - ACTIONS(4985), 2, - sym_identifier, - sym_super, - STATE(2508), 2, + ACTIONS(924), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(461), 1, + sym_block, + STATE(3551), 1, + sym_label, + STATE(2539), 2, sym_line_comment, sym_block_comment, - [77019] = 6, + [77823] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4369), 1, - anon_sym_DOT_DOT, - ACTIONS(5021), 1, - anon_sym_COLON_COLON, - ACTIONS(4367), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2509), 2, + ACTIONS(5356), 1, + anon_sym_RPAREN, + ACTIONS(5360), 1, + anon_sym_COMMA, + ACTIONS(5362), 1, + anon_sym_PIPE, + STATE(2865), 1, + aux_sym_slice_pattern_repeat1, + STATE(2540), 2, sym_line_comment, sym_block_comment, - [77040] = 4, + [77846] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2510), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5221), 4, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5593), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [77057] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5265), 1, - anon_sym_COLON, - ACTIONS(5491), 1, - anon_sym_COMMA, - ACTIONS(5493), 1, - anon_sym_PIPE, - STATE(2892), 1, - aux_sym_closure_parameters_repeat1, - STATE(2511), 2, + ACTIONS(5595), 1, + anon_sym_EQ, + ACTIONS(5597), 1, + anon_sym_else, + STATE(2541), 2, sym_line_comment, sym_block_comment, - [77080] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, + [77869] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(281), 1, - sym_block, - STATE(3252), 1, - sym_label, - STATE(2512), 2, + ACTIONS(5599), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2542), 2, sym_line_comment, sym_block_comment, - [77103] = 7, + ACTIONS(5601), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [77888] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5495), 1, - anon_sym_COMMA, - ACTIONS(5497), 1, - anon_sym_GT, - STATE(2851), 1, - aux_sym_type_arguments_repeat1, - STATE(2513), 2, + STATE(2543), 2, sym_line_comment, sym_block_comment, - [77126] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3006), 1, + ACTIONS(3162), 4, + anon_sym_COLON, anon_sym_PLUS, - ACTIONS(5495), 1, anon_sym_COMMA, - ACTIONS(5497), 1, anon_sym_GT, - STATE(2851), 1, - aux_sym_type_arguments_repeat1, - STATE(2514), 2, - sym_line_comment, - sym_block_comment, - [77149] = 7, + [77905] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4985), 1, - sym_super, - ACTIONS(5499), 1, - sym_identifier, - STATE(3292), 1, - sym_type_arguments, - STATE(2515), 2, + ACTIONS(5603), 1, + anon_sym_COLON, + STATE(2544), 2, sym_line_comment, sym_block_comment, - [77172] = 7, + ACTIONS(4767), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [77924] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4985), 1, - sym_super, - ACTIONS(5499), 1, - sym_identifier, - STATE(3287), 1, - sym_type_arguments, - STATE(2516), 2, + ACTIONS(1118), 1, + anon_sym_RPAREN, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5354), 1, + anon_sym_COMMA, + STATE(2734), 1, + aux_sym_parameters_repeat1, + STATE(2545), 2, sym_line_comment, sym_block_comment, - [77195] = 7, + [77947] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5499), 1, - sym_identifier, - STATE(3292), 1, - sym_type_arguments, - STATE(2517), 2, + ACTIONS(1126), 1, + anon_sym_RPAREN, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5334), 1, + anon_sym_COMMA, + STATE(2945), 1, + aux_sym_parameters_repeat1, + STATE(2546), 2, sym_line_comment, sym_block_comment, - [77218] = 7, + [77970] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5499), 1, - sym_identifier, - STATE(3287), 1, - sym_type_arguments, - STATE(2518), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + STATE(2547), 2, sym_line_comment, sym_block_comment, - [77241] = 7, + ACTIONS(5605), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [77989] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5501), 1, - sym_identifier, - STATE(3292), 1, - sym_type_arguments, - STATE(2519), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(3500), 1, + sym_label, + STATE(3523), 1, + sym_block, + STATE(2548), 2, sym_line_comment, sym_block_comment, - [77264] = 7, + [78012] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5501), 1, - sym_identifier, - STATE(3287), 1, - sym_type_arguments, - STATE(2520), 2, + ACTIONS(5607), 1, + anon_sym_COMMA, + ACTIONS(5605), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2549), 3, sym_line_comment, sym_block_comment, - [77287] = 7, + aux_sym_slice_pattern_repeat1, + [78031] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5503), 1, - sym_identifier, - STATE(3292), 1, - sym_type_arguments, - STATE(2521), 2, + STATE(2550), 2, sym_line_comment, sym_block_comment, - [77310] = 7, - ACTIONS(101), 1, + ACTIONS(1464), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [78048] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5503), 1, - sym_identifier, - STATE(3287), 1, - sym_type_arguments, - STATE(2522), 2, + ACTIONS(5610), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2551), 2, sym_line_comment, sym_block_comment, - [77333] = 7, + ACTIONS(5612), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [78067] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5505), 1, - anon_sym_LPAREN, - ACTIONS(5507), 1, - anon_sym_LBRACK, - ACTIONS(5509), 1, - anon_sym_LBRACE, - STATE(274), 1, - sym_delim_token_tree, - STATE(2523), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + STATE(2552), 2, sym_line_comment, sym_block_comment, - [77356] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5245), 1, + ACTIONS(5614), 3, anon_sym_RPAREN, - ACTIONS(5247), 1, anon_sym_COMMA, - STATE(2854), 1, - aux_sym_parameters_repeat1, - STATE(2524), 2, - sym_line_comment, - sym_block_comment, - [77379] = 7, + anon_sym_PIPE, + [78086] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(3335), 1, - sym_block, - STATE(3460), 1, - sym_label, - STATE(2525), 2, + ACTIONS(1120), 1, + anon_sym_RPAREN, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5469), 1, + anon_sym_COMMA, + STATE(2853), 1, + aux_sym_parameters_repeat1, + STATE(2553), 2, sym_line_comment, sym_block_comment, - [77402] = 7, + [78109] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4985), 1, - sym_super, - ACTIONS(5511), 1, - sym_identifier, - STATE(3292), 1, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(4659), 1, + anon_sym_for, + STATE(1921), 1, sym_type_arguments, - STATE(2526), 2, + STATE(2554), 2, sym_line_comment, sym_block_comment, - [77425] = 7, + [78132] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4985), 1, - sym_super, - ACTIONS(5511), 1, - sym_identifier, - STATE(3287), 1, - sym_type_arguments, - STATE(2527), 2, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(1639), 1, + sym_block, + STATE(3552), 1, + sym_label, + STATE(2555), 2, sym_line_comment, sym_block_comment, - [77448] = 7, + [78155] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4729), 1, - anon_sym_LT, - STATE(2211), 1, - sym_parameters, - STATE(3115), 1, - sym_type_parameters, - STATE(2528), 2, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(1634), 1, + sym_block, + STATE(3552), 1, + sym_label, + STATE(2556), 2, sym_line_comment, sym_block_comment, - [77471] = 5, + [78178] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5513), 1, - anon_sym_COLON_COLON, - STATE(2529), 2, + STATE(2557), 2, sym_line_comment, sym_block_comment, - ACTIONS(4528), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77490] = 5, + ACTIONS(5616), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78195] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5515), 1, - anon_sym_COLON_COLON, - STATE(2530), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(1345), 1, + sym_block, + STATE(3500), 1, + sym_label, + STATE(2558), 2, sym_line_comment, sym_block_comment, - ACTIONS(4536), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77509] = 5, + [78218] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5517), 1, - anon_sym_COLON_COLON, - STATE(2531), 2, + ACTIONS(5618), 1, + anon_sym_DQUOTE, + STATE(2585), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5523), 2, + sym_string_content, + sym_escape_sequence, + STATE(2559), 2, sym_line_comment, sym_block_comment, - ACTIONS(4536), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77528] = 5, + [78239] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - STATE(2532), 2, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(2970), 1, + sym_trait_bounds, + ACTIONS(5620), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2560), 2, sym_line_comment, sym_block_comment, - ACTIONS(4536), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77547] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78260] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(924), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(124), 1, + STATE(468), 1, sym_block, - STATE(3252), 1, + STATE(3551), 1, sym_label, - STATE(2533), 2, + STATE(2561), 2, sym_line_comment, sym_block_comment, - [77570] = 7, + [78283] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5521), 1, - sym_identifier, - ACTIONS(5523), 1, - sym_super, - STATE(3292), 1, - sym_type_arguments, - STATE(2534), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4821), 1, + anon_sym_LBRACE, + STATE(1363), 1, + sym_field_declaration_list, + STATE(3101), 1, + sym_where_clause, + STATE(2562), 2, sym_line_comment, sym_block_comment, - [77593] = 7, + [78306] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5521), 1, - sym_identifier, - ACTIONS(5523), 1, - sym_super, - STATE(3287), 1, - sym_type_arguments, - STATE(2535), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5475), 1, + anon_sym_RPAREN, + ACTIONS(5477), 1, + anon_sym_COMMA, + STATE(2889), 1, + aux_sym_parameters_repeat1, + STATE(2563), 2, sym_line_comment, sym_block_comment, - [77616] = 6, + [78329] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5525), 1, - anon_sym_DQUOTE, - STATE(2481), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5449), 2, - sym__string_content, - sym_escape_sequence, - STATE(2536), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(5196), 1, + anon_sym_LBRACE, + STATE(1393), 1, + sym_enum_variant_list, + STATE(3106), 1, + sym_where_clause, + STATE(2564), 2, sym_line_comment, sym_block_comment, - [77637] = 5, + [78352] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5513), 1, - anon_sym_COLON_COLON, - STATE(2537), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(3500), 1, + sym_label, + STATE(3521), 1, + sym_block, + STATE(2565), 2, sym_line_comment, sym_block_comment, - ACTIONS(4560), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77656] = 7, + [78375] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5132), 1, - anon_sym_COMMA, - ACTIONS(5134), 1, - anon_sym_GT, - ACTIONS(5527), 1, - anon_sym_EQ, - STATE(2970), 1, - aux_sym_type_parameters_repeat1, - STATE(2538), 2, + ACTIONS(5622), 1, + anon_sym_LBRACE, + ACTIONS(5624), 1, + anon_sym_for, + ACTIONS(5626), 1, + anon_sym_loop, + ACTIONS(5628), 1, + anon_sym_while, + STATE(2566), 2, sym_line_comment, sym_block_comment, - [77679] = 5, + [78398] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5515), 1, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(5120), 1, anon_sym_COLON_COLON, - STATE(2539), 2, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2567), 2, sym_line_comment, sym_block_comment, - ACTIONS(4566), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77698] = 6, + [78419] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5529), 1, - anon_sym_DQUOTE, - STATE(2536), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5449), 2, - sym__string_content, - sym_escape_sequence, - STATE(2540), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1426), 1, + sym_declaration_list, + STATE(3116), 1, + sym_where_clause, + STATE(2568), 2, sym_line_comment, sym_block_comment, - [77719] = 7, + [78442] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(3414), 1, + STATE(1775), 1, sym_block, - STATE(3460), 1, + STATE(3552), 1, sym_label, - STATE(2541), 2, + STATE(2569), 2, sym_line_comment, sym_block_comment, - [77742] = 7, + [78465] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5263), 1, - anon_sym_RPAREN, - ACTIONS(5267), 1, - anon_sym_COMMA, - ACTIONS(5269), 1, - anon_sym_PIPE, - STATE(2895), 1, - aux_sym_slice_pattern_repeat1, - STATE(2542), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(1199), 1, + sym_block, + STATE(3500), 1, + sym_label, + STATE(2570), 2, sym_line_comment, sym_block_comment, - [77765] = 5, + [78488] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5519), 1, - anon_sym_COLON_COLON, - STATE(2543), 2, + ACTIONS(5630), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5634), 1, + anon_sym_LBRACE, + STATE(1014), 1, + sym_delim_token_tree, + STATE(2571), 2, sym_line_comment, sym_block_comment, - ACTIONS(4566), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77784] = 5, + [78511] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5531), 1, - anon_sym_in, - STATE(2544), 2, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(2970), 1, + sym_trait_bounds, + ACTIONS(5636), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2572), 2, sym_line_comment, sym_block_comment, - ACTIONS(5533), 3, - sym_self, - sym_super, - sym_crate, - [77803] = 7, + [78532] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4371), 1, - anon_sym_COLON_COLON, - ACTIONS(4572), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(2545), 2, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(1558), 1, + sym_block, + STATE(3552), 1, + sym_label, + STATE(2573), 2, sym_line_comment, sym_block_comment, - [77826] = 7, + [78555] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5535), 1, - sym_identifier, - STATE(3292), 1, - sym_type_arguments, - STATE(2546), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(1188), 1, + sym_block, + STATE(3500), 1, + sym_label, + STATE(2574), 2, sym_line_comment, sym_block_comment, - [77849] = 7, + [78578] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5535), 1, - sym_identifier, - STATE(3287), 1, - sym_type_arguments, - STATE(2547), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5639), 1, + anon_sym_SEMI, + STATE(3449), 1, + sym_where_clause, + STATE(2575), 2, sym_line_comment, sym_block_comment, - [77872] = 7, + [78601] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5537), 1, - anon_sym_LPAREN, - ACTIONS(5539), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4813), 1, anon_sym_LBRACE, - STATE(1601), 1, - sym_delim_token_tree, - STATE(2548), 2, + STATE(1450), 1, + sym_declaration_list, + STATE(3120), 1, + sym_where_clause, + STATE(2576), 2, sym_line_comment, sym_block_comment, - [77895] = 6, + [78624] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5543), 1, - anon_sym_DQUOTE, - STATE(2481), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5449), 2, - sym__string_content, - sym_escape_sequence, - STATE(2549), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4412), 1, + anon_sym_BANG, + ACTIONS(4495), 1, + anon_sym_COLON_COLON, + STATE(1918), 1, + sym_type_arguments, + STATE(2577), 2, sym_line_comment, sym_block_comment, - [77916] = 7, + [78647] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5537), 1, - anon_sym_LPAREN, - ACTIONS(5539), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - STATE(1621), 1, - sym_delim_token_tree, - STATE(2550), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(1794), 1, + sym_block, + STATE(3552), 1, + sym_label, + STATE(2578), 2, + sym_line_comment, + sym_block_comment, + [78670] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5641), 1, + anon_sym_LBRACE, + ACTIONS(5643), 1, + anon_sym_for, + ACTIONS(5645), 1, + anon_sym_loop, + ACTIONS(5647), 1, + anon_sym_while, + STATE(2579), 2, sym_line_comment, sym_block_comment, - [77939] = 7, + [78693] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(1425), 1, + STATE(1192), 1, sym_block, - STATE(3460), 1, + STATE(3500), 1, sym_label, - STATE(2551), 2, + STATE(2580), 2, sym_line_comment, sym_block_comment, - [77962] = 5, + [78716] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5517), 1, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(5134), 1, anon_sym_COLON_COLON, - STATE(2552), 2, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(4566), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [77981] = 7, + [78737] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(1420), 1, + STATE(1187), 1, sym_block, - STATE(3460), 1, + STATE(3500), 1, sym_label, - STATE(2553), 2, + STATE(2582), 2, sym_line_comment, sym_block_comment, - [78004] = 6, + [78760] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5545), 1, + ACTIONS(5649), 1, anon_sym_DQUOTE, - STATE(2605), 1, + STATE(2635), 1, aux_sym_string_literal_repeat1, - ACTIONS(5449), 2, - sym__string_content, + ACTIONS(5523), 2, + sym_string_content, sym_escape_sequence, - STATE(2554), 2, + STATE(2583), 2, sym_line_comment, sym_block_comment, - [78025] = 7, + [78781] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(476), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2555), 2, + ACTIONS(4390), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5651), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2584), 2, sym_line_comment, sym_block_comment, - [78048] = 6, + [78800] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5547), 1, + ACTIONS(5653), 1, anon_sym_DQUOTE, - STATE(2549), 1, + STATE(2670), 1, aux_sym_string_literal_repeat1, - ACTIONS(5449), 2, - sym__string_content, + ACTIONS(5523), 2, + sym_string_content, sym_escape_sequence, - STATE(2556), 2, + STATE(2585), 2, sym_line_comment, sym_block_comment, - [78069] = 7, + [78821] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(475), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2557), 2, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(5070), 1, + anon_sym_COLON_COLON, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2586), 2, sym_line_comment, sym_block_comment, - [78092] = 6, + [78842] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4113), 1, + ACTIONS(5630), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + anon_sym_LBRACK, + ACTIONS(5634), 1, anon_sym_LBRACE, - STATE(2752), 1, - sym_use_list, - ACTIONS(5549), 2, - sym_identifier, - sym_super, - STATE(2558), 2, + STATE(1023), 1, + sym_delim_token_tree, + STATE(2587), 2, sym_line_comment, sym_block_comment, - [78113] = 7, + [78865] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1606), 1, + ACTIONS(1532), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(2081), 1, + STATE(2103), 1, sym_block, - STATE(3501), 1, + STATE(3543), 1, sym_label, - STATE(2559), 2, + STATE(2588), 2, + sym_line_comment, + sym_block_comment, + [78888] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5513), 1, + sym_identifier, + ACTIONS(5655), 1, + sym_super, + STATE(3139), 1, + sym_type_arguments, + STATE(2589), 2, sym_line_comment, sym_block_comment, - [78136] = 7, + [78911] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, + ACTIONS(924), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(468), 1, + STATE(467), 1, sym_block, - STATE(3510), 1, + STATE(3551), 1, sym_label, - STATE(2560), 2, + STATE(2590), 2, sym_line_comment, sym_block_comment, - [78159] = 7, + [78934] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5511), 1, - sym_identifier, - STATE(3292), 1, - sym_type_arguments, - STATE(2561), 2, + ACTIONS(5200), 1, + anon_sym_PLUS, + STATE(2591), 2, sym_line_comment, sym_block_comment, - [78182] = 7, + ACTIONS(5657), 3, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_GT, + [78953] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5511), 1, + ACTIONS(5513), 1, sym_identifier, - STATE(3287), 1, + ACTIONS(5655), 1, + sym_super, + STATE(3133), 1, sym_type_arguments, - STATE(2562), 2, + STATE(2592), 2, sym_line_comment, sym_block_comment, - [78205] = 7, + [78976] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5551), 1, - anon_sym_LPAREN, - ACTIONS(5553), 1, - anon_sym_LBRACK, - ACTIONS(5555), 1, + ACTIONS(333), 1, anon_sym_LBRACE, - STATE(1030), 1, - sym_delim_token_tree, - STATE(2563), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(3500), 1, + sym_label, + STATE(3559), 1, + sym_block, + STATE(2593), 2, sym_line_comment, sym_block_comment, - [78228] = 6, + [78999] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5557), 1, - anon_sym_DQUOTE, - STATE(2481), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5449), 2, - sym__string_content, - sym_escape_sequence, - STATE(2564), 2, + STATE(2594), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1472), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [79016] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(5659), 1, + aux_sym_token_repetition_pattern_token1, + STATE(2595), 2, sym_line_comment, sym_block_comment, - [78249] = 7, + ACTIONS(5661), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [79035] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(5112), 1, - anon_sym_LBRACE, - STATE(718), 1, - sym_enum_variant_list, - STATE(3024), 1, - sym_where_clause, - STATE(2565), 2, + ACTIONS(5459), 1, + anon_sym_COLON, + ACTIONS(5461), 1, + anon_sym_COMMA, + ACTIONS(5463), 1, + anon_sym_PIPE, + STATE(2735), 1, + aux_sym_closure_parameters_repeat1, + STATE(2596), 2, sym_line_comment, sym_block_comment, - [78272] = 7, + [79058] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(3460), 1, - sym_label, - STATE(3469), 1, + STATE(156), 1, sym_block, - STATE(2566), 2, + STATE(3422), 1, + sym_label, + STATE(2597), 2, sym_line_comment, sym_block_comment, - [78295] = 7, + [79081] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(487), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2567), 2, + STATE(679), 1, + sym_declaration_list, + STATE(3065), 1, + sym_where_clause, + STATE(2598), 2, sym_line_comment, sym_block_comment, - [78318] = 7, + [79104] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, + ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(459), 1, + STATE(3365), 1, sym_block, - STATE(3510), 1, + STATE(3500), 1, sym_label, - STATE(2568), 2, + STATE(2599), 2, sym_line_comment, sym_block_comment, - [78341] = 5, + [79127] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - STATE(2569), 2, + ACTIONS(5663), 1, + anon_sym_SEMI, + ACTIONS(5665), 1, + anon_sym_EQ, + ACTIONS(5667), 1, + anon_sym_else, + STATE(2600), 2, sym_line_comment, sym_block_comment, - ACTIONS(5559), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [78360] = 7, + [79150] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5551), 1, + ACTIONS(5669), 1, anon_sym_LPAREN, - ACTIONS(5553), 1, + ACTIONS(5671), 1, anon_sym_LBRACK, - ACTIONS(5555), 1, + ACTIONS(5673), 1, anon_sym_LBRACE, - STATE(1027), 1, + STATE(154), 1, sym_delim_token_tree, - STATE(2570), 2, - sym_line_comment, - sym_block_comment, - [78383] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(480), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2571), 2, + STATE(2601), 2, sym_line_comment, sym_block_comment, - [78406] = 5, + [79173] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4355), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5561), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2572), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4807), 1, + anon_sym_LT, + STATE(2201), 1, + sym_parameters, + STATE(3274), 1, + sym_type_parameters, + STATE(2602), 2, sym_line_comment, sym_block_comment, - [78425] = 7, + [79196] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(395), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(1736), 1, - sym_block, - STATE(3509), 1, - sym_label, - STATE(2573), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + STATE(3133), 1, + sym_type_arguments, + ACTIONS(5655), 2, + sym_identifier, + sym_super, + STATE(2603), 2, sym_line_comment, sym_block_comment, - [78448] = 6, + [79217] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5563), 1, - anon_sym_DQUOTE, - STATE(2564), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5449), 2, - sym__string_content, - sym_escape_sequence, - STATE(2574), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5675), 1, + anon_sym_SEMI, + STATE(3512), 1, + sym_where_clause, + STATE(2604), 2, sym_line_comment, sym_block_comment, - [78469] = 7, + [79240] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, + ACTIONS(395), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(479), 1, + STATE(1773), 1, sym_block, - STATE(3510), 1, + STATE(3552), 1, sym_label, - STATE(2575), 2, + STATE(2605), 2, sym_line_comment, sym_block_comment, - [78492] = 7, + [79263] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, + ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(485), 1, - sym_block, - STATE(3510), 1, + STATE(3500), 1, sym_label, - STATE(2576), 2, + STATE(3556), 1, + sym_block, + STATE(2606), 2, sym_line_comment, sym_block_comment, - [78515] = 7, + [79286] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3170), 1, + ACTIONS(3198), 1, anon_sym_LT2, - ACTIONS(3394), 1, + ACTIONS(3421), 1, anon_sym_COLON_COLON, - ACTIONS(4582), 1, + ACTIONS(4751), 1, anon_sym_BANG, - STATE(1052), 1, + STATE(1071), 1, sym_type_arguments, - STATE(2577), 2, + STATE(2607), 2, sym_line_comment, sym_block_comment, - [78538] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79309] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(190), 1, - sym_block, - STATE(3252), 1, + STATE(3500), 1, sym_label, - STATE(2578), 2, + STATE(3565), 1, + sym_block, + STATE(2608), 2, sym_line_comment, sym_block_comment, - [78561] = 6, + [79332] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5565), 1, - anon_sym_DQUOTE, - STATE(2481), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5449), 2, - sym__string_content, - sym_escape_sequence, - STATE(2579), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(112), 1, + sym_block, + STATE(3422), 1, + sym_label, + STATE(2609), 2, sym_line_comment, sym_block_comment, - [78582] = 7, + [79355] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1173), 1, - anon_sym_RPAREN, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5283), 1, - anon_sym_COMMA, - STATE(2890), 1, - aux_sym_parameters_repeat1, - STATE(2580), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + STATE(3139), 1, + sym_type_arguments, + ACTIONS(5655), 2, + sym_identifier, + sym_super, + STATE(2610), 2, sym_line_comment, sym_block_comment, - [78605] = 7, + [79376] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3170), 1, - anon_sym_LT2, - ACTIONS(4985), 1, - sym_super, - ACTIONS(5567), 1, - sym_identifier, - STATE(1432), 1, - sym_type_arguments, - STATE(2581), 2, + ACTIONS(5677), 1, + anon_sym_COMMA, + ACTIONS(4056), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2611), 3, sym_line_comment, sym_block_comment, - [78628] = 7, + aux_sym_arguments_repeat1, + [79395] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5505), 1, - anon_sym_LPAREN, - ACTIONS(5507), 1, - anon_sym_LBRACK, - ACTIONS(5509), 1, - anon_sym_LBRACE, - STATE(172), 1, - sym_delim_token_tree, - STATE(2582), 2, + ACTIONS(5680), 1, + anon_sym_in, + STATE(2612), 2, sym_line_comment, sym_block_comment, - [78651] = 6, + ACTIONS(5682), 3, + sym_self, + sym_super, + sym_crate, + [79414] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4516), 1, + ACTIONS(4559), 1, anon_sym_DOT_DOT, - ACTIONS(5569), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - ACTIONS(4514), 2, + ACTIONS(4557), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2583), 2, + STATE(2613), 2, sym_line_comment, sym_block_comment, - [78672] = 7, + [79435] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(1323), 1, + STATE(1285), 1, sym_block, - STATE(3460), 1, + STATE(3500), 1, sym_label, - STATE(2584), 2, + STATE(2614), 2, sym_line_comment, sym_block_comment, - [78695] = 7, + [79458] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(395), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(1676), 1, - sym_block, - STATE(3509), 1, - sym_label, - STATE(2585), 2, + STATE(2615), 2, sym_line_comment, sym_block_comment, - [78718] = 7, + ACTIONS(5686), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [79475] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5031), 1, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(5033), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(5037), 1, + ACTIONS(5038), 1, anon_sym_LBRACE, - STATE(1322), 1, + STATE(1432), 1, sym_delim_token_tree, - STATE(2586), 2, + STATE(2616), 2, sym_line_comment, sym_block_comment, - [78741] = 7, + [79498] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5310), 1, - anon_sym_RPAREN, - ACTIONS(5312), 1, - anon_sym_COMMA, - STATE(2915), 1, - aux_sym_parameters_repeat1, - STATE(2587), 2, + ACTIONS(5688), 1, + anon_sym_SEMI, + ACTIONS(5690), 1, + anon_sym_EQ, + ACTIONS(5692), 1, + anon_sym_else, + STATE(2617), 2, sym_line_comment, sym_block_comment, - [78764] = 4, + [79521] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2588), 2, + ACTIONS(4240), 1, + anon_sym_LBRACE, + STATE(2747), 1, + sym_use_list, + ACTIONS(5694), 2, + sym_identifier, + sym_super, + STATE(2618), 2, sym_line_comment, sym_block_comment, - ACTIONS(5571), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [78781] = 7, + [79542] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3006), 1, - anon_sym_PLUS, - ACTIONS(5573), 1, - anon_sym_COMMA, - ACTIONS(5575), 1, - anon_sym_GT, - STATE(2921), 1, - aux_sym_type_arguments_repeat1, - STATE(2589), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(3500), 1, + sym_label, + STATE(3527), 1, + sym_block, + STATE(2619), 2, sym_line_comment, sym_block_comment, - [78804] = 7, + [79565] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(1079), 1, + STATE(1043), 1, sym_block, - STATE(3460), 1, + STATE(3500), 1, sym_label, - STATE(2590), 2, + STATE(2620), 2, sym_line_comment, sym_block_comment, - [78827] = 7, + [79588] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5573), 1, - anon_sym_COMMA, - ACTIONS(5575), 1, - anon_sym_GT, - STATE(2921), 1, - aux_sym_type_arguments_repeat1, - STATE(2591), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(3387), 1, + sym_block, + STATE(3500), 1, + sym_label, + STATE(2621), 2, sym_line_comment, sym_block_comment, - [78850] = 7, + [79611] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(395), 1, + ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(1650), 1, - sym_block, - STATE(3509), 1, + STATE(3500), 1, sym_label, - STATE(2592), 2, + STATE(3525), 1, + sym_block, + STATE(2622), 2, sym_line_comment, sym_block_comment, - [78873] = 7, + [79634] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4985), 1, - sym_super, - ACTIONS(5577), 1, - sym_identifier, - STATE(3292), 1, - sym_type_arguments, - STATE(2593), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(3393), 1, + sym_block, + STATE(3500), 1, + sym_label, + STATE(2623), 2, sym_line_comment, sym_block_comment, - [78896] = 7, + [79657] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, - anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LT2, - STATE(1559), 1, - sym_parameters, - STATE(1929), 1, - sym_type_arguments, - STATE(2594), 2, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(1741), 1, + sym_block, + STATE(3552), 1, + sym_label, + STATE(2624), 2, sym_line_comment, sym_block_comment, - [78919] = 7, + [79680] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - STATE(722), 1, - sym_declaration_list, - STATE(3126), 1, - sym_where_clause, - STATE(2595), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5696), 1, + anon_sym_RPAREN, + ACTIONS(5698), 1, + anon_sym_COMMA, + STATE(2839), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2625), 2, sym_line_comment, sym_block_comment, - [78942] = 7, + [79703] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4985), 1, - sym_super, - ACTIONS(5577), 1, - sym_identifier, - STATE(3287), 1, - sym_type_arguments, - STATE(2596), 2, + ACTIONS(4593), 1, + anon_sym_GT, + ACTIONS(5294), 1, + anon_sym_COMMA, + ACTIONS(5537), 1, + anon_sym_EQ, + STATE(2893), 1, + aux_sym_type_parameters_repeat1, + STATE(2626), 2, sym_line_comment, sym_block_comment, - [78965] = 7, + [79726] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5579), 1, - anon_sym_RPAREN, - ACTIONS(5581), 1, - anon_sym_COMMA, - STATE(2929), 1, - aux_sym_tuple_type_repeat1, - STATE(2597), 2, + ACTIONS(5700), 1, + anon_sym_DQUOTE, + STATE(2633), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5523), 2, + sym_string_content, + sym_escape_sequence, + STATE(2627), 2, sym_line_comment, sym_block_comment, - [78988] = 7, + [79747] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5583), 1, - anon_sym_SEMI, - STATE(3331), 1, - sym_where_clause, - STATE(2598), 2, + ACTIONS(5702), 1, + anon_sym_RPAREN, + ACTIONS(5704), 1, + anon_sym_COMMA, + STATE(2790), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2628), 2, sym_line_comment, sym_block_comment, - [79011] = 7, + [79770] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3692), 1, - anon_sym_LT2, - ACTIONS(5585), 1, - sym_identifier, - ACTIONS(5587), 1, - sym_super, - STATE(1516), 1, - sym_type_arguments, - STATE(2599), 2, + ACTIONS(395), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(1628), 1, + sym_block, + STATE(3552), 1, + sym_label, + STATE(2629), 2, sym_line_comment, sym_block_comment, - [79034] = 7, + [79793] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, + ACTIONS(5706), 1, anon_sym_LPAREN, - ACTIONS(5591), 1, + ACTIONS(5708), 1, anon_sym_LBRACK, - ACTIONS(5593), 1, + ACTIONS(5710), 1, anon_sym_LBRACE, - STATE(1957), 1, + STATE(1686), 1, sym_delim_token_tree, - STATE(2600), 2, + STATE(2630), 2, sym_line_comment, sym_block_comment, - [79057] = 7, + [79816] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3692), 1, - anon_sym_LT2, - ACTIONS(5585), 1, - sym_identifier, - ACTIONS(5587), 1, - sym_super, - STATE(1514), 1, - sym_type_arguments, - STATE(2601), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(203), 1, + sym_block, + STATE(3422), 1, + sym_label, + STATE(2631), 2, sym_line_comment, sym_block_comment, - [79080] = 7, + [79839] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(1290), 1, + STATE(1137), 1, sym_block, - STATE(3460), 1, + STATE(3500), 1, sym_label, - STATE(2602), 2, + STATE(2632), 2, sym_line_comment, sym_block_comment, - [79103] = 6, + [79862] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5595), 1, + ACTIONS(5712), 1, anon_sym_DQUOTE, - STATE(2481), 1, + STATE(2670), 1, aux_sym_string_literal_repeat1, - ACTIONS(5449), 2, - sym__string_content, + ACTIONS(5523), 2, + sym_string_content, sym_escape_sequence, - STATE(2603), 2, + STATE(2633), 2, sym_line_comment, sym_block_comment, - [79124] = 7, + [79883] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(1929), 1, - sym_type_arguments, - STATE(2637), 1, - sym_trait_bounds, - STATE(2604), 2, + ACTIONS(5714), 1, + anon_sym_DQUOTE, + STATE(2670), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5523), 2, + sym_string_content, + sym_escape_sequence, + STATE(2634), 2, sym_line_comment, sym_block_comment, - [79147] = 6, + [79904] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5597), 1, + ACTIONS(5716), 1, anon_sym_DQUOTE, - STATE(2481), 1, + STATE(2670), 1, aux_sym_string_literal_repeat1, - ACTIONS(5449), 2, - sym__string_content, + ACTIONS(5523), 2, + sym_string_content, sym_escape_sequence, - STATE(2605), 2, + STATE(2635), 2, sym_line_comment, sym_block_comment, - [79168] = 7, + [79925] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(395), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(1626), 1, - sym_block, - STATE(3509), 1, - sym_label, - STATE(2606), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4807), 1, + anon_sym_LT, + STATE(2214), 1, + sym_parameters, + STATE(3163), 1, + sym_type_parameters, + STATE(2636), 2, sym_line_comment, sym_block_comment, - [79191] = 7, + [79948] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3170), 1, + ACTIONS(3198), 1, anon_sym_LT2, - ACTIONS(4985), 1, + ACTIONS(5050), 1, sym_super, - ACTIONS(5599), 1, + ACTIONS(5718), 1, sym_identifier, - STATE(1565), 1, + STATE(1548), 1, sym_type_arguments, - STATE(2607), 2, + STATE(2637), 2, sym_line_comment, sym_block_comment, - [79214] = 7, + [79971] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5031), 1, + ACTIONS(5032), 1, anon_sym_LPAREN, - ACTIONS(5033), 1, + ACTIONS(5034), 1, anon_sym_LBRACK, - ACTIONS(5037), 1, + ACTIONS(5038), 1, anon_sym_LBRACE, - STATE(1286), 1, + STATE(1152), 1, sym_delim_token_tree, - STATE(2608), 2, + STATE(2638), 2, sym_line_comment, sym_block_comment, - [79237] = 7, + [79994] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(395), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(1511), 1, - sym_block, - STATE(3509), 1, - sym_label, - STATE(2609), 2, + ACTIONS(3198), 1, + anon_sym_LT2, + ACTIONS(5050), 1, + sym_super, + ACTIONS(5720), 1, + sym_identifier, + STATE(1149), 1, + sym_type_arguments, + STATE(2639), 2, sym_line_comment, sym_block_comment, - [79260] = 4, + [80017] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2610), 2, + ACTIONS(5669), 1, + anon_sym_LPAREN, + ACTIONS(5671), 1, + anon_sym_LBRACK, + ACTIONS(5673), 1, + anon_sym_LBRACE, + STATE(160), 1, + sym_delim_token_tree, + STATE(2640), 2, sym_line_comment, sym_block_comment, - ACTIONS(4051), 4, + [80040] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(333), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, + ACTIONS(3317), 1, anon_sym_SQUOTE, - anon_sym_AMP_AMP, - [79277] = 7, + STATE(3474), 1, + sym_block, + STATE(3500), 1, + sym_label, + STATE(2641), 2, + sym_line_comment, + sym_block_comment, + [80063] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5589), 1, + ACTIONS(5706), 1, anon_sym_LPAREN, - ACTIONS(5591), 1, + ACTIONS(5708), 1, anon_sym_LBRACK, - ACTIONS(5593), 1, + ACTIONS(5710), 1, anon_sym_LBRACE, - STATE(1947), 1, + STATE(1797), 1, sym_delim_token_tree, - STATE(2611), 2, + STATE(2642), 2, sym_line_comment, sym_block_comment, - [79300] = 7, + [80086] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(395), 1, + ACTIONS(333), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(1619), 1, + STATE(3434), 1, sym_block, - STATE(3509), 1, + STATE(3500), 1, sym_label, - STATE(2612), 2, + STATE(2643), 2, sym_line_comment, sym_block_comment, - [79323] = 7, + [80109] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3692), 1, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(3472), 1, + sym_block, + STATE(3500), 1, + sym_label, + STATE(2644), 2, + sym_line_comment, + sym_block_comment, + [80132] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(3957), 1, - anon_sym_COLON_COLON, - ACTIONS(4632), 1, - anon_sym_BANG, - STATE(1545), 1, + ACTIONS(5655), 1, + sym_super, + ACTIONS(5722), 1, + sym_identifier, + STATE(3139), 1, sym_type_arguments, - STATE(2613), 2, + STATE(2645), 2, sym_line_comment, sym_block_comment, - [79346] = 5, + [80155] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5601), 1, - anon_sym_COLON, - STATE(2614), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5724), 1, + anon_sym_SEMI, + STATE(3411), 1, + sym_where_clause, + STATE(2646), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [79365] = 7, + [80178] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3170), 1, + ACTIONS(3198), 1, anon_sym_LT2, - ACTIONS(4985), 1, + ACTIONS(5050), 1, sym_super, - ACTIONS(5567), 1, + ACTIONS(5718), 1, sym_identifier, - STATE(1438), 1, + STATE(1531), 1, sym_type_arguments, - STATE(2615), 2, + STATE(2647), 2, sym_line_comment, sym_block_comment, - [79388] = 7, + [80201] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5603), 1, - anon_sym_LBRACE, - ACTIONS(5605), 1, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(5726), 1, anon_sym_for, - ACTIONS(5607), 1, - anon_sym_loop, - ACTIONS(5609), 1, - anon_sym_while, - STATE(2616), 2, + STATE(1921), 1, + sym_type_arguments, + STATE(2648), 2, sym_line_comment, sym_block_comment, - [79411] = 7, + [80224] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3170), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4985), 1, + ACTIONS(5655), 1, sym_super, - ACTIONS(5599), 1, + ACTIONS(5722), 1, sym_identifier, - STATE(1574), 1, + STATE(3133), 1, sym_type_arguments, - STATE(2617), 2, + STATE(2649), 2, sym_line_comment, sym_block_comment, - [79434] = 7, + [80247] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(912), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(481), 1, - sym_block, - STATE(3510), 1, - sym_label, - STATE(2618), 2, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(2970), 1, + sym_trait_bounds, + ACTIONS(5728), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2650), 2, sym_line_comment, sym_block_comment, - [79457] = 7, + [80268] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - ACTIONS(4851), 1, - anon_sym_LBRACE, - STATE(2780), 1, - sym_block, - STATE(3508), 1, - sym_label, - STATE(2619), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(5730), 1, + anon_sym_RPAREN, + ACTIONS(5732), 1, + anon_sym_COMMA, + STATE(2879), 1, + aux_sym_slice_pattern_repeat1, + STATE(2651), 2, sym_line_comment, sym_block_comment, - [79480] = 6, + [80291] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5611), 1, - anon_sym_DQUOTE, - STATE(2603), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5449), 2, - sym__string_content, - sym_escape_sequence, - STATE(2620), 2, + ACTIONS(3198), 1, + anon_sym_LT2, + ACTIONS(5050), 1, + sym_super, + ACTIONS(5720), 1, + sym_identifier, + STATE(1092), 1, + sym_type_arguments, + STATE(2652), 2, sym_line_comment, sym_block_comment, - [79501] = 7, + [80314] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(395), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(1610), 1, + STATE(150), 1, sym_block, - STATE(3509), 1, + STATE(3422), 1, sym_label, - STATE(2621), 2, + STATE(2653), 2, sym_line_comment, sym_block_comment, - [79524] = 7, + [80337] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4371), 1, - anon_sym_COLON_COLON, - ACTIONS(5613), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(2622), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(5734), 1, + anon_sym_RPAREN, + ACTIONS(5736), 1, + anon_sym_COMMA, + STATE(2875), 1, + aux_sym_slice_pattern_repeat1, + STATE(2654), 2, sym_line_comment, sym_block_comment, - [79547] = 7, + [80360] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(395), 1, + ACTIONS(5738), 1, anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(1607), 1, - sym_block, - STATE(3509), 1, - sym_label, - STATE(2623), 2, + ACTIONS(5740), 1, + anon_sym_for, + ACTIONS(5742), 1, + anon_sym_loop, + ACTIONS(5744), 1, + anon_sym_while, + STATE(2655), 2, sym_line_comment, sym_block_comment, - [79570] = 7, + [80383] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - STATE(606), 1, - sym_declaration_list, - STATE(3136), 1, - sym_where_clause, - STATE(2624), 2, + ACTIONS(5746), 1, + anon_sym_DQUOTE, + STATE(2657), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5523), 2, + sym_string_content, + sym_escape_sequence, + STATE(2656), 2, + sym_line_comment, + sym_block_comment, + [80404] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5748), 1, + anon_sym_DQUOTE, + STATE(2670), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5523), 2, + sym_string_content, + sym_escape_sequence, + STATE(2657), 2, sym_line_comment, sym_block_comment, - [79593] = 7, + [80425] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4371), 1, - anon_sym_COLON_COLON, - ACTIONS(5615), 1, - anon_sym_for, - STATE(1933), 1, + ACTIONS(5750), 1, + sym_identifier, + ACTIONS(5752), 1, + sym_super, + STATE(3139), 1, sym_type_arguments, - STATE(2625), 2, + STATE(2658), 2, sym_line_comment, sym_block_comment, - [79616] = 7, + [80448] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5617), 1, - anon_sym_SEMI, - STATE(3318), 1, - sym_where_clause, - STATE(2626), 2, + ACTIONS(5754), 1, + anon_sym_RPAREN, + ACTIONS(5756), 1, + anon_sym_COMMA, + STATE(2811), 1, + aux_sym_tuple_type_repeat1, + STATE(2659), 2, sym_line_comment, sym_block_comment, - [79639] = 7, + [80471] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5619), 1, + ACTIONS(5758), 1, anon_sym_RPAREN, - ACTIONS(5621), 1, + ACTIONS(5760), 1, anon_sym_COMMA, - STATE(2787), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2627), 2, - sym_line_comment, - sym_block_comment, - [79662] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(3283), 1, - sym_block, - STATE(3460), 1, - sym_label, - STATE(2628), 2, + STATE(2755), 1, + aux_sym_tuple_type_repeat1, + STATE(2660), 2, sym_line_comment, sym_block_comment, - [79685] = 7, + [80494] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5623), 1, - anon_sym_SEMI, - ACTIONS(5625), 1, - anon_sym_EQ, - ACTIONS(5627), 1, - anon_sym_else, - STATE(2629), 2, + ACTIONS(5319), 1, + anon_sym_RPAREN, + ACTIONS(5321), 1, + anon_sym_COMMA, + STATE(2867), 1, + aux_sym_parameters_repeat1, + STATE(2661), 2, sym_line_comment, sym_block_comment, - [79708] = 7, + [80517] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5629), 1, - anon_sym_RPAREN, - ACTIONS(5631), 1, - anon_sym_COMMA, - STATE(2722), 1, - aux_sym_tuple_type_repeat1, - STATE(2630), 2, + STATE(2662), 2, sym_line_comment, sym_block_comment, - [79731] = 7, + ACTIONS(5384), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [80534] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1349), 1, - sym_declaration_list, - STATE(2980), 1, - sym_where_clause, - STATE(2631), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4807), 1, + anon_sym_LT, + STATE(2210), 1, + sym_parameters, + STATE(3191), 1, + sym_type_parameters, + STATE(2663), 2, sym_line_comment, sym_block_comment, - [79754] = 7, + [80557] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(5633), 1, - anon_sym_RBRACK, - ACTIONS(5635), 1, - anon_sym_COMMA, - STATE(2839), 1, - aux_sym_slice_pattern_repeat1, - STATE(2632), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5750), 1, + sym_identifier, + ACTIONS(5752), 1, + sym_super, + STATE(3133), 1, + sym_type_arguments, + STATE(2664), 2, sym_line_comment, sym_block_comment, - [79777] = 7, + [80580] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5637), 1, - anon_sym_SEMI, - STATE(3254), 1, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(630), 1, + sym_declaration_list, + STATE(3153), 1, sym_where_clause, - STATE(2633), 2, + STATE(2665), 2, sym_line_comment, sym_block_comment, - [79800] = 6, + [80603] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(2969), 1, - sym_trait_bounds, - ACTIONS(5639), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2634), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4807), 1, + anon_sym_LT, + STATE(2196), 1, + sym_parameters, + STATE(3064), 1, + sym_type_parameters, + STATE(2666), 2, sym_line_comment, sym_block_comment, - [79821] = 4, + [80626] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2635), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + STATE(3133), 1, + sym_type_arguments, + ACTIONS(5752), 2, + sym_identifier, + sym_super, + STATE(2667), 2, sym_line_comment, sym_block_comment, - ACTIONS(5641), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [79838] = 7, + [80647] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(5643), 1, - anon_sym_RPAREN, - ACTIONS(5645), 1, - anon_sym_COMMA, - STATE(2833), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2636), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(3428), 1, + sym_block, + STATE(3500), 1, + sym_label, + STATE(2668), 2, sym_line_comment, sym_block_comment, - [79861] = 4, + [80670] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2637), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + STATE(3139), 1, + sym_type_arguments, + ACTIONS(5752), 2, + sym_identifier, + sym_super, + STATE(2669), 2, sym_line_comment, sym_block_comment, - ACTIONS(5647), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [79878] = 7, + [80691] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5649), 1, - anon_sym_SEMI, - ACTIONS(5651), 1, - anon_sym_EQ, - ACTIONS(5653), 1, - anon_sym_else, - STATE(2638), 2, + ACTIONS(5762), 1, + anon_sym_DQUOTE, + ACTIONS(5764), 2, + sym_string_content, + sym_escape_sequence, + STATE(2670), 3, sym_line_comment, sym_block_comment, - [79901] = 7, + aux_sym_string_literal_repeat1, + [80710] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, + ACTIONS(3317), 1, anon_sym_SQUOTE, - STATE(3281), 1, + ACTIONS(4910), 1, + anon_sym_LBRACE, + STATE(2907), 1, sym_block, - STATE(3460), 1, + STATE(3550), 1, sym_label, - STATE(2639), 2, + STATE(2671), 2, sym_line_comment, sym_block_comment, - [79924] = 7, + [80733] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, ACTIONS(5655), 1, + sym_super, + ACTIONS(5767), 1, sym_identifier, - STATE(3287), 1, + STATE(3139), 1, sym_type_arguments, - STATE(2640), 2, + STATE(2672), 2, sym_line_comment, sym_block_comment, - [79947] = 5, + [80756] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5659), 1, - anon_sym_COMMA, - ACTIONS(5657), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2641), 3, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5567), 1, + sym_identifier, + ACTIONS(5655), 1, + sym_super, + STATE(3139), 1, + sym_type_arguments, + STATE(2673), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [79966] = 5, + [80779] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - STATE(2642), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4386), 1, + anon_sym_LT2, + STATE(1922), 1, + sym_type_arguments, + STATE(1933), 1, + sym_parameters, + STATE(2674), 2, sym_line_comment, sym_block_comment, - ACTIONS(5657), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [79985] = 7, + [80802] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1256), 1, - sym_declaration_list, - STATE(3054), 1, - sym_where_clause, - STATE(2643), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5567), 1, + sym_identifier, + ACTIONS(5655), 1, + sym_super, + STATE(3133), 1, + sym_type_arguments, + STATE(2675), 2, sym_line_comment, sym_block_comment, - [80008] = 7, + [80825] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5662), 1, - anon_sym_SEMI, - STATE(3434), 1, - sym_where_clause, - STATE(2644), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5050), 1, + sym_super, + ACTIONS(5513), 1, + sym_identifier, + STATE(3133), 1, + sym_type_arguments, + STATE(2676), 2, sym_line_comment, sym_block_comment, - [80031] = 7, + [80848] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3190), 1, anon_sym_LPAREN, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - STATE(1064), 1, + STATE(1038), 1, sym_parameters, - STATE(1929), 1, + STATE(1922), 1, sym_type_arguments, - STATE(2645), 2, + STATE(2677), 2, sym_line_comment, sym_block_comment, - [80054] = 7, + [80871] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4805), 1, anon_sym_LBRACE, - STATE(1236), 1, - sym_declaration_list, - STATE(3070), 1, + ACTIONS(4809), 1, + anon_sym_where, + STATE(730), 1, + sym_field_declaration_list, + STATE(3042), 1, sym_where_clause, - STATE(2646), 2, + STATE(2678), 2, sym_line_comment, sym_block_comment, - [80077] = 7, + [80894] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5664), 1, - anon_sym_SEMI, - STATE(3452), 1, - sym_where_clause, - STATE(2647), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(5769), 1, + anon_sym_RPAREN, + ACTIONS(5771), 1, + anon_sym_COMMA, + STATE(2880), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2679), 2, sym_line_comment, sym_block_comment, - [80100] = 7, + [80917] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, ACTIONS(5655), 1, + sym_super, + ACTIONS(5767), 1, sym_identifier, - STATE(3292), 1, + STATE(3133), 1, sym_type_arguments, - STATE(2648), 2, + STATE(2680), 2, sym_line_comment, sym_block_comment, - [80123] = 7, + [80940] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1181), 1, - anon_sym_RPAREN, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5232), 1, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(5773), 1, + anon_sym_RBRACK, + ACTIONS(5775), 1, anon_sym_COMMA, - STATE(2871), 1, - aux_sym_parameters_repeat1, - STATE(2649), 2, + STATE(2882), 1, + aux_sym_slice_pattern_repeat1, + STATE(2681), 2, sym_line_comment, sym_block_comment, - [80146] = 7, + [80963] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5666), 1, - anon_sym_SEMI, - ACTIONS(5668), 1, - anon_sym_EQ, - ACTIONS(5670), 1, - anon_sym_else, - STATE(2650), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5655), 1, + sym_super, + ACTIONS(5777), 1, + sym_identifier, + STATE(3139), 1, + sym_type_arguments, + STATE(2682), 2, sym_line_comment, sym_block_comment, - [80169] = 7, + [80986] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, + ACTIONS(5362), 1, anon_sym_PIPE, - ACTIONS(5672), 1, + ACTIONS(5779), 1, anon_sym_RPAREN, - ACTIONS(5674), 1, + ACTIONS(5781), 1, anon_sym_COMMA, - STATE(2735), 1, + STATE(2769), 1, aux_sym_tuple_pattern_repeat1, - STATE(2651), 2, + STATE(2683), 2, sym_line_comment, sym_block_comment, - [80192] = 5, + [81009] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1358), 1, - anon_sym_COLON, - STATE(2652), 2, + ACTIONS(5783), 1, + anon_sym_LBRACE, + ACTIONS(5785), 1, + anon_sym_for, + ACTIONS(5787), 1, + anon_sym_loop, + ACTIONS(5789), 1, + anon_sym_while, + STATE(2684), 2, sym_line_comment, sym_block_comment, - ACTIONS(3158), 3, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_GT, - [80211] = 7, + [81032] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, + ACTIONS(5362), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5791), 1, anon_sym_RBRACK, - ACTIONS(5678), 1, + ACTIONS(5793), 1, anon_sym_COMMA, - STATE(2737), 1, + STATE(2771), 1, aux_sym_slice_pattern_repeat1, - STATE(2653), 2, + STATE(2685), 2, sym_line_comment, sym_block_comment, - [80234] = 7, + [81055] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5680), 1, - anon_sym_RPAREN, - ACTIONS(5682), 1, - anon_sym_COMMA, - STATE(2797), 1, - aux_sym_tuple_type_repeat1, - STATE(2654), 2, + ACTIONS(5795), 1, + anon_sym_SEMI, + STATE(3416), 1, + sym_where_clause, + STATE(2686), 2, sym_line_comment, sym_block_comment, - [80257] = 7, + [81078] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1169), 1, - anon_sym_RPAREN, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5370), 1, - anon_sym_COMMA, - STATE(2899), 1, - aux_sym_parameters_repeat1, - STATE(2655), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5655), 1, + sym_super, + ACTIONS(5777), 1, + sym_identifier, + STATE(3133), 1, + sym_type_arguments, + STATE(2687), 2, sym_line_comment, sym_block_comment, - [80280] = 7, + [81101] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5684), 1, - anon_sym_LPAREN, - ACTIONS(5686), 1, - anon_sym_LBRACK, - ACTIONS(5688), 1, - anon_sym_LBRACE, - STATE(2588), 1, - sym_token_tree, - STATE(2656), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5655), 1, + sym_super, + ACTIONS(5797), 1, + sym_identifier, + STATE(3139), 1, + sym_type_arguments, + STATE(2688), 2, sym_line_comment, sym_block_comment, - [80303] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [81124] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(250), 1, - sym_block, - STATE(3252), 1, - sym_label, - STATE(2657), 2, + ACTIONS(5799), 1, + anon_sym_COLON, + STATE(2689), 2, sym_line_comment, sym_block_comment, - [80326] = 7, + ACTIONS(4767), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_PIPE, + [81143] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(1149), 1, - sym_block, - STATE(3460), 1, - sym_label, - STATE(2658), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5655), 1, + sym_super, + ACTIONS(5797), 1, + sym_identifier, + STATE(3133), 1, + sym_type_arguments, + STATE(2690), 2, sym_line_comment, sym_block_comment, - [80349] = 7, + [81166] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - ACTIONS(4729), 1, - anon_sym_LT, - STATE(2189), 1, - sym_parameters, - STATE(3053), 1, - sym_type_parameters, - STATE(2659), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5655), 1, + sym_super, + ACTIONS(5801), 1, + sym_identifier, + STATE(3139), 1, + sym_type_arguments, + STATE(2691), 2, sym_line_comment, sym_block_comment, - [80372] = 5, + [81189] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - STATE(2660), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(660), 1, + sym_declaration_list, + STATE(3142), 1, + sym_where_clause, + STATE(2692), 2, sym_line_comment, sym_block_comment, - ACTIONS(5690), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - [80391] = 7, + [81212] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - STATE(1143), 1, - sym_field_declaration_list, - STATE(3118), 1, - sym_where_clause, - STATE(2661), 2, + ACTIONS(5803), 1, + anon_sym_in, + STATE(2693), 2, sym_line_comment, sym_block_comment, - [80414] = 7, + ACTIONS(5805), 3, + sym_self, + sym_super, + sym_crate, + [81231] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(5171), 1, + ACTIONS(5208), 1, anon_sym_LBRACE, - STATE(1227), 1, + STATE(733), 1, sym_enum_variant_list, - STATE(3092), 1, + STATE(3078), 1, sym_where_clause, - STATE(2662), 2, + STATE(2694), 2, sym_line_comment, sym_block_comment, - [80437] = 7, + [81254] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(5171), 1, + ACTIONS(5196), 1, anon_sym_LBRACE, - STATE(1135), 1, + STATE(1270), 1, sym_enum_variant_list, - STATE(3131), 1, + STATE(3196), 1, sym_where_clause, - STATE(2663), 2, + STATE(2695), 2, sym_line_comment, sym_block_comment, - [80460] = 7, + [81277] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(333), 1, anon_sym_LBRACE, - STATE(1130), 1, - sym_declaration_list, - STATE(3145), 1, - sym_where_clause, - STATE(2664), 2, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(1417), 1, + sym_block, + STATE(3500), 1, + sym_label, + STATE(2696), 2, sym_line_comment, sym_block_comment, - [80483] = 7, + [81300] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5692), 1, - anon_sym_SEMI, - STATE(3481), 1, - sym_where_clause, - STATE(2665), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4807), 1, + anon_sym_LT, + STATE(2209), 1, + sym_parameters, + STATE(3243), 1, + sym_type_parameters, + STATE(2697), 2, sym_line_comment, sym_block_comment, - [80506] = 7, + [81323] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5326), 1, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5655), 1, + sym_super, + ACTIONS(5801), 1, + sym_identifier, + STATE(3133), 1, + sym_type_arguments, + STATE(2698), 2, + sym_line_comment, + sym_block_comment, + [81346] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5315), 1, anon_sym_COMMA, - ACTIONS(5328), 1, + ACTIONS(5317), 1, anon_sym_GT, - ACTIONS(5527), 1, + ACTIONS(5537), 1, anon_sym_EQ, - STATE(2760), 1, + STATE(2796), 1, aux_sym_type_parameters_repeat1, - STATE(2666), 2, + STATE(2699), 2, sym_line_comment, sym_block_comment, - [80529] = 7, + [81369] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1108), 1, - sym_declaration_list, - STATE(3155), 1, - sym_where_clause, - STATE(2667), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5050), 1, + sym_super, + ACTIONS(5801), 1, + sym_identifier, + STATE(3139), 1, + sym_type_arguments, + STATE(2700), 2, sym_line_comment, sym_block_comment, - [80552] = 7, + [81392] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(5112), 1, - anon_sym_LBRACE, - STATE(630), 1, - sym_enum_variant_list, - STATE(3018), 1, - sym_where_clause, - STATE(2668), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5050), 1, + sym_super, + ACTIONS(5801), 1, + sym_identifier, + STATE(3133), 1, + sym_type_arguments, + STATE(2701), 2, sym_line_comment, sym_block_comment, - [80575] = 7, + [81415] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5694), 1, + ACTIONS(4924), 1, + anon_sym_COLON, + ACTIONS(5807), 1, anon_sym_SEMI, - ACTIONS(5696), 1, + ACTIONS(5809), 1, anon_sym_EQ, - ACTIONS(5698), 1, - anon_sym_else, - STATE(2669), 2, + STATE(3535), 1, + sym_trait_bounds, + STATE(2702), 2, sym_line_comment, sym_block_comment, - [80598] = 7, + [81438] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5577), 1, - sym_identifier, - STATE(3292), 1, - sym_type_arguments, - STATE(2670), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(746), 1, + sym_declaration_list, + STATE(3039), 1, + sym_where_clause, + STATE(2703), 2, sym_line_comment, sym_block_comment, - [80621] = 7, + [81461] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4751), 1, - anon_sym_LBRACE, - STATE(639), 1, - sym_field_declaration_list, - STATE(3039), 1, - sym_where_clause, - STATE(2671), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(4627), 1, + anon_sym_for, + STATE(1921), 1, + sym_type_arguments, + STATE(2704), 2, sym_line_comment, sym_block_comment, - [80644] = 7, + [81484] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, + ACTIONS(4390), 2, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(5700), 1, + ACTIONS(5811), 2, anon_sym_RPAREN, - ACTIONS(5702), 1, anon_sym_COMMA, - STATE(2834), 1, - aux_sym_slice_pattern_repeat1, - STATE(2672), 2, + STATE(2705), 2, sym_line_comment, sym_block_comment, - [80667] = 7, + [81503] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - STATE(570), 1, - sym_declaration_list, - STATE(3002), 1, - sym_where_clause, - STATE(2673), 2, + STATE(2706), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5813), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [81520] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4404), 1, + anon_sym_DOT_DOT, + ACTIONS(5074), 1, + anon_sym_COLON_COLON, + ACTIONS(4402), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2707), 2, sym_line_comment, sym_block_comment, - [80690] = 7, + [81541] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5306), 1, - anon_sym_RPAREN, - ACTIONS(5308), 1, - anon_sym_COMMA, - STATE(2826), 1, - aux_sym_parameters_repeat1, - STATE(2674), 2, + ACTIONS(333), 1, + anon_sym_LBRACE, + ACTIONS(3317), 1, + anon_sym_SQUOTE, + STATE(3500), 1, + sym_label, + STATE(3548), 1, + sym_block, + STATE(2708), 2, sym_line_comment, sym_block_comment, - [80713] = 7, + [81564] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5577), 1, - sym_identifier, - STATE(3287), 1, - sym_type_arguments, - STATE(2675), 2, + ACTIONS(5200), 1, + anon_sym_PLUS, + STATE(2709), 2, sym_line_comment, sym_block_comment, - [80736] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3006), 1, - anon_sym_PLUS, - ACTIONS(5704), 1, + ACTIONS(5815), 3, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(5706), 1, anon_sym_GT, - STATE(2823), 1, - aux_sym_type_arguments_repeat1, - STATE(2676), 2, - sym_line_comment, - sym_block_comment, - [80759] = 7, + [81583] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - STATE(1203), 1, + STATE(1387), 1, sym_declaration_list, - STATE(3165), 1, + STATE(3161), 1, sym_where_clause, - STATE(2677), 2, + STATE(2710), 2, sym_line_comment, sym_block_comment, - [80782] = 7, + [81606] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5708), 1, - anon_sym_RPAREN, - ACTIONS(5710), 1, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(3129), 1, + sym_trait_bounds, + ACTIONS(5336), 2, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2678), 2, + anon_sym_GT, + STATE(2711), 2, sym_line_comment, sym_block_comment, - [80805] = 7, + [81627] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5704), 1, - anon_sym_COMMA, - ACTIONS(5706), 1, - anon_sym_GT, - STATE(2823), 1, - aux_sym_type_arguments_repeat1, - STATE(2679), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(4821), 1, + anon_sym_LBRACE, + STATE(1398), 1, + sym_field_declaration_list, + STATE(3156), 1, + sym_where_clause, + STATE(2712), 2, sym_line_comment, sym_block_comment, - [80828] = 7, + [81650] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, + ACTIONS(4924), 1, anon_sym_COLON, - ACTIONS(5712), 1, + ACTIONS(5817), 1, anon_sym_SEMI, - ACTIONS(5714), 1, + ACTIONS(5819), 1, anon_sym_EQ, - STATE(3301), 1, + STATE(3412), 1, sym_trait_bounds, - STATE(2680), 2, + STATE(2713), 2, sym_line_comment, sym_block_comment, - [80851] = 7, + [81673] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4371), 1, - anon_sym_COLON_COLON, - ACTIONS(5716), 1, - anon_sym_for, - STATE(1933), 1, - sym_type_arguments, - STATE(2681), 2, + ACTIONS(5250), 1, + anon_sym_COMMA, + ACTIONS(5252), 1, + anon_sym_GT, + ACTIONS(5537), 1, + anon_sym_EQ, + STATE(2960), 1, + aux_sym_type_parameters_repeat1, + STATE(2714), 2, sym_line_comment, sym_block_comment, - [80874] = 7, + [81696] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - STATE(1196), 1, - sym_field_declaration_list, - STATE(3171), 1, - sym_where_clause, - STATE(2682), 2, + ACTIONS(5250), 1, + anon_sym_COMMA, + ACTIONS(5252), 1, + anon_sym_GT, + STATE(2960), 1, + aux_sym_type_parameters_repeat1, + STATE(2715), 2, sym_line_comment, sym_block_comment, - [80897] = 6, + [81716] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - STATE(3292), 1, - sym_type_arguments, - ACTIONS(5523), 2, - sym_identifier, - sym_super, - STATE(2683), 2, + ACTIONS(1562), 1, + anon_sym_GT, + ACTIONS(5821), 1, + anon_sym_COMMA, + STATE(2722), 1, + aux_sym_type_arguments_repeat1, + STATE(2716), 2, sym_line_comment, sym_block_comment, - [80918] = 6, + [81736] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, + ACTIONS(4386), 1, anon_sym_LT2, - STATE(3287), 1, + ACTIONS(4904), 1, + anon_sym_for, + STATE(1922), 1, sym_type_arguments, - ACTIONS(5523), 2, - sym_identifier, - sym_super, - STATE(2684), 2, + STATE(2717), 2, sym_line_comment, sym_block_comment, - [80939] = 7, + [81756] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5718), 1, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(5823), 1, anon_sym_SEMI, - STATE(3495), 1, - sym_where_clause, - STATE(2685), 2, + STATE(550), 1, + sym_declaration_list, + STATE(2718), 2, sym_line_comment, sym_block_comment, - [80962] = 7, + [81776] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(5825), 1, + anon_sym_LPAREN, + ACTIONS(5827), 1, + anon_sym_LBRACK, + ACTIONS(5829), 1, anon_sym_LBRACE, - ACTIONS(4731), 1, - anon_sym_where, - STATE(507), 1, - sym_declaration_list, - STATE(3000), 1, - sym_where_clause, - STATE(2686), 2, + STATE(2719), 2, sym_line_comment, sym_block_comment, - [80985] = 7, + [81796] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(5831), 1, anon_sym_LPAREN, - ACTIONS(4353), 1, - anon_sym_LT2, - STATE(1929), 1, - sym_type_arguments, - STATE(1958), 1, - sym_parameters, - STATE(2687), 2, + ACTIONS(5833), 1, + anon_sym_LBRACK, + ACTIONS(5835), 1, + anon_sym_LBRACE, + STATE(2720), 2, sym_line_comment, sym_block_comment, - [81008] = 7, + [81816] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(333), 1, - anon_sym_LBRACE, - ACTIONS(3412), 1, - anon_sym_SQUOTE, - STATE(1174), 1, - sym_block, - STATE(3460), 1, - sym_label, - STATE(2688), 2, + ACTIONS(5837), 1, + anon_sym_RBRACE, + ACTIONS(5839), 1, + anon_sym_COMMA, + STATE(2831), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2721), 2, sym_line_comment, sym_block_comment, - [81031] = 6, + [81836] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5720), 1, - sym_identifier, - ACTIONS(5722), 1, - anon_sym_await, - ACTIONS(5724), 1, - sym_integer_literal, - STATE(2689), 2, + ACTIONS(5336), 1, + anon_sym_GT, + ACTIONS(5841), 1, + anon_sym_COMMA, + STATE(2722), 3, sym_line_comment, sym_block_comment, - [81051] = 6, + aux_sym_type_arguments_repeat1, + [81854] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5726), 1, - anon_sym_RBRACE, - ACTIONS(5728), 1, - anon_sym_COMMA, - STATE(2950), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2690), 2, + ACTIONS(3269), 1, + anon_sym_LBRACE, + ACTIONS(5844), 1, + anon_sym_COLON_COLON, + STATE(1382), 1, + sym_field_initializer_list, + STATE(2723), 2, sym_line_comment, sym_block_comment, - [81071] = 6, + [81874] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(5730), 1, + ACTIONS(5846), 1, anon_sym_SEMI, - STATE(1184), 1, + STATE(1412), 1, sym_declaration_list, - STATE(2691), 2, + STATE(2724), 2, sym_line_comment, sym_block_comment, - [81091] = 6, + [81894] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(5732), 1, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(5848), 1, anon_sym_SEMI, - STATE(698), 1, - sym_declaration_list, - STATE(2692), 2, + STATE(3537), 1, + sym_where_clause, + STATE(2725), 2, sym_line_comment, sym_block_comment, - [81111] = 5, + [81914] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5734), 1, - sym_identifier, - ACTIONS(5736), 2, - anon_sym_default, - anon_sym_union, - STATE(2693), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(5850), 1, + anon_sym_SEMI, + STATE(3406), 1, + sym_where_clause, + STATE(2726), 2, sym_line_comment, sym_block_comment, - [81129] = 6, + [81934] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5852), 1, anon_sym_LBRACE, - ACTIONS(5738), 1, - anon_sym_SEMI, - STATE(729), 1, - sym_declaration_list, - STATE(2694), 2, + STATE(1922), 1, + sym_type_arguments, + STATE(2727), 2, sym_line_comment, sym_block_comment, - [81149] = 4, + [81954] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2695), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5811), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2728), 2, sym_line_comment, sym_block_comment, - ACTIONS(5740), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81165] = 6, + [81972] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(5742), 1, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(5854), 1, anon_sym_SEMI, - STATE(3496), 1, - sym_where_clause, - STATE(2696), 2, + STATE(1289), 1, + sym_declaration_list, + STATE(2729), 2, sym_line_comment, sym_block_comment, - [81185] = 6, + [81992] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5744), 1, - sym_identifier, - ACTIONS(5746), 1, - anon_sym_ref, - ACTIONS(5748), 1, - sym_mutable_specifier, - STATE(2697), 2, + ACTIONS(678), 1, + anon_sym_RPAREN, + ACTIONS(5856), 1, + anon_sym_COMMA, + STATE(2611), 1, + aux_sym_arguments_repeat1, + STATE(2730), 2, sym_line_comment, sym_block_comment, - [81205] = 4, + [82012] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2698), 2, + ACTIONS(5811), 1, + anon_sym_RPAREN, + ACTIONS(5858), 1, + anon_sym_COMMA, + STATE(2731), 3, sym_line_comment, sym_block_comment, - ACTIONS(5750), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81221] = 6, + aux_sym_parameters_repeat1, + [82030] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5752), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(2699), 2, + ACTIONS(5315), 1, + anon_sym_COMMA, + ACTIONS(5317), 1, + anon_sym_GT, + STATE(2796), 1, + aux_sym_type_parameters_repeat1, + STATE(2732), 2, sym_line_comment, sym_block_comment, - [81241] = 6, + [82050] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, - anon_sym_RBRACE, - ACTIONS(5756), 1, + ACTIONS(4497), 1, + anon_sym_COLON_COLON, + ACTIONS(5198), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2791), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2700), 2, + STATE(2733), 2, sym_line_comment, sym_block_comment, - [81261] = 5, + [82068] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(5758), 2, - anon_sym_RBRACE, + ACTIONS(1108), 1, + anon_sym_RPAREN, + ACTIONS(5861), 1, anon_sym_COMMA, - STATE(2701), 2, + STATE(2731), 1, + aux_sym_parameters_repeat1, + STATE(2734), 2, sym_line_comment, sym_block_comment, - [81279] = 4, + [82088] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2702), 2, + ACTIONS(5461), 1, + anon_sym_COMMA, + ACTIONS(5863), 1, + anon_sym_PIPE, + STATE(2915), 1, + aux_sym_closure_parameters_repeat1, + STATE(2735), 2, sym_line_comment, sym_block_comment, - ACTIONS(5760), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81295] = 6, + [82108] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5762), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(2703), 2, + ACTIONS(5865), 1, + sym_identifier, + ACTIONS(5867), 1, + anon_sym_await, + ACTIONS(5869), 1, + sym_integer_literal, + STATE(2736), 2, sym_line_comment, sym_block_comment, - [81315] = 6, + [82128] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5764), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(2704), 2, + ACTIONS(2914), 1, + anon_sym_SQUOTE, + ACTIONS(5871), 1, + anon_sym_GT, + STATE(3258), 1, + sym_lifetime, + STATE(2737), 2, sym_line_comment, sym_block_comment, - [81335] = 6, + [82148] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4729), 1, - anon_sym_LT, - ACTIONS(5766), 1, - anon_sym_EQ, - STATE(3493), 1, - sym_type_parameters, - STATE(2705), 2, + ACTIONS(5873), 1, + anon_sym_COMMA, + ACTIONS(5876), 1, + anon_sym_GT, + STATE(2738), 3, sym_line_comment, sym_block_comment, - [81355] = 4, + aux_sym_for_lifetimes_repeat1, + [82166] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2706), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5878), 1, + anon_sym_SEMI, + ACTIONS(5880), 1, + anon_sym_EQ, + STATE(2739), 2, sym_line_comment, sym_block_comment, - ACTIONS(5768), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81371] = 6, + [82186] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4770), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(2707), 2, + ACTIONS(5779), 1, + anon_sym_RPAREN, + ACTIONS(5781), 1, + anon_sym_COMMA, + STATE(2769), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2740), 2, sym_line_comment, sym_block_comment, - [81391] = 6, + [82206] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5770), 1, - anon_sym_SEMI, - ACTIONS(5772), 1, - anon_sym_EQ, - STATE(2708), 2, + ACTIONS(5769), 1, + anon_sym_RPAREN, + ACTIONS(5771), 1, + anon_sym_COMMA, + STATE(2880), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2741), 2, sym_line_comment, sym_block_comment, - [81411] = 6, + [82226] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(5774), 1, - anon_sym_SEMI, - STATE(762), 1, - sym_declaration_list, - STATE(2709), 2, + STATE(2742), 2, sym_line_comment, sym_block_comment, - [81431] = 6, + ACTIONS(5882), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82242] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(5776), 1, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(5884), 1, anon_sym_SEMI, - STATE(751), 1, - sym_declaration_list, - STATE(2710), 2, + STATE(3319), 1, + sym_where_clause, + STATE(2743), 2, sym_line_comment, sym_block_comment, - [81451] = 6, + [82262] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(5778), 1, - anon_sym_SEMI, - STATE(726), 1, - sym_declaration_list, - STATE(2711), 2, + ACTIONS(5886), 1, + anon_sym_RBRACE, + ACTIONS(5888), 1, + anon_sym_COMMA, + STATE(2974), 1, + aux_sym_use_list_repeat1, + STATE(2744), 2, sym_line_comment, sym_block_comment, - [81471] = 6, + [82282] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(5780), 1, - anon_sym_SEMI, - STATE(719), 1, - sym_declaration_list, - STATE(2712), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(5890), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2745), 2, sym_line_comment, sym_block_comment, - [81491] = 5, + [82300] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5782), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2713), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4891), 1, + anon_sym_COLON_COLON, + STATE(1918), 1, + sym_type_arguments, + STATE(2746), 2, sym_line_comment, sym_block_comment, - [81509] = 5, + [82320] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5784), 1, - sym_identifier, - ACTIONS(5786), 2, - anon_sym_default, - anon_sym_union, - STATE(2714), 2, + STATE(2747), 2, sym_line_comment, sym_block_comment, - [81527] = 6, + ACTIONS(5892), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82336] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(668), 1, + ACTIONS(642), 1, anon_sym_RBRACK, - ACTIONS(3979), 1, + ACTIONS(4050), 1, anon_sym_COMMA, - STATE(2496), 1, + STATE(2611), 1, aux_sym_arguments_repeat1, - STATE(2715), 2, + STATE(2748), 2, sym_line_comment, sym_block_comment, - [81547] = 6, + [82356] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5788), 1, - anon_sym_RPAREN, - ACTIONS(5790), 1, + ACTIONS(5894), 1, + anon_sym_RBRACE, + ACTIONS(5896), 1, anon_sym_COMMA, - STATE(2784), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2716), 2, + STATE(2749), 3, sym_line_comment, sym_block_comment, - [81567] = 6, + aux_sym_field_initializer_list_repeat1, + [82374] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4729), 1, - anon_sym_LT, - ACTIONS(5792), 1, - anon_sym_EQ, - STATE(3269), 1, - sym_type_parameters, - STATE(2717), 2, + ACTIONS(3198), 1, + anon_sym_LT2, + ACTIONS(4858), 1, + anon_sym_COLON_COLON, + STATE(1071), 1, + sym_type_arguments, + STATE(2750), 2, sym_line_comment, sym_block_comment, - [81587] = 5, + [82394] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5794), 2, - anon_sym_RPAREN, + ACTIONS(5899), 1, + anon_sym_RBRACE, + ACTIONS(5901), 1, anon_sym_COMMA, - STATE(2718), 2, + STATE(2751), 3, sym_line_comment, sym_block_comment, - [81605] = 4, + aux_sym_struct_pattern_repeat1, + [82412] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2719), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5904), 1, + anon_sym_SEMI, + ACTIONS(5906), 1, + anon_sym_RBRACK, + STATE(2752), 2, sym_line_comment, sym_block_comment, - ACTIONS(4355), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81621] = 4, + [82432] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2720), 2, + ACTIONS(5910), 1, + anon_sym_COLON, + ACTIONS(5908), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2753), 2, sym_line_comment, sym_block_comment, - ACTIONS(4684), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [81637] = 6, + [82450] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(5796), 1, - anon_sym_SEMI, - STATE(598), 1, - sym_declaration_list, - STATE(2721), 2, + ACTIONS(5912), 1, + anon_sym_RBRACE, + ACTIONS(5914), 1, + anon_sym_COMMA, + STATE(2959), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2754), 2, sym_line_comment, sym_block_comment, - [81657] = 6, + [82470] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3100), 1, + ACTIONS(3110), 1, anon_sym_RPAREN, - ACTIONS(5798), 1, + ACTIONS(5916), 1, anon_sym_COMMA, - STATE(2848), 1, + STATE(2896), 1, aux_sym_tuple_type_repeat1, - STATE(2722), 2, + STATE(2755), 2, sym_line_comment, sym_block_comment, - [81677] = 6, + [82490] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(5800), 1, - anon_sym_SEMI, - STATE(585), 1, - sym_declaration_list, - STATE(2723), 2, + ACTIONS(5918), 1, + anon_sym_RBRACE, + ACTIONS(5920), 1, + anon_sym_COMMA, + STATE(2756), 3, sym_line_comment, sym_block_comment, - [81697] = 5, + aux_sym_enum_variant_list_repeat2, + [82508] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5802), 2, - anon_sym_RPAREN, + ACTIONS(5923), 1, + anon_sym_RBRACE, + ACTIONS(5925), 1, anon_sym_COMMA, - STATE(2724), 2, + STATE(2757), 3, sym_line_comment, sym_block_comment, - [81715] = 5, + aux_sym_use_list_repeat1, + [82526] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(5804), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2725), 2, + ACTIONS(5928), 1, + sym_identifier, + ACTIONS(5930), 1, + anon_sym_ref, + ACTIONS(5932), 1, + sym_mutable_specifier, + STATE(2758), 2, sym_line_comment, sym_block_comment, - [81733] = 6, + [82546] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5704), 1, + STATE(2759), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5934), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(5706), 1, - anon_sym_GT, - STATE(2823), 1, - aux_sym_type_arguments_repeat1, - STATE(2726), 2, + [82562] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5938), 1, + anon_sym_EQ, + ACTIONS(5936), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2760), 2, sym_line_comment, sym_block_comment, - [81753] = 6, + [82580] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4532), 1, + ACTIONS(4665), 1, anon_sym_COLON_COLON, - ACTIONS(4590), 1, + ACTIONS(4775), 1, anon_sym_BANG, - ACTIONS(5806), 1, + ACTIONS(5940), 1, sym_identifier, - STATE(2727), 2, + STATE(2761), 2, sym_line_comment, sym_block_comment, - [81773] = 6, + [82600] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5808), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(2728), 2, + ACTIONS(4835), 1, + anon_sym_RBRACE, + ACTIONS(5942), 1, + anon_sym_COMMA, + STATE(2756), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2762), 2, sym_line_comment, sym_block_comment, - [81793] = 6, + [82620] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5810), 1, - sym_identifier, - ACTIONS(5812), 1, - anon_sym_ref, - ACTIONS(5814), 1, - sym_mutable_specifier, - STATE(2729), 2, + ACTIONS(5319), 1, + anon_sym_RPAREN, + ACTIONS(5321), 1, + anon_sym_COMMA, + STATE(2867), 1, + aux_sym_parameters_repeat1, + STATE(2763), 2, sym_line_comment, sym_block_comment, - [81813] = 6, + [82640] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_RPAREN, - ACTIONS(5308), 1, - anon_sym_COMMA, - STATE(2826), 1, - aux_sym_parameters_repeat1, - STATE(2730), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5944), 1, + anon_sym_SEMI, + ACTIONS(5946), 1, + anon_sym_RBRACK, + STATE(2764), 2, sym_line_comment, sym_block_comment, - [81833] = 5, + [82660] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3935), 1, - anon_sym_COLON_COLON, - ACTIONS(5816), 2, - anon_sym_RPAREN, + ACTIONS(676), 1, + anon_sym_RBRACK, + ACTIONS(3982), 1, anon_sym_COMMA, - STATE(2731), 2, + STATE(2611), 1, + aux_sym_arguments_repeat1, + STATE(2765), 2, sym_line_comment, sym_block_comment, - [81851] = 6, + [82680] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(5818), 1, + ACTIONS(5948), 1, anon_sym_SEMI, - STATE(560), 1, + STATE(512), 1, sym_declaration_list, - STATE(2732), 2, + STATE(2766), 2, sym_line_comment, sym_block_comment, - [81871] = 5, + [82700] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5453), 2, - anon_sym_RPAREN, + ACTIONS(5952), 1, + anon_sym_COLON, + ACTIONS(5950), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2733), 2, + STATE(2767), 2, sym_line_comment, sym_block_comment, - [81889] = 6, + [82718] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5820), 1, - anon_sym_RBRACE, - ACTIONS(5822), 1, - anon_sym_COMMA, - STATE(2759), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2734), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(5954), 1, + anon_sym_for, + STATE(1922), 1, + sym_type_arguments, + STATE(2768), 2, sym_line_comment, sym_block_comment, - [81909] = 6, + [82738] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2914), 1, + ACTIONS(2920), 1, anon_sym_RPAREN, - ACTIONS(5824), 1, + ACTIONS(5956), 1, anon_sym_COMMA, - STATE(2887), 1, + STATE(2872), 1, aux_sym_tuple_pattern_repeat1, - STATE(2735), 2, + STATE(2769), 2, sym_line_comment, sym_block_comment, - [81929] = 6, + [82758] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(5826), 1, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(5958), 1, anon_sym_SEMI, - STATE(3309), 1, - sym_where_clause, - STATE(2736), 2, + STATE(709), 1, + sym_declaration_list, + STATE(2770), 2, sym_line_comment, sym_block_comment, - [81949] = 6, + [82778] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2972), 1, + ACTIONS(2978), 1, anon_sym_RBRACK, - ACTIONS(5828), 1, + ACTIONS(5960), 1, anon_sym_COMMA, - STATE(2641), 1, + STATE(2549), 1, aux_sym_slice_pattern_repeat1, - STATE(2737), 2, + STATE(2771), 2, sym_line_comment, sym_block_comment, - [81969] = 5, + [82798] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5832), 1, - anon_sym_COLON, - ACTIONS(5830), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2738), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(5962), 1, + anon_sym_SEMI, + STATE(698), 1, + sym_declaration_list, + STATE(2772), 2, sym_line_comment, sym_block_comment, - [81987] = 6, + [82818] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5834), 1, - anon_sym_SEMI, - ACTIONS(5836), 1, - anon_sym_EQ, - STATE(2739), 2, + ACTIONS(658), 1, + anon_sym_RBRACK, + ACTIONS(4004), 1, + anon_sym_COMMA, + STATE(2611), 1, + aux_sym_arguments_repeat1, + STATE(2773), 2, sym_line_comment, sym_block_comment, - [82007] = 6, + [82838] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3256), 1, - anon_sym_LBRACE, - ACTIONS(5838), 1, - anon_sym_COLON_COLON, - STATE(1330), 1, - sym_field_initializer_list, - STATE(2740), 2, + ACTIONS(4807), 1, + anon_sym_LT, + ACTIONS(5964), 1, + anon_sym_EQ, + STATE(3511), 1, + sym_type_parameters, + STATE(2774), 2, sym_line_comment, sym_block_comment, - [82027] = 6, + [82858] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, + ACTIONS(5966), 1, anon_sym_RBRACE, - ACTIONS(5842), 1, + ACTIONS(5968), 1, anon_sym_COMMA, - STATE(2836), 1, + STATE(2877), 1, aux_sym_struct_pattern_repeat1, - STATE(2741), 2, + STATE(2775), 2, sym_line_comment, sym_block_comment, - [82047] = 5, + [82878] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5844), 2, + ACTIONS(5970), 2, anon_sym_COMMA, anon_sym_GT, - STATE(2742), 2, + STATE(2776), 2, sym_line_comment, sym_block_comment, - [82065] = 6, + [82896] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, + ACTIONS(5537), 1, + anon_sym_EQ, + ACTIONS(5728), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(2777), 2, + sym_line_comment, + sym_block_comment, + [82914] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(5972), 1, + anon_sym_SEMI, + STATE(718), 1, + sym_declaration_list, + STATE(2778), 2, + sym_line_comment, + sym_block_comment, + [82934] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5974), 1, anon_sym_RBRACE, - ACTIONS(5848), 1, + ACTIONS(5976), 1, anon_sym_COMMA, - STATE(2838), 1, + STATE(2881), 1, aux_sym_struct_pattern_repeat1, - STATE(2743), 2, + STATE(2779), 2, sym_line_comment, sym_block_comment, - [82085] = 6, + [82954] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5850), 1, + ACTIONS(5978), 1, anon_sym_SEMI, - ACTIONS(5852), 1, + ACTIONS(5980), 1, anon_sym_EQ, - STATE(2744), 2, + STATE(2780), 2, sym_line_comment, sym_block_comment, - [82105] = 4, + [82974] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2745), 2, + ACTIONS(5200), 1, + anon_sym_PLUS, + ACTIONS(5982), 1, + anon_sym_GT, + ACTIONS(5984), 1, + anon_sym_as, + STATE(2781), 2, sym_line_comment, sym_block_comment, - ACTIONS(5854), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [82121] = 6, + [82994] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4287), 1, - anon_sym_RBRACE, - ACTIONS(5856), 1, - anon_sym_COMMA, - STATE(2964), 1, - aux_sym_use_list_repeat1, - STATE(2746), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(5986), 1, + anon_sym_SEMI, + STATE(720), 1, + sym_declaration_list, + STATE(2782), 2, sym_line_comment, sym_block_comment, - [82141] = 6, + [83014] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, - anon_sym_LPAREN, - ACTIONS(5860), 1, - anon_sym_LBRACK, - ACTIONS(5862), 1, - anon_sym_LBRACE, - STATE(2747), 2, + ACTIONS(5988), 1, + sym_identifier, + ACTIONS(5990), 1, + anon_sym_await, + ACTIONS(5992), 1, + sym_integer_literal, + STATE(2783), 2, sym_line_comment, sym_block_comment, - [82161] = 6, + [83034] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5864), 1, - anon_sym_LPAREN, - ACTIONS(5866), 1, - anon_sym_LBRACK, - ACTIONS(5868), 1, - anon_sym_LBRACE, - STATE(2748), 2, + ACTIONS(5994), 1, + sym_identifier, + ACTIONS(5996), 1, + anon_sym_ref, + ACTIONS(5998), 1, + sym_mutable_specifier, + STATE(2784), 2, sym_line_comment, sym_block_comment, - [82181] = 6, + [83054] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5870), 1, + ACTIONS(6000), 1, anon_sym_RBRACE, - ACTIONS(5872), 1, + ACTIONS(6002), 1, anon_sym_COMMA, - STATE(2840), 1, + STATE(2883), 1, aux_sym_enum_variant_list_repeat2, - STATE(2749), 2, + STATE(2785), 2, sym_line_comment, sym_block_comment, - [82201] = 4, + [83074] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2750), 2, + STATE(2786), 2, sym_line_comment, sym_block_comment, - ACTIONS(5874), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [82217] = 4, + ACTIONS(6004), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [83090] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2751), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6006), 1, + anon_sym_SEMI, + ACTIONS(6008), 1, + anon_sym_EQ, + STATE(2787), 2, sym_line_comment, sym_block_comment, - ACTIONS(5876), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [82233] = 4, + [83110] = 6, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2752), 2, + ACTIONS(6010), 1, + anon_sym_move, + STATE(121), 1, + sym_closure_parameters, + STATE(2788), 2, sym_line_comment, sym_block_comment, - ACTIONS(5878), 3, - anon_sym_SEMI, + [83130] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_RBRACE, + ACTIONS(6012), 1, anon_sym_COMMA, - [82249] = 4, + STATE(2804), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2789), 2, + sym_line_comment, + sym_block_comment, + [83150] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2753), 2, + ACTIONS(6014), 1, + anon_sym_RPAREN, + ACTIONS(6016), 1, + anon_sym_COMMA, + STATE(2797), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2790), 2, sym_line_comment, sym_block_comment, - ACTIONS(5880), 3, - anon_sym_SEMI, + [83170] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4875), 1, anon_sym_RBRACE, + ACTIONS(6012), 1, anon_sym_COMMA, - [82265] = 4, + STATE(2803), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2791), 2, + sym_line_comment, + sym_block_comment, + [83190] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2754), 2, + ACTIONS(6018), 1, + anon_sym_RPAREN, + ACTIONS(6020), 1, + anon_sym_COMMA, + STATE(2797), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2792), 2, sym_line_comment, sym_block_comment, - ACTIONS(5882), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [82281] = 6, - ACTIONS(33), 1, - anon_sym_PIPE, + [83210] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5884), 1, - anon_sym_move, - STATE(149), 1, - sym_closure_parameters, - STATE(2755), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6022), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2793), 2, sym_line_comment, sym_block_comment, - [82301] = 4, + [83228] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2756), 2, + ACTIONS(4589), 1, + anon_sym_GT, + ACTIONS(6024), 1, + anon_sym_COMMA, + STATE(2840), 1, + aux_sym_type_parameters_repeat1, + STATE(2794), 2, sym_line_comment, sym_block_comment, - ACTIONS(5886), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [82317] = 6, + [83248] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5888), 1, - anon_sym_RBRACE, - ACTIONS(5890), 1, - anon_sym_COMMA, - STATE(2746), 1, - aux_sym_use_list_repeat1, - STATE(2757), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6026), 1, + anon_sym_SEMI, + ACTIONS(6028), 1, + anon_sym_EQ, + STATE(2795), 2, sym_line_comment, sym_block_comment, - [82337] = 6, + [83268] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4761), 1, + ACTIONS(4593), 1, anon_sym_GT, - ACTIONS(5892), 1, + ACTIONS(5294), 1, anon_sym_COMMA, - STATE(2928), 1, + STATE(2840), 1, aux_sym_type_parameters_repeat1, - STATE(2758), 2, + STATE(2796), 2, sym_line_comment, sym_block_comment, - [82357] = 6, + [83288] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4763), 1, - anon_sym_RBRACE, - ACTIONS(5894), 1, + ACTIONS(6030), 1, + anon_sym_RPAREN, + ACTIONS(6032), 1, anon_sym_COMMA, - STATE(2965), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2759), 2, + STATE(2797), 3, sym_line_comment, sym_block_comment, - [82377] = 6, + aux_sym_ordered_field_declaration_list_repeat1, + [83306] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4759), 1, + ACTIONS(4593), 1, anon_sym_GT, - ACTIONS(5896), 1, + ACTIONS(5294), 1, anon_sym_COMMA, - STATE(2928), 1, + STATE(2893), 1, aux_sym_type_parameters_repeat1, - STATE(2760), 2, + STATE(2798), 2, sym_line_comment, sym_block_comment, - [82397] = 5, + [83326] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5900), 1, - anon_sym_COLON, - ACTIONS(5898), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2761), 2, + STATE(2799), 2, sym_line_comment, sym_block_comment, - [82415] = 6, + ACTIONS(5401), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [83342] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(5902), 1, + ACTIONS(6035), 1, anon_sym_SEMI, - STATE(1102), 1, + STATE(1100), 1, sym_declaration_list, - STATE(2762), 2, + STATE(2800), 2, sym_line_comment, sym_block_comment, - [82435] = 4, + [83362] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2763), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5904), 3, - anon_sym_SEMI, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6037), 2, anon_sym_RBRACE, anon_sym_COMMA, - [82451] = 4, + STATE(2801), 2, + sym_line_comment, + sym_block_comment, + [83380] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2764), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(6039), 1, + anon_sym_SEMI, + STATE(1105), 1, + sym_declaration_list, + STATE(2802), 2, sym_line_comment, sym_block_comment, - ACTIONS(5906), 3, - anon_sym_SEMI, + [83400] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(6041), 1, anon_sym_RBRACE, + ACTIONS(6043), 1, anon_sym_COMMA, - [82467] = 4, + STATE(2803), 3, + sym_line_comment, + sym_block_comment, + aux_sym_field_declaration_list_repeat1, + [83418] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2765), 2, + ACTIONS(4831), 1, + anon_sym_RBRACE, + ACTIONS(6046), 1, + anon_sym_COMMA, + STATE(2803), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2804), 2, sym_line_comment, sym_block_comment, - ACTIONS(4586), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82483] = 4, + [83438] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2766), 2, + STATE(2805), 2, sym_line_comment, sym_block_comment, - ACTIONS(4628), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82499] = 4, + ACTIONS(6048), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [83454] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2767), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(6050), 1, + anon_sym_SEMI, + STATE(504), 1, + sym_declaration_list, + STATE(2806), 2, sym_line_comment, sym_block_comment, - ACTIONS(4648), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82515] = 4, + [83474] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2768), 2, + ACTIONS(684), 1, + anon_sym_RBRACK, + ACTIONS(4058), 1, + anon_sym_COMMA, + STATE(2611), 1, + aux_sym_arguments_repeat1, + STATE(2807), 2, sym_line_comment, sym_block_comment, - ACTIONS(4584), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82531] = 4, + [83494] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2769), 2, + STATE(2808), 2, sym_line_comment, sym_block_comment, - ACTIONS(4678), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82547] = 4, + ACTIONS(6052), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [83510] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2770), 2, + ACTIONS(6056), 1, + anon_sym_AMP_AMP, + ACTIONS(6054), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2809), 2, sym_line_comment, sym_block_comment, - ACTIONS(4634), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82563] = 6, + [83528] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(6056), 1, + anon_sym_AMP_AMP, + ACTIONS(4168), 2, anon_sym_LBRACE, - ACTIONS(5908), 1, - anon_sym_SEMI, - STATE(579), 1, - sym_declaration_list, - STATE(2771), 2, + anon_sym_SQUOTE, + STATE(2810), 2, sym_line_comment, sym_block_comment, - [82583] = 6, + [83546] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(3114), 1, + anon_sym_RPAREN, + ACTIONS(6058), 1, + anon_sym_COMMA, + STATE(2896), 1, + aux_sym_tuple_type_repeat1, + STATE(2811), 2, + sym_line_comment, + sym_block_comment, + [83566] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5910), 1, + ACTIONS(6060), 1, anon_sym_SEMI, - ACTIONS(5912), 1, + ACTIONS(6062), 1, anon_sym_EQ, - STATE(2772), 2, + STATE(2812), 2, sym_line_comment, sym_block_comment, - [82603] = 6, + [83586] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(5914), 1, + ACTIONS(6064), 1, anon_sym_SEMI, - STATE(1214), 1, + STATE(707), 1, sym_declaration_list, - STATE(2773), 2, + STATE(2813), 2, sym_line_comment, sym_block_comment, - [82623] = 6, + [83606] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(666), 1, - anon_sym_RBRACK, - ACTIONS(3977), 1, - anon_sym_COMMA, - STATE(2496), 1, - aux_sym_arguments_repeat1, - STATE(2774), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4755), 1, + anon_sym_LBRACE, + STATE(1922), 1, + sym_type_arguments, + STATE(2814), 2, sym_line_comment, sym_block_comment, - [82643] = 6, + [83626] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5916), 1, + ACTIONS(6066), 1, anon_sym_RBRACE, - ACTIONS(5918), 1, + ACTIONS(6068), 1, anon_sym_COMMA, - STATE(2860), 1, + STATE(2905), 1, aux_sym_field_declaration_list_repeat1, - STATE(2775), 2, + STATE(2815), 2, sym_line_comment, sym_block_comment, - [82663] = 4, + [83646] = 6, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2776), 2, + ACTIONS(6070), 1, + anon_sym_move, + STATE(116), 1, + sym_closure_parameters, + STATE(2816), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82679] = 6, + [83666] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(5920), 1, + ACTIONS(6072), 1, anon_sym_SEMI, - STATE(3313), 1, + STATE(3442), 1, sym_where_clause, - STATE(2777), 2, - sym_line_comment, - sym_block_comment, - [82699] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5922), 1, - anon_sym_PLUS, - ACTIONS(5924), 1, - anon_sym_GT, - ACTIONS(5926), 1, - anon_sym_as, - STATE(2778), 2, + STATE(2817), 2, sym_line_comment, sym_block_comment, - [82719] = 6, + [83686] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4737), 1, - anon_sym_RBRACE, - ACTIONS(5928), 1, + ACTIONS(5461), 1, anon_sym_COMMA, - STATE(2781), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2779), 2, + ACTIONS(6074), 1, + anon_sym_PIPE, + STATE(2735), 1, + aux_sym_closure_parameters_repeat1, + STATE(2818), 2, sym_line_comment, sym_block_comment, - [82739] = 4, + [83706] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2780), 2, + ACTIONS(3914), 1, + anon_sym_LBRACE, + ACTIONS(6076), 1, + anon_sym_COLON_COLON, + STATE(1739), 1, + sym_field_initializer_list, + STATE(2819), 2, sym_line_comment, sym_block_comment, - ACTIONS(904), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82755] = 5, + [83726] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, - anon_sym_RBRACE, - ACTIONS(5932), 1, - anon_sym_COMMA, - STATE(2781), 3, + ACTIONS(6078), 1, + sym_identifier, + ACTIONS(6080), 2, + anon_sym_default, + anon_sym_union, + STATE(2820), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [82773] = 6, + [83744] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5326), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(5651), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(5328), 1, - anon_sym_GT, - STATE(2760), 1, - aux_sym_type_parameters_repeat1, - STATE(2782), 2, + STATE(2821), 2, sym_line_comment, sym_block_comment, - [82793] = 5, + [83762] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5935), 2, - anon_sym_RBRACE, + ACTIONS(4497), 1, + anon_sym_COLON_COLON, + ACTIONS(6082), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2783), 2, + STATE(2822), 2, sym_line_comment, sym_block_comment, - [82811] = 5, + [83780] = 6, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5937), 1, - anon_sym_RPAREN, - ACTIONS(5939), 1, - anon_sym_COMMA, - STATE(2784), 3, + ACTIONS(6084), 1, + anon_sym_move, + STATE(126), 1, + sym_closure_parameters, + STATE(2823), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [82829] = 5, + [83800] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5942), 2, - anon_sym_RPAREN, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(6086), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2785), 2, + STATE(2824), 2, sym_line_comment, sym_block_comment, - [82847] = 6, + [83818] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(5944), 1, + ACTIONS(6088), 1, anon_sym_SEMI, - STATE(1127), 1, + STATE(569), 1, sym_declaration_list, - STATE(2786), 2, + STATE(2825), 2, sym_line_comment, sym_block_comment, - [82867] = 6, + [83838] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5946), 1, - anon_sym_RPAREN, - ACTIONS(5948), 1, - anon_sym_COMMA, - STATE(2784), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2787), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(6090), 1, + anon_sym_SEMI, + STATE(1431), 1, + sym_declaration_list, + STATE(2826), 2, sym_line_comment, sym_block_comment, - [82887] = 6, + [83858] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5950), 1, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(6092), 1, anon_sym_SEMI, - ACTIONS(5952), 1, - anon_sym_EQ, - STATE(2788), 2, + STATE(645), 1, + sym_declaration_list, + STATE(2827), 2, sym_line_comment, sym_block_comment, - [82907] = 6, + [83878] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(5954), 1, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(6094), 1, anon_sym_SEMI, - STATE(3479), 1, - sym_where_clause, - STATE(2789), 2, + STATE(637), 1, + sym_declaration_list, + STATE(2828), 2, sym_line_comment, sym_block_comment, - [82927] = 6, + [83898] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(5956), 1, + ACTIONS(6096), 1, anon_sym_SEMI, - STATE(665), 1, + STATE(559), 1, sym_declaration_list, - STATE(2790), 2, + STATE(2829), 2, sym_line_comment, sym_block_comment, - [82947] = 6, + [83918] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4739), 1, + ACTIONS(4591), 1, + anon_sym_GT, + ACTIONS(6098), 1, + anon_sym_COMMA, + STATE(2840), 1, + aux_sym_type_parameters_repeat1, + STATE(2830), 2, + sym_line_comment, + sym_block_comment, + [83938] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4715), 1, anon_sym_RBRACE, - ACTIONS(5958), 1, + ACTIONS(6100), 1, anon_sym_COMMA, - STATE(2965), 1, + STATE(2749), 1, aux_sym_field_initializer_list_repeat1, - STATE(2791), 2, + STATE(2831), 2, sym_line_comment, sym_block_comment, - [82967] = 6, + [83958] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(5960), 1, - anon_sym_SEMI, - STATE(667), 1, - sym_declaration_list, - STATE(2792), 2, + ACTIONS(4585), 1, + anon_sym_GT, + ACTIONS(6102), 1, + anon_sym_COMMA, + STATE(2840), 1, + aux_sym_type_parameters_repeat1, + STATE(2832), 2, sym_line_comment, sym_block_comment, - [82987] = 5, + [83978] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(5962), 2, + ACTIONS(5475), 1, + anon_sym_RPAREN, + ACTIONS(5477), 1, anon_sym_COMMA, - anon_sym_GT, - STATE(2793), 2, + STATE(2889), 1, + aux_sym_parameters_repeat1, + STATE(2833), 2, sym_line_comment, sym_block_comment, - [83005] = 6, + [83998] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(5964), 1, + ACTIONS(6104), 1, + anon_sym_LPAREN, + ACTIONS(6106), 1, + anon_sym_LBRACK, + ACTIONS(6108), 1, anon_sym_LBRACE, - STATE(1929), 1, - sym_type_arguments, - STATE(2794), 2, + STATE(2834), 2, sym_line_comment, sym_block_comment, - [83025] = 6, + [84018] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, + ACTIONS(4809), 1, anon_sym_where, - ACTIONS(5966), 1, + ACTIONS(6110), 1, anon_sym_SEMI, - STATE(3329), 1, + STATE(3465), 1, sym_where_clause, - STATE(2795), 2, + STATE(2835), 2, sym_line_comment, sym_block_comment, - [83045] = 6, + [84038] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(5968), 1, - anon_sym_SEMI, - STATE(706), 1, - sym_declaration_list, - STATE(2796), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6112), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2836), 2, sym_line_comment, sym_block_comment, - [83065] = 6, + [84056] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3096), 1, - anon_sym_RPAREN, - ACTIONS(5970), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6114), 2, anon_sym_COMMA, - STATE(2848), 1, - aux_sym_tuple_type_repeat1, - STATE(2797), 2, + anon_sym_GT, + STATE(2837), 2, sym_line_comment, sym_block_comment, - [83085] = 6, + [84074] = 6, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(5972), 1, - anon_sym_SEMI, - STATE(708), 1, - sym_declaration_list, - STATE(2798), 2, + ACTIONS(6116), 1, + anon_sym_move, + STATE(134), 1, + sym_closure_parameters, + STATE(2838), 2, sym_line_comment, sym_block_comment, - [83105] = 6, + [84094] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5974), 1, - anon_sym_LPAREN, - ACTIONS(5976), 1, - anon_sym_LBRACK, - ACTIONS(5978), 1, - anon_sym_LBRACE, - STATE(2799), 2, + ACTIONS(6118), 1, + anon_sym_RPAREN, + ACTIONS(6120), 1, + anon_sym_COMMA, + STATE(2797), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2839), 2, sym_line_comment, sym_block_comment, - [83125] = 6, + [84114] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5980), 1, + ACTIONS(5620), 1, + anon_sym_GT, + ACTIONS(6122), 1, + anon_sym_COMMA, + STATE(2840), 3, + sym_line_comment, + sym_block_comment, + aux_sym_type_parameters_repeat1, + [84132] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(6125), 1, anon_sym_LPAREN, - ACTIONS(5982), 1, + ACTIONS(6127), 1, anon_sym_LBRACK, - ACTIONS(5984), 1, + ACTIONS(6129), 1, anon_sym_LBRACE, - STATE(2800), 2, + STATE(2841), 2, sym_line_comment, sym_block_comment, - [83145] = 6, + [84152] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5491), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6131), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(5986), 1, - anon_sym_PIPE, - STATE(2892), 1, - aux_sym_closure_parameters_repeat1, - STATE(2801), 2, + STATE(2842), 2, sym_line_comment, sym_block_comment, - [83165] = 6, + [84170] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3256), 1, - anon_sym_LBRACE, - ACTIONS(5988), 1, - anon_sym_COLON_COLON, - STATE(1330), 1, - sym_field_initializer_list, - STATE(2802), 2, + ACTIONS(672), 1, + anon_sym_RPAREN, + ACTIONS(4016), 1, + anon_sym_COMMA, + STATE(2611), 1, + aux_sym_arguments_repeat1, + STATE(2843), 2, sym_line_comment, sym_block_comment, - [83185] = 6, + [84190] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(670), 1, - anon_sym_RPAREN, - ACTIONS(3985), 1, + ACTIONS(5537), 1, + anon_sym_EQ, + ACTIONS(5620), 2, anon_sym_COMMA, - STATE(2496), 1, - aux_sym_arguments_repeat1, - STATE(2803), 2, + anon_sym_GT, + STATE(2844), 2, sym_line_comment, sym_block_comment, - [83205] = 6, + [84208] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4688), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - STATE(1929), 1, - sym_type_arguments, - STATE(2804), 2, + ACTIONS(6133), 1, + anon_sym_SEMI, + STATE(615), 1, + sym_declaration_list, + STATE(2845), 2, sym_line_comment, sym_block_comment, - [83225] = 6, + [84228] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4825), 1, - anon_sym_RBRACE, - ACTIONS(5990), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6135), 2, anon_sym_COMMA, - STATE(2813), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2805), 2, + anon_sym_GT, + STATE(2846), 2, sym_line_comment, sym_block_comment, - [83245] = 6, + [84246] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(694), 1, - anon_sym_RPAREN, - ACTIONS(3975), 1, - anon_sym_COMMA, - STATE(2496), 1, - aux_sym_arguments_repeat1, - STATE(2806), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(6137), 1, + anon_sym_SEMI, + STATE(612), 1, + sym_declaration_list, + STATE(2847), 2, sym_line_comment, sym_block_comment, - [83265] = 6, + [84266] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5992), 1, - anon_sym_EQ_GT, - ACTIONS(5994), 1, - anon_sym_PIPE, - ACTIONS(5996), 1, - anon_sym_if, - STATE(2807), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(6139), 1, + anon_sym_SEMI, + STATE(604), 1, + sym_declaration_list, + STATE(2848), 2, sym_line_comment, sym_block_comment, - [83285] = 6, + [84286] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4719), 1, - anon_sym_COLON_COLON, - STATE(1928), 1, - sym_type_arguments, - STATE(2808), 2, + ACTIONS(6141), 1, + sym_identifier, + ACTIONS(6143), 2, + anon_sym_default, + anon_sym_union, + STATE(2849), 2, sym_line_comment, sym_block_comment, - [83305] = 5, + [84304] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6000), 1, - anon_sym_EQ, - ACTIONS(5998), 2, + ACTIONS(4906), 1, anon_sym_RBRACE, + ACTIONS(6145), 1, anon_sym_COMMA, - STATE(2809), 2, + STATE(2762), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2850), 2, sym_line_comment, sym_block_comment, - [83323] = 6, + [84324] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5495), 1, - anon_sym_COMMA, - ACTIONS(5497), 1, - anon_sym_GT, - STATE(2851), 1, - aux_sym_type_arguments_repeat1, - STATE(2810), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6147), 1, + anon_sym_SEMI, + ACTIONS(6149), 1, + anon_sym_EQ, + STATE(2851), 2, sym_line_comment, sym_block_comment, - [83343] = 6, + [84344] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(6002), 1, - anon_sym_SEMI, - STATE(3363), 1, - sym_where_clause, - STATE(2811), 2, + ACTIONS(3028), 1, + anon_sym_PLUS, + ACTIONS(6151), 1, + sym_mutable_specifier, + ACTIONS(6153), 1, + sym_self, + STATE(2852), 2, sym_line_comment, sym_block_comment, - [83363] = 6, + [84364] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5245), 1, + ACTIONS(1114), 1, anon_sym_RPAREN, - ACTIONS(5247), 1, + ACTIONS(6155), 1, anon_sym_COMMA, - STATE(2854), 1, + STATE(2731), 1, aux_sym_parameters_repeat1, - STATE(2812), 2, + STATE(2853), 2, sym_line_comment, sym_block_comment, - [83383] = 5, + [84384] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6004), 1, - anon_sym_RBRACE, - ACTIONS(6006), 1, + ACTIONS(1540), 1, + anon_sym_GT, + ACTIONS(6157), 1, anon_sym_COMMA, - STATE(2813), 3, + STATE(2722), 1, + aux_sym_type_arguments_repeat1, + STATE(2854), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [83401] = 4, + [84404] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2814), 2, + ACTIONS(4906), 1, + anon_sym_RBRACE, + ACTIONS(6145), 1, + anon_sym_COMMA, + STATE(2756), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4642), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83417] = 6, + [84424] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3006), 1, - anon_sym_PLUS, - ACTIONS(6009), 1, - sym_mutable_specifier, - ACTIONS(6011), 1, - sym_self, - STATE(2815), 2, + ACTIONS(6161), 1, + anon_sym_EQ, + ACTIONS(6159), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2856), 2, sym_line_comment, sym_block_comment, - [83437] = 6, + [84442] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(6013), 1, - anon_sym_SEMI, - STATE(754), 1, - sym_declaration_list, - STATE(2816), 2, + ACTIONS(5030), 1, + anon_sym_RBRACE, + ACTIONS(6163), 1, + anon_sym_COMMA, + STATE(2751), 1, + aux_sym_struct_pattern_repeat1, + STATE(2857), 2, sym_line_comment, sym_block_comment, - [83457] = 4, + [84462] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2817), 2, + ACTIONS(2974), 1, + anon_sym_RPAREN, + ACTIONS(6165), 1, + anon_sym_COMMA, + STATE(2549), 1, + aux_sym_slice_pattern_repeat1, + STATE(2858), 2, sym_line_comment, sym_block_comment, - ACTIONS(4676), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83473] = 6, - ACTIONS(33), 1, - anon_sym_PIPE, + [84482] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6015), 1, - anon_sym_move, - STATE(120), 1, - sym_closure_parameters, - STATE(2818), 2, + ACTIONS(644), 1, + anon_sym_RBRACK, + ACTIONS(6167), 1, + anon_sym_COMMA, + STATE(2611), 1, + aux_sym_arguments_repeat1, + STATE(2859), 2, sym_line_comment, sym_block_comment, - [83493] = 6, + [84502] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(672), 1, - anon_sym_RBRACK, - ACTIONS(6017), 1, + ACTIONS(5092), 1, + anon_sym_RBRACE, + ACTIONS(6169), 1, anon_sym_COMMA, - STATE(2496), 1, - aux_sym_arguments_repeat1, - STATE(2819), 2, + STATE(2751), 1, + aux_sym_struct_pattern_repeat1, + STATE(2860), 2, sym_line_comment, sym_block_comment, - [83513] = 6, + [84522] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6019), 1, + ACTIONS(6173), 1, + anon_sym_COLON, + ACTIONS(6171), 2, + anon_sym_RBRACE, anon_sym_COMMA, - ACTIONS(6021), 1, - anon_sym_GT, - STATE(2883), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2820), 2, + STATE(2861), 2, sym_line_comment, sym_block_comment, - [83533] = 4, + [84540] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2821), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(4852), 1, + anon_sym_for, + STATE(1922), 1, + sym_type_arguments, + STATE(2862), 2, sym_line_comment, sym_block_comment, - ACTIONS(6023), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83549] = 5, + [84560] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6025), 1, - anon_sym_AMP_AMP, - ACTIONS(4225), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2822), 2, + ACTIONS(1566), 1, + anon_sym_GT, + ACTIONS(6175), 1, + anon_sym_COMMA, + STATE(2941), 1, + aux_sym_type_arguments_repeat1, + STATE(2863), 2, sym_line_comment, sym_block_comment, - [83567] = 6, + [84580] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1636), 1, + ACTIONS(1566), 1, anon_sym_GT, - ACTIONS(6027), 1, + ACTIONS(6175), 1, anon_sym_COMMA, - STATE(2889), 1, + STATE(2722), 1, aux_sym_type_arguments_repeat1, - STATE(2823), 2, + STATE(2864), 2, sym_line_comment, sym_block_comment, - [83587] = 5, + [84600] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6025), 1, - anon_sym_AMP_AMP, - ACTIONS(6029), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2824), 2, + ACTIONS(2980), 1, + anon_sym_RPAREN, + ACTIONS(6177), 1, + anon_sym_COMMA, + STATE(2549), 1, + aux_sym_slice_pattern_repeat1, + STATE(2865), 2, sym_line_comment, sym_block_comment, - [83605] = 4, + [84620] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2825), 2, + STATE(2866), 2, sym_line_comment, sym_block_comment, - ACTIONS(4536), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83621] = 6, + ACTIONS(6179), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [84636] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1169), 1, + ACTIONS(1126), 1, anon_sym_RPAREN, - ACTIONS(5370), 1, + ACTIONS(5334), 1, anon_sym_COMMA, - STATE(2879), 1, + STATE(2731), 1, aux_sym_parameters_repeat1, - STATE(2826), 2, + STATE(2867), 2, sym_line_comment, sym_block_comment, - [83641] = 4, + [84656] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2827), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(6181), 1, + anon_sym_SEMI, + STATE(601), 1, + sym_declaration_list, + STATE(2868), 2, sym_line_comment, sym_block_comment, - ACTIONS(4682), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83657] = 4, + [84676] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2828), 2, + ACTIONS(3269), 1, + anon_sym_LBRACE, + ACTIONS(6183), 1, + anon_sym_COLON_COLON, + STATE(1382), 1, + sym_field_initializer_list, + STATE(2869), 2, sym_line_comment, sym_block_comment, - ACTIONS(4686), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83673] = 6, + [84696] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1169), 1, + ACTIONS(1126), 1, anon_sym_RPAREN, - ACTIONS(5370), 1, + ACTIONS(5334), 1, anon_sym_COMMA, - STATE(2899), 1, + STATE(2945), 1, aux_sym_parameters_repeat1, - STATE(2829), 2, + STATE(2870), 2, sym_line_comment, sym_block_comment, - [83693] = 4, + [84716] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2830), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6185), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2871), 2, sym_line_comment, sym_block_comment, - ACTIONS(4690), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83709] = 6, + [84734] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6031), 1, - anon_sym_SEMI, - ACTIONS(6033), 1, - anon_sym_RBRACK, - STATE(2831), 2, + ACTIONS(6187), 1, + anon_sym_RPAREN, + ACTIONS(6189), 1, + anon_sym_COMMA, + STATE(2872), 3, sym_line_comment, sym_block_comment, - [83729] = 4, + aux_sym_tuple_pattern_repeat1, + [84752] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2832), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(6187), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2873), 2, sym_line_comment, sym_block_comment, - ACTIONS(4660), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83745] = 6, + [84770] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2912), 1, + ACTIONS(1120), 1, anon_sym_RPAREN, - ACTIONS(6035), 1, + ACTIONS(5469), 1, anon_sym_COMMA, - STATE(2887), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2833), 2, + STATE(2853), 1, + aux_sym_parameters_repeat1, + STATE(2874), 2, sym_line_comment, sym_block_comment, - [83765] = 6, + [84790] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2974), 1, + ACTIONS(2972), 1, anon_sym_RPAREN, - ACTIONS(6037), 1, + ACTIONS(6192), 1, anon_sym_COMMA, - STATE(2641), 1, + STATE(2549), 1, aux_sym_slice_pattern_repeat1, - STATE(2834), 2, + STATE(2875), 2, sym_line_comment, sym_block_comment, - [83785] = 6, + [84810] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5132), 1, + ACTIONS(6194), 1, anon_sym_COMMA, - ACTIONS(5134), 1, + ACTIONS(6196), 1, anon_sym_GT, - STATE(2970), 1, - aux_sym_type_parameters_repeat1, - STATE(2835), 2, + STATE(2738), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2876), 2, sym_line_comment, sym_block_comment, - [83805] = 6, + [84830] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4989), 1, + ACTIONS(5090), 1, anon_sym_RBRACE, - ACTIONS(6039), 1, + ACTIONS(6198), 1, anon_sym_COMMA, - STATE(2862), 1, + STATE(2751), 1, aux_sym_struct_pattern_repeat1, - STATE(2836), 2, + STATE(2877), 2, sym_line_comment, sym_block_comment, - [83825] = 6, - ACTIONS(33), 1, - anon_sym_PIPE, + [84850] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6041), 1, - anon_sym_move, - STATE(140), 1, - sym_closure_parameters, - STATE(2837), 2, + ACTIONS(2914), 1, + anon_sym_SQUOTE, + ACTIONS(6196), 1, + anon_sym_GT, + STATE(3258), 1, + sym_lifetime, + STATE(2878), 2, + sym_line_comment, + sym_block_comment, + [84870] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2976), 1, + anon_sym_RPAREN, + ACTIONS(6200), 1, + anon_sym_COMMA, + STATE(2549), 1, + aux_sym_slice_pattern_repeat1, + STATE(2879), 2, + sym_line_comment, + sym_block_comment, + [84890] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2902), 1, + anon_sym_RPAREN, + ACTIONS(6202), 1, + anon_sym_COMMA, + STATE(2872), 1, + aux_sym_tuple_pattern_repeat1, + STATE(2880), 2, sym_line_comment, sym_block_comment, - [83845] = 6, + [84910] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4993), 1, + ACTIONS(5082), 1, anon_sym_RBRACE, - ACTIONS(6043), 1, + ACTIONS(6204), 1, anon_sym_COMMA, - STATE(2862), 1, + STATE(2751), 1, aux_sym_struct_pattern_repeat1, - STATE(2838), 2, + STATE(2881), 2, sym_line_comment, sym_block_comment, - [83865] = 6, + [84930] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2960), 1, + ACTIONS(2962), 1, anon_sym_RBRACK, - ACTIONS(6045), 1, + ACTIONS(6206), 1, anon_sym_COMMA, - STATE(2641), 1, + STATE(2549), 1, aux_sym_slice_pattern_repeat1, - STATE(2839), 2, + STATE(2882), 2, sym_line_comment, sym_block_comment, - [83885] = 6, + [84950] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, + ACTIONS(4879), 1, anon_sym_RBRACE, - ACTIONS(6047), 1, + ACTIONS(6208), 1, anon_sym_COMMA, - STATE(2813), 1, + STATE(2756), 1, aux_sym_enum_variant_list_repeat2, - STATE(2840), 2, + STATE(2883), 2, sym_line_comment, sym_block_comment, - [83905] = 6, + [84970] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4741), 1, + ACTIONS(4879), 1, anon_sym_RBRACE, - ACTIONS(6047), 1, + ACTIONS(6208), 1, anon_sym_COMMA, - STATE(2905), 1, + STATE(2952), 1, aux_sym_enum_variant_list_repeat2, - STATE(2841), 2, + STATE(2884), 2, sym_line_comment, sym_block_comment, - [83925] = 6, + [84990] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(4817), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(2842), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(6210), 1, + anon_sym_SEMI, + STATE(542), 1, + sym_declaration_list, + STATE(2885), 2, sym_line_comment, sym_block_comment, - [83945] = 4, + [85010] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2843), 2, + ACTIONS(1118), 1, + anon_sym_RPAREN, + ACTIONS(5354), 1, + anon_sym_COMMA, + STATE(2734), 1, + aux_sym_parameters_repeat1, + STATE(2886), 2, sym_line_comment, sym_block_comment, - ACTIONS(4620), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83961] = 4, + [85030] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2844), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + ACTIONS(6212), 1, + anon_sym_SEMI, + STATE(537), 1, + sym_declaration_list, + STATE(2887), 2, sym_line_comment, sym_block_comment, - ACTIONS(4612), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83977] = 4, + [85050] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2845), 2, + ACTIONS(1120), 1, + anon_sym_RPAREN, + ACTIONS(5469), 1, + anon_sym_COMMA, + STATE(2731), 1, + aux_sym_parameters_repeat1, + STATE(2888), 2, sym_line_comment, sym_block_comment, - ACTIONS(4638), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83993] = 6, + [85070] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(674), 1, - anon_sym_RBRACK, - ACTIONS(6049), 1, + ACTIONS(1118), 1, + anon_sym_RPAREN, + ACTIONS(5354), 1, anon_sym_COMMA, - STATE(2496), 1, - aux_sym_arguments_repeat1, - STATE(2846), 2, + STATE(2731), 1, + aux_sym_parameters_repeat1, + STATE(2889), 2, sym_line_comment, sym_block_comment, - [84013] = 5, + [85090] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6051), 2, - anon_sym_RPAREN, + ACTIONS(1568), 1, + anon_sym_GT, + ACTIONS(6214), 1, + anon_sym_COMMA, + STATE(2722), 1, + aux_sym_type_arguments_repeat1, + STATE(2890), 2, + sym_line_comment, + sym_block_comment, + [85110] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1568), 1, + anon_sym_GT, + ACTIONS(6214), 1, + anon_sym_COMMA, + STATE(2716), 1, + aux_sym_type_arguments_repeat1, + STATE(2891), 2, + sym_line_comment, + sym_block_comment, + [85130] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4563), 1, + anon_sym_GT, + ACTIONS(6216), 1, anon_sym_COMMA, - STATE(2847), 2, + STATE(2840), 1, + aux_sym_type_parameters_repeat1, + STATE(2892), 2, sym_line_comment, sym_block_comment, - [84031] = 5, + [85150] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6051), 1, - anon_sym_RPAREN, - ACTIONS(6053), 1, + ACTIONS(4597), 1, + anon_sym_GT, + ACTIONS(6218), 1, anon_sym_COMMA, - STATE(2848), 3, + STATE(2840), 1, + aux_sym_type_parameters_repeat1, + STATE(2893), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [84049] = 6, + [85170] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(6056), 1, + ACTIONS(6220), 1, anon_sym_SEMI, - STATE(1176), 1, + STATE(1249), 1, sym_declaration_list, - STATE(2849), 2, + STATE(2894), 2, sym_line_comment, sym_block_comment, - [84069] = 4, + [85190] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2850), 2, + STATE(2895), 2, sym_line_comment, sym_block_comment, - ACTIONS(4566), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84085] = 6, + ACTIONS(6222), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [85206] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1628), 1, - anon_sym_GT, - ACTIONS(6058), 1, + ACTIONS(6224), 1, + anon_sym_RPAREN, + ACTIONS(6226), 1, anon_sym_COMMA, - STATE(2889), 1, - aux_sym_type_arguments_repeat1, - STATE(2851), 2, + STATE(2896), 3, sym_line_comment, sym_block_comment, - [84105] = 6, + aux_sym_tuple_type_repeat1, + [85224] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(6060), 1, + ACTIONS(6229), 1, anon_sym_SEMI, - STATE(1198), 1, + STATE(1372), 1, sym_declaration_list, - STATE(2852), 2, + STATE(2897), 2, sym_line_comment, sym_block_comment, - [84125] = 6, + [85244] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5672), 1, - anon_sym_RPAREN, - ACTIONS(5674), 1, - anon_sym_COMMA, - STATE(2735), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2853), 2, + ACTIONS(4807), 1, + anon_sym_LT, + ACTIONS(6231), 1, + anon_sym_EQ, + STATE(3533), 1, + sym_type_parameters, + STATE(2898), 2, sym_line_comment, sym_block_comment, - [84145] = 6, + [85264] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1181), 1, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6224), 2, anon_sym_RPAREN, - ACTIONS(5232), 1, anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, - STATE(2854), 2, + STATE(2899), 2, sym_line_comment, sym_block_comment, - [84165] = 4, + [85282] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2855), 2, + ACTIONS(1564), 1, + anon_sym_GT, + ACTIONS(6233), 1, + anon_sym_COMMA, + STATE(2722), 1, + aux_sym_type_arguments_repeat1, + STATE(2900), 2, sym_line_comment, sym_block_comment, - ACTIONS(4626), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84181] = 6, + [85302] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(6062), 1, - anon_sym_SEMI, - STATE(514), 1, - sym_declaration_list, - STATE(2856), 2, + ACTIONS(1564), 1, + anon_sym_GT, + ACTIONS(6233), 1, + anon_sym_COMMA, + STATE(2854), 1, + aux_sym_type_arguments_repeat1, + STATE(2901), 2, sym_line_comment, sym_block_comment, - [84201] = 6, + [85322] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(6064), 1, + ACTIONS(6235), 1, anon_sym_SEMI, - ACTIONS(6066), 1, + ACTIONS(6237), 1, anon_sym_EQ, - STATE(2857), 2, + STATE(2902), 2, sym_line_comment, sym_block_comment, - [84221] = 6, + [85342] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1181), 1, - anon_sym_RPAREN, - ACTIONS(5232), 1, + ACTIONS(682), 1, + anon_sym_RBRACK, + ACTIONS(6239), 1, anon_sym_COMMA, - STATE(2871), 1, - aux_sym_parameters_repeat1, - STATE(2858), 2, + STATE(2611), 1, + aux_sym_arguments_repeat1, + STATE(2903), 2, sym_line_comment, sym_block_comment, - [84241] = 4, + [85362] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2859), 2, + STATE(2904), 2, sym_line_comment, sym_block_comment, - ACTIONS(4630), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84257] = 6, + ACTIONS(6241), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [85378] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, + ACTIONS(4881), 1, anon_sym_RBRACE, - ACTIONS(6068), 1, + ACTIONS(6243), 1, anon_sym_COMMA, - STATE(2781), 1, + STATE(2803), 1, aux_sym_field_declaration_list_repeat1, - STATE(2860), 2, + STATE(2905), 2, sym_line_comment, sym_block_comment, - [84277] = 6, + [85398] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4809), 1, + ACTIONS(4881), 1, anon_sym_RBRACE, - ACTIONS(6068), 1, + ACTIONS(6243), 1, anon_sym_COMMA, - STATE(2920), 1, + STATE(2969), 1, aux_sym_field_declaration_list_repeat1, - STATE(2861), 2, + STATE(2906), 2, sym_line_comment, sym_block_comment, - [84297] = 5, + [85418] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6070), 1, - anon_sym_RBRACE, - ACTIONS(6072), 1, - anon_sym_COMMA, - STATE(2862), 3, + STATE(2907), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [84315] = 6, - ACTIONS(33), 1, + ACTIONS(916), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [85434] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6075), 1, - anon_sym_move, - STATE(138), 1, - sym_closure_parameters, - STATE(2863), 2, + ACTIONS(6247), 1, + anon_sym_COLON, + ACTIONS(6245), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2908), 2, sym_line_comment, sym_block_comment, - [84335] = 5, + [85452] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6079), 1, - anon_sym_COLON, - ACTIONS(6077), 2, + ACTIONS(6249), 1, anon_sym_RBRACE, + ACTIONS(6251), 1, anon_sym_COMMA, - STATE(2864), 2, + STATE(2860), 1, + aux_sym_struct_pattern_repeat1, + STATE(2909), 2, sym_line_comment, sym_block_comment, - [84353] = 6, + [85472] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3765), 1, - anon_sym_LBRACE, - ACTIONS(6081), 1, - anon_sym_COLON_COLON, - STATE(1688), 1, - sym_field_initializer_list, - STATE(2865), 2, + STATE(2910), 2, sym_line_comment, sym_block_comment, - [84373] = 6, + ACTIONS(6253), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [85488] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(6083), 1, + ACTIONS(6255), 1, anon_sym_SEMI, - STATE(1233), 1, + STATE(1117), 1, sym_declaration_list, - STATE(2866), 2, + STATE(2911), 2, sym_line_comment, sym_block_comment, - [84393] = 5, + [85508] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6087), 1, - anon_sym_COLON, - ACTIONS(6085), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2867), 2, + STATE(2912), 2, sym_line_comment, sym_block_comment, - [84411] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6089), 1, + ACTIONS(1476), 3, + anon_sym_COLON, anon_sym_COMMA, - ACTIONS(6092), 1, - anon_sym_GT, - STATE(2868), 3, - sym_line_comment, - sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [84429] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2924), 1, - anon_sym_SQUOTE, - ACTIONS(6094), 1, anon_sym_GT, - STATE(3135), 1, - sym_lifetime, - STATE(2869), 2, - sym_line_comment, - sym_block_comment, - [84449] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2870), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6096), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84465] = 6, + [85524] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1179), 1, - anon_sym_RPAREN, - ACTIONS(6098), 1, + ACTIONS(5459), 1, + anon_sym_COLON, + ACTIONS(6257), 2, anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, - STATE(2871), 2, + anon_sym_PIPE, + STATE(2913), 2, sym_line_comment, sym_block_comment, - [84485] = 6, + [85542] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6100), 1, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(6259), 2, anon_sym_RBRACE, - ACTIONS(6102), 1, anon_sym_COMMA, - STATE(2902), 1, - aux_sym_struct_pattern_repeat1, - STATE(2872), 2, + STATE(2914), 2, sym_line_comment, sym_block_comment, - [84505] = 6, + [85560] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2924), 1, - anon_sym_SQUOTE, - ACTIONS(6104), 1, - anon_sym_GT, - STATE(3135), 1, - sym_lifetime, - STATE(2873), 2, + ACTIONS(6257), 1, + anon_sym_PIPE, + ACTIONS(6261), 1, + anon_sym_COMMA, + STATE(2915), 3, sym_line_comment, sym_block_comment, - [84525] = 6, + aux_sym_closure_parameters_repeat1, + [85578] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6106), 1, - anon_sym_SEMI, - ACTIONS(6108), 1, - anon_sym_EQ, - STATE(2874), 2, + STATE(2916), 2, sym_line_comment, sym_block_comment, - [84545] = 6, - ACTIONS(33), 1, + ACTIONS(4390), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [85594] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6110), 1, - anon_sym_move, - STATE(146), 1, - sym_closure_parameters, - STATE(2875), 2, - sym_line_comment, - sym_block_comment, - [84565] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3935), 1, - anon_sym_COLON_COLON, - ACTIONS(5108), 2, + ACTIONS(5455), 1, anon_sym_RPAREN, + ACTIONS(5457), 1, anon_sym_COMMA, - STATE(2876), 2, + STATE(2888), 1, + aux_sym_parameters_repeat1, + STATE(2917), 2, sym_line_comment, sym_block_comment, - [84583] = 6, + [85614] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(6112), 1, - anon_sym_SEMI, - STATE(3427), 1, - sym_where_clause, - STATE(2877), 2, + STATE(2918), 2, sym_line_comment, sym_block_comment, - [84603] = 4, + ACTIONS(4781), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85630] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2878), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6264), 1, + anon_sym_SEMI, + ACTIONS(6266), 1, + anon_sym_EQ, + STATE(2919), 2, sym_line_comment, sym_block_comment, - ACTIONS(5257), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84619] = 5, + [85650] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5561), 1, - anon_sym_RPAREN, - ACTIONS(6114), 1, + ACTIONS(6268), 1, + anon_sym_RBRACE, + ACTIONS(6270), 1, anon_sym_COMMA, - STATE(2879), 3, + STATE(2857), 1, + aux_sym_struct_pattern_repeat1, + STATE(2920), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [84637] = 5, + [85670] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(5561), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2880), 2, + ACTIONS(6272), 1, + anon_sym_SEMI, + ACTIONS(6274), 1, + anon_sym_EQ, + STATE(2921), 2, sym_line_comment, sym_block_comment, - [84655] = 6, - ACTIONS(33), 1, - anon_sym_PIPE, + [85690] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6117), 1, - anon_sym_move, - STATE(126), 1, - sym_closure_parameters, - STATE(2881), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(6276), 1, + anon_sym_SEMI, + STATE(3536), 1, + sym_where_clause, + STATE(2922), 2, sym_line_comment, sym_block_comment, - [84675] = 6, + [85710] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5643), 1, + ACTIONS(3106), 1, anon_sym_RPAREN, - ACTIONS(5645), 1, + ACTIONS(6278), 1, anon_sym_COMMA, - STATE(2833), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2882), 2, + STATE(2896), 1, + aux_sym_tuple_type_repeat1, + STATE(2923), 2, sym_line_comment, sym_block_comment, - [84695] = 6, + [85730] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6104), 1, - anon_sym_GT, - ACTIONS(6119), 1, - anon_sym_COMMA, - STATE(2868), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2883), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(6280), 1, + anon_sym_for, + STATE(1922), 1, + sym_type_arguments, + STATE(2924), 2, sym_line_comment, sym_block_comment, - [84715] = 5, + [85750] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5265), 1, - anon_sym_COLON, - ACTIONS(6121), 2, - anon_sym_COMMA, - anon_sym_PIPE, - STATE(2884), 2, + STATE(2925), 2, sym_line_comment, sym_block_comment, - [84733] = 5, + ACTIONS(4743), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85766] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(6123), 2, - anon_sym_RPAREN, + ACTIONS(6282), 1, + anon_sym_RBRACE, + ACTIONS(6284), 1, anon_sym_COMMA, - STATE(2885), 2, + STATE(2855), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2926), 2, sym_line_comment, sym_block_comment, - [84751] = 6, + [85786] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(664), 1, - anon_sym_RPAREN, - ACTIONS(6125), 1, - anon_sym_COMMA, - STATE(2496), 1, - aux_sym_arguments_repeat1, - STATE(2886), 2, + STATE(2927), 2, sym_line_comment, sym_block_comment, - [84771] = 5, + ACTIONS(4725), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85802] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6123), 1, - anon_sym_RPAREN, - ACTIONS(6127), 1, - anon_sym_COMMA, - STATE(2887), 3, + ACTIONS(4519), 1, + anon_sym_COLON, + ACTIONS(4891), 1, + anon_sym_COLON_COLON, + STATE(2615), 1, + sym_trait_bounds, + STATE(2928), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [84789] = 5, + [85822] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6121), 1, - anon_sym_PIPE, - ACTIONS(6130), 1, - anon_sym_COMMA, - STATE(2888), 3, + STATE(2929), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [84807] = 5, + ACTIONS(4737), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85838] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6133), 1, - anon_sym_COMMA, - ACTIONS(6136), 1, - anon_sym_GT, - STATE(2889), 3, + STATE(2930), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [84825] = 6, + ACTIONS(4739), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85854] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1171), 1, + ACTIONS(640), 1, anon_sym_RPAREN, - ACTIONS(6138), 1, + ACTIONS(6286), 1, anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, - STATE(2890), 2, + STATE(2611), 1, + aux_sym_arguments_repeat1, + STATE(2931), 2, sym_line_comment, sym_block_comment, - [84845] = 4, + [85874] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2891), 2, + STATE(2932), 2, sym_line_comment, sym_block_comment, - ACTIONS(6140), 3, - sym__string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [84861] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5491), 1, - anon_sym_COMMA, - ACTIONS(6142), 1, + ACTIONS(4767), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - STATE(2888), 1, - aux_sym_closure_parameters_repeat1, - STATE(2892), 2, - sym_line_comment, - sym_block_comment, - [84881] = 6, + anon_sym_if, + [85890] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3170), 1, + ACTIONS(4386), 1, anon_sym_LT2, - ACTIONS(4747), 1, - anon_sym_COLON_COLON, - STATE(1052), 1, + ACTIONS(6288), 1, + anon_sym_for, + STATE(1922), 1, sym_type_arguments, - STATE(2893), 2, + STATE(2933), 2, sym_line_comment, sym_block_comment, - [84901] = 6, + [85910] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6144), 1, - sym_identifier, - ACTIONS(6146), 1, - anon_sym_await, - ACTIONS(6148), 1, - sym_integer_literal, - STATE(2894), 2, + ACTIONS(3896), 1, + anon_sym_LT2, + ACTIONS(4885), 1, + anon_sym_COLON_COLON, + STATE(1606), 1, + sym_type_arguments, + STATE(2934), 2, sym_line_comment, sym_block_comment, - [84921] = 6, + [85930] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2984), 1, - anon_sym_RPAREN, - ACTIONS(6150), 1, - anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, - STATE(2895), 2, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4519), 1, + anon_sym_COLON, + STATE(2615), 1, + sym_trait_bounds, + STATE(2935), 2, sym_line_comment, sym_block_comment, - [84941] = 6, + [85950] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1173), 1, - anon_sym_RPAREN, - ACTIONS(5283), 1, - anon_sym_COMMA, - STATE(2890), 1, - aux_sym_parameters_repeat1, - STATE(2896), 2, + STATE(2936), 2, sym_line_comment, sym_block_comment, - [84961] = 5, + ACTIONS(4727), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85966] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3006), 1, + ACTIONS(4922), 1, anon_sym_PLUS, - ACTIONS(6136), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2897), 2, + ACTIONS(6290), 1, + anon_sym_SEMI, + ACTIONS(6292), 1, + anon_sym_RBRACK, + STATE(2937), 2, sym_line_comment, sym_block_comment, - [84979] = 5, + [85986] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6136), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2898), 2, + STATE(2938), 2, sym_line_comment, sym_block_comment, - [84997] = 6, + ACTIONS(4723), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86002] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1175), 1, - anon_sym_RPAREN, - ACTIONS(6152), 1, - anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, - STATE(2899), 2, + STATE(2939), 2, sym_line_comment, sym_block_comment, - [85017] = 6, + ACTIONS(4683), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86018] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(698), 1, - anon_sym_RBRACK, - ACTIONS(3929), 1, + ACTIONS(686), 1, + anon_sym_RPAREN, + ACTIONS(4014), 1, anon_sym_COMMA, - STATE(2496), 1, + STATE(2611), 1, aux_sym_arguments_repeat1, - STATE(2900), 2, + STATE(2940), 2, sym_line_comment, sym_block_comment, - [85037] = 5, + [86038] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6156), 1, - anon_sym_COLON, - ACTIONS(6154), 2, - anon_sym_RBRACE, + ACTIONS(1560), 1, + anon_sym_GT, + ACTIONS(6294), 1, anon_sym_COMMA, - STATE(2901), 2, + STATE(2722), 1, + aux_sym_type_arguments_repeat1, + STATE(2941), 2, sym_line_comment, sym_block_comment, - [85055] = 6, + [86058] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5047), 1, - anon_sym_RBRACE, - ACTIONS(6158), 1, - anon_sym_COMMA, - STATE(2862), 1, - aux_sym_struct_pattern_repeat1, - STATE(2902), 2, + STATE(2942), 2, sym_line_comment, sym_block_comment, - [85075] = 6, + ACTIONS(4699), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86074] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5053), 1, - anon_sym_RBRACE, - ACTIONS(6160), 1, - anon_sym_COMMA, - STATE(2862), 1, - aux_sym_struct_pattern_repeat1, - STATE(2903), 2, + STATE(2943), 2, sym_line_comment, sym_block_comment, - [85095] = 5, + ACTIONS(4697), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86090] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6164), 1, - anon_sym_EQ, - ACTIONS(6162), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2904), 2, + STATE(2944), 2, sym_line_comment, sym_block_comment, - [85113] = 6, + ACTIONS(4695), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86106] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4733), 1, - anon_sym_RBRACE, - ACTIONS(6166), 1, + ACTIONS(1116), 1, + anon_sym_RPAREN, + ACTIONS(6296), 1, anon_sym_COMMA, - STATE(2813), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2905), 2, + STATE(2731), 1, + aux_sym_parameters_repeat1, + STATE(2945), 2, sym_line_comment, sym_block_comment, - [85133] = 4, + [86126] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2906), 2, + STATE(2946), 2, sym_line_comment, sym_block_comment, - ACTIONS(4680), 3, + ACTIONS(4721), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85149] = 4, + [86142] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2907), 2, + STATE(2947), 2, sym_line_comment, sym_block_comment, - ACTIONS(4636), 3, + ACTIONS(4667), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85165] = 6, + [86158] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(6168), 1, - anon_sym_SEMI, - STATE(1289), 1, - sym_declaration_list, - STATE(2908), 2, + STATE(2948), 2, sym_line_comment, sym_block_comment, - [85185] = 6, + ACTIONS(4735), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86174] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(6170), 1, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(6298), 1, anon_sym_SEMI, - STATE(1210), 1, - sym_declaration_list, - STATE(2909), 2, + STATE(3326), 1, + sym_where_clause, + STATE(2949), 2, sym_line_comment, sym_block_comment, - [85205] = 4, + [86194] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2910), 2, + STATE(2950), 2, sym_line_comment, sym_block_comment, - ACTIONS(4658), 3, + ACTIONS(4745), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85221] = 4, + [86210] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2911), 2, + STATE(2951), 2, sym_line_comment, sym_block_comment, - ACTIONS(4662), 3, + ACTIONS(4689), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85237] = 6, + [86226] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(6172), 1, - anon_sym_SEMI, - STATE(1309), 1, - sym_declaration_list, - STATE(2912), 2, + ACTIONS(4877), 1, + anon_sym_RBRACE, + ACTIONS(6300), 1, + anon_sym_COMMA, + STATE(2756), 1, + aux_sym_enum_variant_list_repeat2, + STATE(2952), 2, sym_line_comment, sym_block_comment, - [85257] = 6, + [86246] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(6174), 1, - anon_sym_SEMI, - STATE(1316), 1, - sym_declaration_list, - STATE(2913), 2, + STATE(2953), 2, sym_line_comment, sym_block_comment, - [85277] = 4, + ACTIONS(6302), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [86262] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2914), 2, + STATE(2954), 2, sym_line_comment, sym_block_comment, - ACTIONS(4666), 3, + ACTIONS(4691), 3, anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_if, - [85293] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1173), 1, - anon_sym_RPAREN, - ACTIONS(5283), 1, - anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, - STATE(2915), 2, - sym_line_comment, - sym_block_comment, - [85313] = 6, + anon_sym_if, + [86278] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6176), 1, - anon_sym_RBRACE, - ACTIONS(6178), 1, - anon_sym_COMMA, - STATE(2903), 1, - aux_sym_struct_pattern_repeat1, - STATE(2916), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(6304), 1, + anon_sym_SEMI, + STATE(1146), 1, + sym_declaration_list, + STATE(2955), 2, sym_line_comment, sym_block_comment, - [85333] = 6, + [86298] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6180), 1, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(6306), 1, anon_sym_SEMI, - ACTIONS(6182), 1, - anon_sym_EQ, - STATE(2917), 2, + STATE(1147), 1, + sym_declaration_list, + STATE(2956), 2, sym_line_comment, sym_block_comment, - [85353] = 6, + [86318] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4778), 1, + ACTIONS(6310), 1, + anon_sym_COLON, + ACTIONS(6308), 2, anon_sym_RBRACE, - ACTIONS(6184), 1, anon_sym_COMMA, - STATE(2813), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2918), 2, + STATE(2957), 2, sym_line_comment, sym_block_comment, - [85373] = 6, + [86336] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4778), 1, - anon_sym_RBRACE, - ACTIONS(6184), 1, + ACTIONS(6312), 1, anon_sym_COMMA, - STATE(2805), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2919), 2, + ACTIONS(6314), 1, + anon_sym_GT, + STATE(2876), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2958), 2, sym_line_comment, sym_block_comment, - [85393] = 6, + [86356] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4735), 1, + ACTIONS(4747), 1, anon_sym_RBRACE, - ACTIONS(6186), 1, + ACTIONS(6316), 1, anon_sym_COMMA, - STATE(2781), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2920), 2, + STATE(2749), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2959), 2, sym_line_comment, sym_block_comment, - [85413] = 6, + [86376] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1630), 1, + ACTIONS(4595), 1, anon_sym_GT, - ACTIONS(6188), 1, + ACTIONS(5447), 1, anon_sym_COMMA, - STATE(2889), 1, - aux_sym_type_arguments_repeat1, - STATE(2921), 2, + STATE(2840), 1, + aux_sym_type_parameters_repeat1, + STATE(2960), 2, sym_line_comment, sym_block_comment, - [85433] = 5, + [86396] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6190), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2922), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(6318), 1, + anon_sym_SEMI, + STATE(1161), 1, + sym_declaration_list, + STATE(2961), 2, sym_line_comment, sym_block_comment, - [85451] = 6, + [86416] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6192), 1, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(6320), 1, anon_sym_SEMI, - ACTIONS(6194), 1, - anon_sym_EQ, - STATE(2923), 2, + STATE(1164), 1, + sym_declaration_list, + STATE(2962), 2, sym_line_comment, sym_block_comment, - [85471] = 5, + [86436] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6196), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2924), 2, + STATE(2963), 2, sym_line_comment, sym_block_comment, - [85489] = 6, + ACTIONS(6322), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86452] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6198), 1, - sym_identifier, - ACTIONS(6200), 1, - anon_sym_ref, - ACTIONS(6202), 1, - sym_mutable_specifier, - STATE(2925), 2, + STATE(2964), 2, sym_line_comment, sym_block_comment, - [85509] = 6, + ACTIONS(4717), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86468] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5310), 1, - anon_sym_RPAREN, - ACTIONS(5312), 1, - anon_sym_COMMA, - STATE(2915), 1, - aux_sym_parameters_repeat1, - STATE(2926), 2, + STATE(2965), 2, sym_line_comment, sym_block_comment, - [85529] = 6, + ACTIONS(4785), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86484] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5573), 1, - anon_sym_COMMA, - ACTIONS(5575), 1, - anon_sym_GT, - STATE(2921), 1, - aux_sym_type_arguments_repeat1, - STATE(2927), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6324), 1, + anon_sym_SEMI, + ACTIONS(6326), 1, + anon_sym_EQ, + STATE(2966), 2, sym_line_comment, sym_block_comment, - [85549] = 5, + [86504] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5639), 1, - anon_sym_GT, - ACTIONS(6204), 1, - anon_sym_COMMA, - STATE(2928), 3, + STATE(2967), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [85567] = 6, + ACTIONS(6328), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86520] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3122), 1, - anon_sym_RPAREN, - ACTIONS(6207), 1, - anon_sym_COMMA, - STATE(2848), 1, - aux_sym_tuple_type_repeat1, - STATE(2929), 2, + STATE(2968), 2, sym_line_comment, sym_block_comment, - [85587] = 6, + ACTIONS(6330), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86536] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6209), 1, + ACTIONS(4864), 1, anon_sym_RBRACE, - ACTIONS(6211), 1, + ACTIONS(6332), 1, anon_sym_COMMA, - STATE(2918), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2930), 2, + STATE(2803), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2969), 2, sym_line_comment, sym_block_comment, - [85607] = 6, + [86556] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(702), 1, - anon_sym_RPAREN, - ACTIONS(6213), 1, - anon_sym_COMMA, - STATE(2496), 1, - aux_sym_arguments_repeat1, - STATE(2931), 2, + STATE(2970), 2, sym_line_comment, sym_block_comment, - [85627] = 5, + ACTIONS(6334), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [86572] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5527), 1, - anon_sym_EQ, - ACTIONS(5639), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2932), 2, + STATE(2971), 2, sym_line_comment, sym_block_comment, - [85645] = 6, + ACTIONS(6336), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86588] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(6215), 1, - anon_sym_SEMI, - STATE(1306), 1, - sym_declaration_list, - STATE(2933), 2, + STATE(2972), 2, sym_line_comment, sym_block_comment, - [85665] = 6, + ACTIONS(6338), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86604] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6217), 1, - anon_sym_SEMI, - ACTIONS(6219), 1, - anon_sym_RBRACK, - STATE(2934), 2, + STATE(2973), 2, sym_line_comment, sym_block_comment, - [85685] = 6, + ACTIONS(6340), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86620] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3692), 1, - anon_sym_LT2, - ACTIONS(4757), 1, - anon_sym_COLON_COLON, - STATE(1545), 1, - sym_type_arguments, - STATE(2935), 2, + ACTIONS(4266), 1, + anon_sym_RBRACE, + ACTIONS(6342), 1, + anon_sym_COMMA, + STATE(2757), 1, + aux_sym_use_list_repeat1, + STATE(2974), 2, sym_line_comment, sym_block_comment, - [85705] = 5, + [86640] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6221), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(2936), 2, + STATE(2975), 2, sym_line_comment, sym_block_comment, - [85723] = 6, + ACTIONS(4729), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86656] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(6223), 1, - anon_sym_SEMI, - STATE(752), 1, - sym_declaration_list, - STATE(2937), 2, + STATE(2976), 2, sym_line_comment, sym_block_comment, - [85743] = 6, + ACTIONS(6344), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86672] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(6225), 1, - anon_sym_SEMI, - STATE(672), 1, - sym_declaration_list, - STATE(2938), 2, + STATE(2977), 2, sym_line_comment, sym_block_comment, - [85763] = 6, + ACTIONS(4749), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86688] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6227), 1, - anon_sym_SEMI, - ACTIONS(6229), 1, - anon_sym_RBRACK, - STATE(2939), 2, + ACTIONS(4595), 1, + anon_sym_GT, + ACTIONS(5447), 1, + anon_sym_COMMA, + STATE(2830), 1, + aux_sym_type_parameters_repeat1, + STATE(2978), 2, sym_line_comment, sym_block_comment, - [85783] = 6, + [86708] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4484), 1, - anon_sym_COLON, - ACTIONS(4719), 1, - anon_sym_COLON_COLON, - STATE(2637), 1, - sym_trait_bounds, - STATE(2940), 2, + STATE(2979), 2, sym_line_comment, sym_block_comment, - [85803] = 6, + ACTIONS(4795), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86724] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(4484), 1, - anon_sym_COLON, - STATE(2637), 1, - sym_trait_bounds, - STATE(2941), 2, + STATE(2980), 2, sym_line_comment, sym_block_comment, - [85823] = 6, + ACTIONS(4793), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86740] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4731), 1, - anon_sym_where, - ACTIONS(6231), 1, - anon_sym_SEMI, - STATE(3330), 1, - sym_where_clause, - STATE(2942), 2, + STATE(2981), 2, sym_line_comment, sym_block_comment, - [85843] = 5, + ACTIONS(4741), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86756] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(6233), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2943), 2, + STATE(2982), 2, sym_line_comment, sym_block_comment, - [85861] = 6, + ACTIONS(4693), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86772] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6235), 1, - anon_sym_SEMI, - ACTIONS(6237), 1, - anon_sym_EQ, - STATE(2944), 2, + STATE(2983), 2, sym_line_comment, sym_block_comment, - [85881] = 6, + ACTIONS(4703), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86788] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6239), 1, - anon_sym_SEMI, - ACTIONS(6241), 1, - anon_sym_EQ, - STATE(2945), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(6346), 1, + anon_sym_for, + STATE(1922), 1, + sym_type_arguments, + STATE(2984), 2, sym_line_comment, sym_block_comment, - [85901] = 6, + [86808] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(6243), 1, + ACTIONS(6348), 1, anon_sym_SEMI, - STATE(1360), 1, + STATE(568), 1, sym_declaration_list, - STATE(2946), 2, + STATE(2985), 2, sym_line_comment, sym_block_comment, - [85921] = 6, + [86828] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - ACTIONS(6245), 1, + ACTIONS(6350), 1, anon_sym_SEMI, - STATE(1363), 1, + STATE(520), 1, sym_declaration_list, - STATE(2947), 2, + STATE(2986), 2, sym_line_comment, sym_block_comment, - [85941] = 6, + [86848] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - ACTIONS(6247), 1, - anon_sym_SEMI, - STATE(618), 1, - sym_declaration_list, - STATE(2948), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(6352), 1, + anon_sym_for, + STATE(1922), 1, + sym_type_arguments, + STATE(2987), 2, sym_line_comment, sym_block_comment, - [85961] = 6, + [86868] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6249), 1, - anon_sym_RPAREN, - ACTIONS(6251), 1, + ACTIONS(4587), 1, + anon_sym_GT, + ACTIONS(6354), 1, anon_sym_COMMA, - STATE(2784), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2949), 2, + STATE(2840), 1, + aux_sym_type_parameters_repeat1, + STATE(2988), 2, sym_line_comment, sym_block_comment, - [85981] = 6, + [86888] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4796), 1, - anon_sym_RBRACE, - ACTIONS(6253), 1, - anon_sym_COMMA, - STATE(2781), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2950), 2, + STATE(2989), 2, sym_line_comment, sym_block_comment, - [86001] = 6, + ACTIONS(4731), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86904] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(6255), 1, - anon_sym_SEMI, - STATE(1369), 1, - sym_declaration_list, - STATE(2951), 2, + STATE(2990), 2, sym_line_comment, sym_block_comment, - [86021] = 6, + ACTIONS(4733), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86920] = 6, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(6257), 1, - anon_sym_SEMI, - STATE(1371), 1, - sym_declaration_list, - STATE(2952), 2, + ACTIONS(6356), 1, + anon_sym_move, + STATE(120), 1, + sym_closure_parameters, + STATE(2991), 2, sym_line_comment, sym_block_comment, - [86041] = 6, + [86940] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4796), 1, - anon_sym_RBRACE, - ACTIONS(6253), 1, - anon_sym_COMMA, - STATE(2779), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2953), 2, + STATE(2992), 2, sym_line_comment, sym_block_comment, - [86061] = 6, + ACTIONS(4701), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86956] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - ACTIONS(6259), 1, - anon_sym_SEMI, - STATE(1377), 1, - sym_declaration_list, - STATE(2954), 2, + STATE(2993), 2, sym_line_comment, sym_block_comment, - [86081] = 6, + ACTIONS(4789), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86972] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(6261), 1, + ACTIONS(6358), 1, anon_sym_SEMI, - STATE(1381), 1, + STATE(1085), 1, sym_declaration_list, - STATE(2955), 2, + STATE(2994), 2, sym_line_comment, sym_block_comment, - [86101] = 6, + [86992] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6263), 1, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(6360), 1, anon_sym_SEMI, - ACTIONS(6265), 1, - anon_sym_EQ, - STATE(2956), 2, + STATE(1287), 1, + sym_declaration_list, + STATE(2995), 2, sym_line_comment, sym_block_comment, - [86121] = 6, + [87012] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(6267), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(2957), 2, + ACTIONS(4809), 1, + anon_sym_where, + ACTIONS(6362), 1, + anon_sym_SEMI, + STATE(3379), 1, + sym_where_clause, + STATE(2996), 2, sym_line_comment, sym_block_comment, - [86141] = 6, + [87032] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(6269), 1, + ACTIONS(6364), 1, anon_sym_SEMI, - STATE(1407), 1, + STATE(1299), 1, sym_declaration_list, - STATE(2958), 2, + STATE(2997), 2, sym_line_comment, sym_block_comment, - [86161] = 6, + [87052] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(6271), 1, + ACTIONS(6366), 1, anon_sym_SEMI, - STATE(1409), 1, + STATE(1301), 1, sym_declaration_list, - STATE(2959), 2, + STATE(2998), 2, sym_line_comment, sym_block_comment, - [86181] = 6, + [87072] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4353), 1, - anon_sym_LT2, - ACTIONS(6273), 1, - anon_sym_for, - STATE(1929), 1, - sym_type_arguments, - STATE(2960), 2, + ACTIONS(6368), 1, + anon_sym_RBRACE, + ACTIONS(6370), 1, + anon_sym_COMMA, + STATE(2791), 1, + aux_sym_field_declaration_list_repeat1, + STATE(2999), 2, sym_line_comment, sym_block_comment, - [86201] = 6, + [87092] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - ACTIONS(6275), 1, + ACTIONS(6372), 1, anon_sym_SEMI, - STATE(600), 1, + STATE(1315), 1, sym_declaration_list, - STATE(2961), 2, + STATE(3000), 2, sym_line_comment, sym_block_comment, - [86221] = 6, + [87112] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(690), 1, - anon_sym_RBRACK, - ACTIONS(3925), 1, - anon_sym_COMMA, - STATE(2496), 1, - aux_sym_arguments_repeat1, - STATE(2962), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(6374), 1, + anon_sym_SEMI, + STATE(1318), 1, + sym_declaration_list, + STATE(3001), 2, sym_line_comment, sym_block_comment, - [86241] = 4, + [87132] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2963), 2, + STATE(3002), 2, sym_line_comment, sym_block_comment, - ACTIONS(6277), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86257] = 5, + ACTIONS(4791), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87148] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6279), 1, - anon_sym_RBRACE, - ACTIONS(6281), 1, - anon_sym_COMMA, - STATE(2964), 3, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6376), 1, + anon_sym_SEMI, + ACTIONS(6378), 1, + anon_sym_EQ, + STATE(3003), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [86275] = 5, + [87168] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6284), 1, - anon_sym_RBRACE, - ACTIONS(6286), 1, - anon_sym_COMMA, - STATE(2965), 3, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6380), 1, + anon_sym_SEMI, + ACTIONS(6382), 1, + anon_sym_EQ, + STATE(3004), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [86293] = 4, + [87188] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2966), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(6384), 1, + anon_sym_SEMI, + STATE(1348), 1, + sym_declaration_list, + STATE(3005), 2, sym_line_comment, sym_block_comment, - ACTIONS(4672), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86309] = 4, + [87208] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2967), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + ACTIONS(6386), 1, + anon_sym_SEMI, + STATE(1350), 1, + sym_declaration_list, + STATE(3006), 2, sym_line_comment, sym_block_comment, - ACTIONS(4656), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86325] = 4, + [87228] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2968), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4654), 3, + ACTIONS(6388), 1, anon_sym_EQ_GT, + ACTIONS(6390), 1, anon_sym_PIPE, + ACTIONS(6392), 1, anon_sym_if, - [86341] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2969), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6289), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [86357] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4745), 1, - anon_sym_GT, - ACTIONS(6291), 1, - anon_sym_COMMA, - STATE(2928), 1, - aux_sym_type_parameters_repeat1, - STATE(2970), 2, + STATE(3007), 2, sym_line_comment, sym_block_comment, - [86377] = 4, + [87248] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2971), 2, + STATE(3008), 2, sym_line_comment, sym_block_comment, - ACTIONS(4640), 3, + ACTIONS(4783), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [86393] = 6, + [87264] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4803), 1, - anon_sym_GT, - ACTIONS(6293), 1, - anon_sym_COMMA, - STATE(2928), 1, - aux_sym_type_parameters_repeat1, - STATE(2972), 2, + STATE(3009), 2, sym_line_comment, sym_block_comment, - [86413] = 6, - ACTIONS(33), 1, + ACTIONS(4705), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [87280] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6295), 1, - anon_sym_move, - STATE(125), 1, - sym_closure_parameters, - STATE(2973), 2, + ACTIONS(4386), 1, + anon_sym_LT2, + ACTIONS(6394), 1, + anon_sym_for, + STATE(1922), 1, + sym_type_arguments, + STATE(3010), 2, sym_line_comment, sym_block_comment, - [86433] = 4, + [87300] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2974), 2, + ACTIONS(6396), 1, + sym_identifier, + ACTIONS(6398), 1, + anon_sym_ref, + ACTIONS(6400), 1, + sym_mutable_specifier, + STATE(3011), 2, sym_line_comment, sym_block_comment, - ACTIONS(4644), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86449] = 4, + [87320] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2975), 2, + ACTIONS(6402), 1, + anon_sym_RPAREN, + ACTIONS(6404), 1, + anon_sym_COLON_COLON, + STATE(3012), 2, sym_line_comment, sym_block_comment, - ACTIONS(6297), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_GT, - [86465] = 4, + [87337] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6299), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(2976), 2, + ACTIONS(6406), 2, + sym_identifier, + sym_super, + STATE(3013), 2, sym_line_comment, sym_block_comment, - [86480] = 5, + [87352] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5171), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - STATE(1229), 1, - sym_enum_variant_list, - STATE(2977), 2, + STATE(1328), 1, + sym_declaration_list, + STATE(3014), 2, sym_line_comment, sym_block_comment, - [86497] = 5, + [87369] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5549), 1, + ACTIONS(5694), 1, sym_super, - ACTIONS(6301), 1, + ACTIONS(6408), 1, sym_identifier, - STATE(2978), 2, + STATE(3015), 2, sym_line_comment, sym_block_comment, - [86514] = 4, + [87386] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6279), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2979), 2, + ACTIONS(4805), 1, + anon_sym_LBRACE, + STATE(546), 1, + sym_field_declaration_list, + STATE(3016), 2, sym_line_comment, sym_block_comment, - [86529] = 5, + [87403] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1333), 1, - sym_declaration_list, - STATE(2980), 2, + ACTIONS(6410), 1, + anon_sym_LBRACK, + ACTIONS(6412), 1, + anon_sym_BANG, + STATE(3017), 2, sym_line_comment, sym_block_comment, - [86546] = 5, + [87420] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6303), 1, - anon_sym_LBRACK, - ACTIONS(6305), 1, - anon_sym_BANG, - STATE(2981), 2, + ACTIONS(6414), 2, + sym_identifier, + sym_metavariable, + STATE(3018), 2, sym_line_comment, sym_block_comment, - [86563] = 4, + [87435] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6284), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2982), 2, + ACTIONS(3582), 1, + anon_sym_COLON, + ACTIONS(5200), 1, + anon_sym_PLUS, + STATE(3019), 2, sym_line_comment, sym_block_comment, - [86578] = 5, + [87452] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5549), 1, - sym_super, - ACTIONS(6307), 1, + ACTIONS(6416), 1, sym_identifier, - STATE(2983), 2, + ACTIONS(6418), 1, + sym_mutable_specifier, + STATE(3020), 2, sym_line_comment, sym_block_comment, - [86595] = 5, + [87469] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, - sym_super, - ACTIONS(6309), 1, - sym_identifier, - STATE(2984), 2, + ACTIONS(6420), 1, + anon_sym_RPAREN, + ACTIONS(6422), 1, + anon_sym_COLON_COLON, + STATE(3021), 2, sym_line_comment, sym_block_comment, - [86612] = 5, + [87486] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6311), 1, - sym_identifier, - ACTIONS(6313), 1, - sym_mutable_specifier, - STATE(2985), 2, + ACTIONS(6420), 1, + anon_sym_RPAREN, + ACTIONS(6424), 1, + anon_sym_COLON_COLON, + STATE(3022), 2, sym_line_comment, sym_block_comment, - [86629] = 5, + [87503] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - anon_sym_LBRACE, - STATE(525), 1, - sym_field_declaration_list, - STATE(2986), 2, + ACTIONS(6420), 1, + anon_sym_RPAREN, + ACTIONS(6426), 1, + anon_sym_COLON_COLON, + STATE(3023), 2, sym_line_comment, sym_block_comment, - [86646] = 5, + [87520] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4995), 1, - anon_sym_RBRACK, - ACTIONS(6315), 1, - anon_sym_SEMI, - STATE(2987), 2, + ACTIONS(5694), 1, + sym_super, + ACTIONS(6428), 1, + sym_identifier, + STATE(3024), 2, sym_line_comment, sym_block_comment, - [86663] = 5, + [87537] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6317), 1, - anon_sym_LT, - STATE(988), 1, - sym_type_parameters, - STATE(2988), 2, + ACTIONS(3656), 1, + anon_sym_COLON, + ACTIONS(5200), 1, + anon_sym_PLUS, + STATE(3025), 2, sym_line_comment, sym_block_comment, - [86680] = 5, + [87554] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5744), 1, + ACTIONS(6396), 1, sym_identifier, - ACTIONS(5748), 1, + ACTIONS(6400), 1, sym_mutable_specifier, - STATE(2989), 2, + STATE(3026), 2, sym_line_comment, sym_block_comment, - [86697] = 5, + [87571] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(6319), 1, - anon_sym_in, - STATE(2990), 2, + ACTIONS(5694), 1, + sym_super, + ACTIONS(6430), 1, + sym_identifier, + STATE(3027), 2, sym_line_comment, sym_block_comment, - [86714] = 5, + [87588] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, + ACTIONS(5509), 1, + sym_super, + ACTIONS(6432), 1, + sym_identifier, + STATE(3028), 2, + sym_line_comment, + sym_block_comment, + [87605] = 5, + ACTIONS(33), 1, anon_sym_PIPE, - ACTIONS(6321), 1, - anon_sym_in, - STATE(2991), 2, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(126), 1, + sym_closure_parameters, + STATE(3029), 2, sym_line_comment, sym_block_comment, - [86731] = 5, + [87622] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(6273), 1, - anon_sym_for, - STATE(2992), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(6434), 1, + anon_sym_in, + STATE(3030), 2, sym_line_comment, sym_block_comment, - [86748] = 5, + [87639] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6323), 1, + ACTIONS(6436), 1, sym_identifier, - ACTIONS(6325), 1, + ACTIONS(6438), 1, sym_super, - STATE(2993), 2, + STATE(3031), 2, sym_line_comment, sym_block_comment, - [86765] = 5, + [87656] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3170), 1, - anon_sym_LT2, - STATE(1439), 1, - sym_type_arguments, - STATE(2994), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(6440), 1, + anon_sym_in, + STATE(3032), 2, sym_line_comment, sym_block_comment, - [86782] = 5, + [87673] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, + ACTIONS(5362), 1, anon_sym_PIPE, - ACTIONS(6327), 1, + ACTIONS(6442), 1, anon_sym_in, - STATE(2995), 2, + STATE(3033), 2, sym_line_comment, sym_block_comment, - [86799] = 5, + [87690] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(6267), 1, - anon_sym_for, - STATE(2996), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(544), 1, + sym_declaration_list, + STATE(3034), 2, sym_line_comment, sym_block_comment, - [86816] = 5, + [87707] = 5, ACTIONS(33), 1, anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(125), 1, + STATE(120), 1, sym_closure_parameters, - STATE(2997), 2, + STATE(3035), 2, sym_line_comment, sym_block_comment, - [86833] = 5, + [87724] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, + ACTIONS(5362), 1, anon_sym_PIPE, - ACTIONS(6329), 1, + ACTIONS(6444), 1, anon_sym_in, - STATE(2998), 2, + STATE(3036), 2, sym_line_comment, sym_block_comment, - [86850] = 5, + [87741] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(5752), 1, - anon_sym_for, - STATE(2999), 2, + ACTIONS(6446), 1, + anon_sym_LBRACK, + ACTIONS(6448), 1, + anon_sym_BANG, + STATE(3037), 2, sym_line_comment, sym_block_comment, - [86867] = 5, + [87758] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - STATE(583), 1, - sym_declaration_list, - STATE(3000), 2, + ACTIONS(3512), 1, + anon_sym_COLON, + ACTIONS(5200), 1, + anon_sym_PLUS, + STATE(3038), 2, sym_line_comment, sym_block_comment, - [86884] = 5, + [87775] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4995), 1, - anon_sym_RPAREN, - ACTIONS(6315), 1, - anon_sym_SEMI, - STATE(3001), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(545), 1, + sym_declaration_list, + STATE(3039), 2, sym_line_comment, sym_block_comment, - [86901] = 5, + [87792] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - STATE(603), 1, - sym_declaration_list, - STATE(3002), 2, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(6394), 1, + anon_sym_for, + STATE(3040), 2, sym_line_comment, sym_block_comment, - [86918] = 5, + [87809] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3692), 1, - anon_sym_LT2, - STATE(1701), 1, - sym_type_arguments, - STATE(3003), 2, + ACTIONS(5509), 1, + sym_super, + ACTIONS(6450), 1, + sym_identifier, + STATE(3041), 2, sym_line_comment, sym_block_comment, - [86935] = 5, + [87826] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(6331), 1, - anon_sym_in, - STATE(3004), 2, + ACTIONS(4805), 1, + anon_sym_LBRACE, + STATE(528), 1, + sym_field_declaration_list, + STATE(3042), 2, sym_line_comment, sym_block_comment, - [86952] = 5, + [87843] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - STATE(604), 1, - sym_declaration_list, - STATE(3005), 2, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(6352), 1, + anon_sym_for, + STATE(3043), 2, sym_line_comment, sym_block_comment, - [86969] = 5, + [87860] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6333), 1, + ACTIONS(6452), 1, sym_identifier, - ACTIONS(6335), 1, + ACTIONS(6454), 1, sym_super, - STATE(3006), 2, + STATE(3044), 2, sym_line_comment, sym_block_comment, - [86986] = 5, + [87877] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - STATE(518), 1, + STATE(519), 1, sym_declaration_list, - STATE(3007), 2, + STATE(3045), 2, sym_line_comment, sym_block_comment, - [87003] = 4, + [87894] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6337), 2, + ACTIONS(6456), 2, anon_sym_const, sym_mutable_specifier, - STATE(3008), 2, + STATE(3046), 2, + sym_line_comment, + sym_block_comment, + [87909] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(6346), 1, + anon_sym_for, + STATE(3047), 2, sym_line_comment, sym_block_comment, - [87018] = 5, + [87926] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6339), 1, + ACTIONS(6428), 1, sym_identifier, - ACTIONS(6341), 1, + ACTIONS(6458), 1, sym_super, - STATE(3009), 2, + STATE(3048), 2, sym_line_comment, sym_block_comment, - [87035] = 5, + [87943] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(5762), 1, - anon_sym_for, - STATE(3010), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(6460), 1, + anon_sym_in, + STATE(3049), 2, sym_line_comment, sym_block_comment, - [87052] = 5, + [87960] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5025), 1, - anon_sym_RBRACE, - ACTIONS(6315), 1, - anon_sym_SEMI, - STATE(3011), 2, + ACTIONS(3720), 1, + anon_sym_COLON, + ACTIONS(5200), 1, + anon_sym_PLUS, + STATE(3050), 2, sym_line_comment, sym_block_comment, - [87069] = 5, + [87977] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, + ACTIONS(3890), 1, anon_sym_LPAREN, - STATE(1566), 1, + STATE(1609), 1, sym_parameters, - STATE(3012), 2, + STATE(3051), 2, sym_line_comment, sym_block_comment, - [87086] = 4, + [87994] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 2, - sym_identifier, - sym_super, - STATE(3013), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1231), 1, + sym_declaration_list, + STATE(3052), 2, sym_line_comment, sym_block_comment, - [87101] = 5, + [88011] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6343), 1, - sym_identifier, - ACTIONS(6345), 1, - sym_super, - STATE(3014), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1230), 1, + sym_declaration_list, + STATE(3053), 2, sym_line_comment, sym_block_comment, - [87118] = 5, + [88028] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - sym_super, - ACTIONS(6347), 1, + ACTIONS(5509), 2, sym_identifier, - STATE(3015), 2, + sym_super, + STATE(3054), 2, sym_line_comment, sym_block_comment, - [87135] = 5, + [88043] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(5764), 1, - anon_sym_for, - STATE(3016), 2, + ACTIONS(5694), 1, + sym_super, + ACTIONS(6462), 1, + sym_identifier, + STATE(3055), 2, sym_line_comment, sym_block_comment, - [87152] = 4, + [88060] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5464), 2, - sym_identifier, - sym_super, - STATE(3017), 2, + ACTIONS(6187), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3056), 2, sym_line_comment, sym_block_comment, - [87167] = 5, + [88075] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5112), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - STATE(653), 1, - sym_enum_variant_list, - STATE(3018), 2, + STATE(1201), 1, + sym_declaration_list, + STATE(3057), 2, sym_line_comment, sym_block_comment, - [87184] = 4, + [88092] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6349), 2, - sym_identifier, - sym_metavariable, - STATE(3019), 2, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(6288), 1, + anon_sym_for, + STATE(3058), 2, sym_line_comment, sym_block_comment, - [87199] = 5, + [88109] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, + ACTIONS(5509), 1, sym_super, - ACTIONS(5599), 1, + ACTIONS(6464), 1, sym_identifier, - STATE(3020), 2, + STATE(3059), 2, sym_line_comment, sym_block_comment, - [87216] = 5, + [88126] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - STATE(508), 1, - sym_declaration_list, - STATE(3021), 2, + ACTIONS(5694), 2, + sym_identifier, + sym_super, + STATE(3060), 2, sym_line_comment, sym_block_comment, - [87233] = 4, + [88141] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6351), 2, - sym_identifier, - sym_metavariable, - STATE(3022), 2, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(6280), 1, + anon_sym_for, + STATE(3061), 2, sym_line_comment, sym_block_comment, - [87248] = 5, + [88158] = 5, ACTIONS(33), 1, anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(153), 1, + STATE(127), 1, sym_closure_parameters, - STATE(3023), 2, + STATE(3062), 2, sym_line_comment, sym_block_comment, - [87265] = 5, + [88175] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5112), 1, - anon_sym_LBRACE, - STATE(650), 1, - sym_enum_variant_list, - STATE(3024), 2, + ACTIONS(6466), 2, + sym_identifier, + sym_metavariable, + STATE(3063), 2, sym_line_comment, sym_block_comment, - [87282] = 4, + [88190] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1460), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(3025), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + STATE(2175), 1, + sym_parameters, + STATE(3064), 2, sym_line_comment, sym_block_comment, - [87297] = 5, + [88207] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, + ACTIONS(4829), 1, anon_sym_LBRACE, - STATE(681), 1, - sym_field_declaration_list, - STATE(3026), 2, + STATE(582), 1, + sym_declaration_list, + STATE(3065), 2, sym_line_comment, sym_block_comment, - [87314] = 4, + [88224] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6353), 2, - sym_identifier, - sym_super, - STATE(3027), 2, + ACTIONS(5208), 1, + anon_sym_LBRACE, + STATE(482), 1, + sym_enum_variant_list, + STATE(3066), 2, sym_line_comment, sym_block_comment, - [87329] = 5, + [88241] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(3269), 1, anon_sym_LBRACE, - STATE(551), 1, - sym_declaration_list, - STATE(3028), 2, + STATE(1382), 1, + sym_field_initializer_list, + STATE(3067), 2, sym_line_comment, sym_block_comment, - [87346] = 5, + [88258] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_COLON, - STATE(2637), 1, - sym_trait_bounds, - STATE(3029), 2, + ACTIONS(4805), 1, + anon_sym_LBRACE, + STATE(476), 1, + sym_field_declaration_list, + STATE(3068), 2, sym_line_comment, sym_block_comment, - [87363] = 5, + [88275] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5585), 1, + ACTIONS(5551), 1, sym_identifier, - ACTIONS(5587), 1, + ACTIONS(5553), 1, sym_super, - STATE(3030), 2, + STATE(3069), 2, sym_line_comment, sym_block_comment, - [87380] = 4, + [88292] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5587), 2, + ACTIONS(5752), 2, sym_identifier, sym_super, - STATE(3031), 2, + STATE(3070), 2, sym_line_comment, sym_block_comment, - [87395] = 5, + [88307] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6355), 1, + ACTIONS(6468), 1, sym_identifier, - ACTIONS(6357), 1, + ACTIONS(6470), 1, sym_super, - STATE(3032), 2, + STATE(3071), 2, sym_line_comment, sym_block_comment, - [87412] = 5, + [88324] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5549), 1, - sym_super, - ACTIONS(6339), 1, - sym_identifier, - STATE(3033), 2, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4852), 1, + anon_sym_for, + STATE(3072), 2, sym_line_comment, sym_block_comment, - [87429] = 5, + [88341] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4729), 1, - anon_sym_LT, - STATE(1004), 1, - sym_type_parameters, - STATE(3034), 2, + ACTIONS(4805), 1, + anon_sym_LBRACE, + STATE(501), 1, + sym_field_declaration_list, + STATE(3073), 2, sym_line_comment, sym_block_comment, - [87446] = 5, + [88358] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5005), 1, - anon_sym_RBRACE, - ACTIONS(6315), 1, - anon_sym_SEMI, - STATE(3035), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(680), 1, + sym_declaration_list, + STATE(3074), 2, sym_line_comment, sym_block_comment, - [87463] = 5, + [88375] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(4770), 1, - anon_sym_for, - STATE(3036), 2, + ACTIONS(6472), 2, + sym_identifier, + sym_metavariable, + STATE(3075), 2, sym_line_comment, sym_block_comment, - [87480] = 5, + [88390] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6359), 1, + ACTIONS(6474), 1, anon_sym_SEMI, - ACTIONS(6361), 1, + ACTIONS(6476), 1, anon_sym_as, - STATE(3037), 2, + STATE(3076), 2, sym_line_comment, sym_block_comment, - [87497] = 5, + [88407] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6363), 1, + ACTIONS(6450), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(6478), 1, sym_super, - STATE(3038), 2, + STATE(3077), 2, sym_line_comment, sym_block_comment, - [87514] = 5, + [88424] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, + ACTIONS(5208), 1, anon_sym_LBRACE, - STATE(703), 1, - sym_field_declaration_list, - STATE(3039), 2, + STATE(592), 1, + sym_enum_variant_list, + STATE(3078), 2, sym_line_comment, sym_block_comment, - [87531] = 4, + [88441] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6367), 2, - sym_identifier, - sym_super, - STATE(3040), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(6480), 1, + anon_sym_in, + STATE(3079), 2, sym_line_comment, sym_block_comment, - [87546] = 5, + [88458] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - STATE(709), 1, - sym_declaration_list, - STATE(3041), 2, + ACTIONS(6482), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3080), 2, sym_line_comment, sym_block_comment, - [87563] = 4, + [88473] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6369), 2, - sym_identifier, - sym_metavariable, - STATE(3042), 2, + ACTIONS(6484), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3081), 2, sym_line_comment, sym_block_comment, - [87578] = 5, - ACTIONS(33), 1, - anon_sym_PIPE, + [88488] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(122), 1, - sym_closure_parameters, - STATE(3043), 2, + ACTIONS(6486), 2, + sym_identifier, + sym_metavariable, + STATE(3082), 2, sym_line_comment, sym_block_comment, - [87595] = 5, + [88503] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - sym_super, - ACTIONS(5577), 1, - sym_identifier, - STATE(3044), 2, + ACTIONS(6488), 1, + anon_sym_LT, + STATE(956), 1, + sym_type_parameters, + STATE(3083), 2, sym_line_comment, sym_block_comment, - [87612] = 5, + [88520] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, - anon_sym_LPAREN, - STATE(1564), 1, - sym_parameters, - STATE(3045), 2, + ACTIONS(6490), 1, + anon_sym_LBRACK, + ACTIONS(6492), 1, + anon_sym_BANG, + STATE(3084), 2, sym_line_comment, sym_block_comment, - [87629] = 5, + [88537] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - STATE(1946), 1, - sym_parameters, - STATE(3046), 2, + ACTIONS(5050), 1, + sym_super, + ACTIONS(5567), 1, + sym_identifier, + STATE(3085), 2, sym_line_comment, sym_block_comment, - [87646] = 5, + [88554] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(6371), 1, - anon_sym_in, - STATE(3047), 2, + ACTIONS(3890), 1, + anon_sym_LPAREN, + STATE(1581), 1, + sym_parameters, + STATE(3086), 2, sym_line_comment, sym_block_comment, - [87663] = 5, + [88571] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5577), 1, - sym_identifier, - STATE(3048), 2, + ACTIONS(4924), 1, + anon_sym_COLON, + STATE(2615), 1, + sym_trait_bounds, + STATE(3087), 2, sym_line_comment, sym_block_comment, - [87680] = 5, + [88588] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, - sym_super, - ACTIONS(6373), 1, - sym_identifier, - STATE(3049), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(6494), 1, + anon_sym_in, + STATE(3088), 2, sym_line_comment, sym_block_comment, - [87697] = 4, + [88605] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6375), 2, + ACTIONS(6496), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(3050), 2, - sym_line_comment, - sym_block_comment, - [87712] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1348), 1, - sym_declaration_list, - STATE(3051), 2, + STATE(3089), 2, sym_line_comment, sym_block_comment, - [87729] = 4, + [88620] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6377), 2, + ACTIONS(6498), 1, sym_identifier, - sym_metavariable, - STATE(3052), 2, + ACTIONS(6500), 1, + sym_super, + STATE(3090), 2, sym_line_comment, sym_block_comment, - [87744] = 5, + [88637] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - STATE(2166), 1, - sym_parameters, - STATE(3053), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + ACTIONS(6504), 1, + anon_sym_RPAREN, + STATE(3091), 2, sym_line_comment, sym_block_comment, - [87761] = 5, + [88654] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1345), 1, - sym_declaration_list, - STATE(3054), 2, + ACTIONS(4807), 1, + anon_sym_LT, + STATE(973), 1, + sym_type_parameters, + STATE(3092), 2, sym_line_comment, sym_block_comment, - [87778] = 4, + [88671] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6379), 2, - sym_identifier, - sym_super, - STATE(3055), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + ACTIONS(6504), 1, + anon_sym_RBRACK, + STATE(3093), 2, sym_line_comment, sym_block_comment, - [87793] = 5, + [88688] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6381), 1, - anon_sym_LBRACK, - ACTIONS(6383), 1, - anon_sym_BANG, - STATE(3056), 2, + ACTIONS(6506), 1, + anon_sym_LPAREN, + ACTIONS(6508), 1, + anon_sym_COLON_COLON, + STATE(3094), 2, sym_line_comment, sym_block_comment, - [87810] = 5, + [88705] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6365), 1, - sym_super, - ACTIONS(6385), 1, - sym_identifier, - STATE(3057), 2, + ACTIONS(6510), 1, + anon_sym_STAR_SLASH, + ACTIONS(6512), 1, + sym__block_comment_content, + STATE(3095), 2, sym_line_comment, sym_block_comment, - [87827] = 5, + [88722] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - anon_sym_LBRACE, - STATE(537), 1, - sym_field_declaration_list, - STATE(3058), 2, + ACTIONS(6514), 2, + sym_identifier, + sym_super, + STATE(3096), 2, sym_line_comment, sym_block_comment, - [87844] = 4, + [88737] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6387), 2, - sym_identifier, - sym_super, - STATE(3059), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + ACTIONS(6516), 1, + anon_sym_RBRACE, + STATE(3097), 2, sym_line_comment, sym_block_comment, - [87859] = 4, + [88754] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6389), 2, - sym_identifier, - sym_metavariable, - STATE(3060), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1250), 1, + sym_declaration_list, + STATE(3098), 2, sym_line_comment, sym_block_comment, - [87874] = 5, + [88771] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6029), 1, - anon_sym_EQ_GT, - ACTIONS(6391), 1, - anon_sym_AMP_AMP, - STATE(3061), 2, + ACTIONS(6506), 1, + anon_sym_LPAREN, + ACTIONS(6518), 1, + anon_sym_COLON_COLON, + STATE(3099), 2, sym_line_comment, sym_block_comment, - [87891] = 5, + [88788] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5549), 1, - sym_super, - ACTIONS(6393), 1, - sym_identifier, - STATE(3062), 2, + ACTIONS(6520), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3100), 2, sym_line_comment, sym_block_comment, - [87908] = 5, + [88803] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6395), 1, - sym_identifier, - ACTIONS(6397), 1, - sym_mutable_specifier, - STATE(3063), 2, + ACTIONS(4821), 1, + anon_sym_LBRACE, + STATE(1242), 1, + sym_field_declaration_list, + STATE(3101), 2, sym_line_comment, sym_block_comment, - [87925] = 5, + [88820] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4225), 1, - anon_sym_EQ_GT, - ACTIONS(6391), 1, - anon_sym_AMP_AMP, - STATE(3064), 2, + ACTIONS(2914), 1, + anon_sym_SQUOTE, + STATE(3258), 1, + sym_lifetime, + STATE(3102), 2, sym_line_comment, sym_block_comment, - [87942] = 5, + [88837] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4821), 1, anon_sym_LBRACE, - STATE(1197), 1, + STATE(1405), 1, sym_field_declaration_list, - STATE(3065), 2, + STATE(3103), 2, sym_line_comment, sym_block_comment, - [87959] = 5, + [88854] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(5808), 1, - anon_sym_for, - STATE(3066), 2, + ACTIONS(6522), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3104), 2, sym_line_comment, sym_block_comment, - [87976] = 5, - ACTIONS(33), 1, - anon_sym_PIPE, + [88869] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(149), 1, - sym_closure_parameters, - STATE(3067), 2, + ACTIONS(5694), 1, + sym_super, + ACTIONS(6524), 1, + sym_identifier, + STATE(3105), 2, sym_line_comment, sym_block_comment, - [87993] = 5, + [88886] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6317), 1, - anon_sym_LT, - STATE(1498), 1, - sym_type_parameters, - STATE(3068), 2, + ACTIONS(5196), 1, + anon_sym_LBRACE, + STATE(1260), 1, + sym_enum_variant_list, + STATE(3106), 2, sym_line_comment, sym_block_comment, - [88010] = 5, + [88903] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3686), 1, - anon_sym_LPAREN, - STATE(1539), 1, - sym_parameters, - STATE(3069), 2, + ACTIONS(5509), 1, + sym_super, + ACTIONS(6526), 1, + sym_identifier, + STATE(3107), 2, sym_line_comment, sym_block_comment, - [88027] = 5, + [88920] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1336), 1, - sym_declaration_list, - STATE(3070), 2, + ACTIONS(6528), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3108), 2, sym_line_comment, sym_block_comment, - [88044] = 5, + [88935] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4510), 1, - anon_sym_BANG, - ACTIONS(4540), 1, - anon_sym_COLON_COLON, - STATE(3071), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + ACTIONS(6530), 1, + anon_sym_RPAREN, + STATE(3109), 2, sym_line_comment, sym_block_comment, - [88061] = 5, + [88952] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4510), 1, - anon_sym_BANG, - ACTIONS(4542), 1, - anon_sym_COLON_COLON, - STATE(3072), 2, + ACTIONS(6458), 1, + sym_super, + ACTIONS(6462), 1, + sym_identifier, + STATE(3110), 2, sym_line_comment, sym_block_comment, - [88078] = 5, + [88969] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6399), 1, - anon_sym_COLON_COLON, - ACTIONS(6401), 1, - anon_sym_BANG, - STATE(3073), 2, + ACTIONS(3890), 1, + anon_sym_LPAREN, + STATE(1602), 1, + sym_parameters, + STATE(3111), 2, sym_line_comment, sym_block_comment, - [88095] = 5, + [88986] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2924), 1, - anon_sym_SQUOTE, - STATE(3135), 1, - sym_lifetime, - STATE(3074), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + ACTIONS(6530), 1, + anon_sym_RBRACK, + STATE(3112), 2, sym_line_comment, sym_block_comment, - [88112] = 5, + [89003] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_LBRACE, - STATE(1208), 1, - sym_field_declaration_list, - STATE(3075), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + STATE(1941), 1, + sym_parameters, + STATE(3113), 2, sym_line_comment, sym_block_comment, - [88129] = 5, + [89020] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - anon_sym_LPAREN, - STATE(1066), 1, - sym_parameters, - STATE(3076), 2, + ACTIONS(6257), 2, + anon_sym_COMMA, + anon_sym_PIPE, + STATE(3114), 2, sym_line_comment, sym_block_comment, - [88146] = 4, + [89035] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6403), 2, - sym_identifier, - sym_metavariable, - STATE(3077), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1113), 1, + sym_declaration_list, + STATE(3115), 2, sym_line_comment, sym_block_comment, - [88161] = 4, + [89052] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5639), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(3078), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1115), 1, + sym_declaration_list, + STATE(3116), 2, sym_line_comment, sym_block_comment, - [88176] = 5, + [89069] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, - sym_super, - ACTIONS(5567), 1, - sym_identifier, - STATE(3079), 2, + ACTIONS(5651), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3117), 2, sym_line_comment, sym_block_comment, - [88193] = 5, + [89084] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - STATE(2193), 1, - sym_parameters, - STATE(3080), 2, + ACTIONS(6488), 1, + anon_sym_LT, + STATE(1053), 1, + sym_type_parameters, + STATE(3118), 2, sym_line_comment, sym_block_comment, - [88210] = 4, + [89101] = 5, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6405), 2, - sym_float_literal, - sym_integer_literal, - STATE(3081), 2, + STATE(116), 1, + sym_closure_parameters, + STATE(3119), 2, sym_line_comment, sym_block_comment, - [88225] = 5, + [89118] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, + ACTIONS(4813), 1, anon_sym_LBRACE, - STATE(562), 1, + STATE(1098), 1, sym_declaration_list, - STATE(3082), 2, + STATE(3120), 2, sym_line_comment, sym_block_comment, - [88242] = 4, + [89135] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3083), 2, + ACTIONS(6532), 1, + sym_identifier, + ACTIONS(6534), 1, + sym_mutable_specifier, + STATE(3121), 2, sym_line_comment, sym_block_comment, - [88257] = 5, + [89152] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3256), 1, - anon_sym_LBRACE, - STATE(1330), 1, - sym_field_initializer_list, - STATE(3084), 2, + ACTIONS(6536), 1, + anon_sym_LPAREN, + ACTIONS(6538), 1, + anon_sym_COLON_COLON, + STATE(3122), 2, sym_line_comment, sym_block_comment, - [88274] = 5, + [89169] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6407), 1, - anon_sym_SEMI, - ACTIONS(6409), 1, - anon_sym_as, - STATE(3085), 2, + ACTIONS(3774), 1, + anon_sym_COLON, + ACTIONS(5200), 1, + anon_sym_PLUS, + STATE(3123), 2, sym_line_comment, sym_block_comment, - [88291] = 4, + [89186] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5549), 2, - sym_identifier, - sym_super, - STATE(3086), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + ACTIONS(6540), 1, + anon_sym_RBRACE, + STATE(3124), 2, sym_line_comment, sym_block_comment, - [88306] = 5, + [89203] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - STATE(2207), 1, - sym_parameters, - STATE(3087), 2, + ACTIONS(6542), 1, + anon_sym_COLON_COLON, + ACTIONS(6544), 1, + anon_sym_BANG, + STATE(3125), 2, sym_line_comment, sym_block_comment, - [88323] = 4, + [89220] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6411), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3088), 2, + ACTIONS(4384), 1, + anon_sym_BANG, + ACTIONS(6546), 1, + anon_sym_COLON_COLON, + STATE(3126), 2, sym_line_comment, sym_block_comment, - [88338] = 4, + [89237] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6413), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3089), 2, + ACTIONS(6548), 2, + sym_float_literal, + sym_integer_literal, + STATE(3127), 2, sym_line_comment, sym_block_comment, - [88353] = 4, + [89252] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6136), 2, + ACTIONS(6550), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_GT, - STATE(3090), 2, + STATE(3128), 2, sym_line_comment, sym_block_comment, - [88368] = 5, + [89267] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6415), 1, - anon_sym_STAR_SLASH, - ACTIONS(6417), 1, - sym__block_comment_content, - STATE(3091), 2, + ACTIONS(6552), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(3129), 2, sym_line_comment, sym_block_comment, - [88385] = 5, + [89282] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5171), 1, - anon_sym_LBRACE, - STATE(1121), 1, - sym_enum_variant_list, - STATE(3092), 2, + ACTIONS(5066), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3130), 2, sym_line_comment, sym_block_comment, - [88402] = 4, + [89297] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 2, - sym_identifier, - sym_super, - STATE(3093), 2, + ACTIONS(6506), 1, + anon_sym_LPAREN, + ACTIONS(6554), 1, + anon_sym_COLON_COLON, + STATE(3131), 2, sym_line_comment, sym_block_comment, - [88417] = 5, + [89314] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6419), 1, - anon_sym_RPAREN, - ACTIONS(6421), 1, - anon_sym_COLON_COLON, - STATE(3094), 2, + ACTIONS(5509), 1, + sym_super, + ACTIONS(6556), 1, + sym_identifier, + STATE(3132), 2, sym_line_comment, sym_block_comment, - [88434] = 5, + [89331] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5655), 1, - sym_identifier, - STATE(3095), 2, + ACTIONS(3502), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(3133), 2, sym_line_comment, sym_block_comment, - [88451] = 5, + [89346] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_SEMI, - ACTIONS(6423), 1, - anon_sym_RBRACK, - STATE(3096), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + STATE(1952), 1, + sym_parameters, + STATE(3134), 2, sym_line_comment, sym_block_comment, - [88468] = 5, + [89363] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_SEMI, - ACTIONS(6423), 1, - anon_sym_RPAREN, - STATE(3097), 2, + ACTIONS(6558), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3135), 2, sym_line_comment, sym_block_comment, - [88485] = 5, + [89378] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_SEMI, - ACTIONS(6425), 1, - anon_sym_RBRACK, - STATE(3098), 2, + ACTIONS(4922), 1, + anon_sym_PLUS, + ACTIONS(6560), 1, + anon_sym_GT, + STATE(3136), 2, sym_line_comment, sym_block_comment, - [88502] = 5, + [89395] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, - anon_sym_LPAREN, - STATE(1060), 1, - sym_parameters, - STATE(3099), 2, + ACTIONS(6458), 1, + sym_super, + ACTIONS(6562), 1, + sym_identifier, + STATE(3137), 2, sym_line_comment, sym_block_comment, - [88519] = 5, - ACTIONS(33), 1, - anon_sym_PIPE, + [89412] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(126), 1, - sym_closure_parameters, - STATE(3100), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + ACTIONS(6564), 1, + anon_sym_RBRACE, + STATE(3138), 2, sym_line_comment, sym_block_comment, - [88536] = 5, + [89429] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3162), 1, + ACTIONS(3556), 2, anon_sym_LPAREN, - STATE(1053), 1, - sym_parameters, - STATE(3101), 2, + anon_sym_COLON_COLON, + STATE(3139), 2, sym_line_comment, sym_block_comment, - [88553] = 5, + [89444] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, + ACTIONS(5114), 1, + anon_sym_RBRACK, + ACTIONS(6502), 1, anon_sym_SEMI, - ACTIONS(6425), 1, - anon_sym_RPAREN, - STATE(3102), 2, + STATE(3140), 2, sym_line_comment, sym_block_comment, - [88570] = 5, + [89461] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5358), 1, + anon_sym_COLON, ACTIONS(5362), 1, - sym_super, - ACTIONS(6427), 1, - sym_identifier, - STATE(3103), 2, + anon_sym_PIPE, + STATE(3141), 2, sym_line_comment, sym_block_comment, - [88587] = 4, + [89478] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6123), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3104), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(681), 1, + sym_declaration_list, + STATE(3142), 2, sym_line_comment, sym_block_comment, - [88602] = 4, + [89495] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6121), 2, - anon_sym_COMMA, + ACTIONS(5362), 1, anon_sym_PIPE, - STATE(3105), 2, + ACTIONS(6566), 1, + anon_sym_in, + STATE(3143), 2, sym_line_comment, sym_block_comment, - [88617] = 4, + [89512] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5561), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3106), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + ACTIONS(6568), 1, + anon_sym_RBRACE, + STATE(3144), 2, sym_line_comment, sym_block_comment, - [88632] = 5, + [89529] = 5, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6341), 1, - sym_super, - ACTIONS(6429), 1, - sym_identifier, - STATE(3107), 2, + STATE(134), 1, + sym_closure_parameters, + STATE(3145), 2, sym_line_comment, sym_block_comment, - [88649] = 5, + [89546] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, + ACTIONS(3190), 1, anon_sym_LPAREN, - STATE(2212), 1, + STATE(1039), 1, sym_parameters, - STATE(3108), 2, + STATE(3146), 2, sym_line_comment, sym_block_comment, - [88666] = 5, + [89563] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6341), 1, - sym_super, - ACTIONS(6431), 1, - sym_identifier, - STATE(3109), 2, + ACTIONS(3914), 1, + anon_sym_LBRACE, + STATE(1739), 1, + sym_field_initializer_list, + STATE(3147), 2, sym_line_comment, sym_block_comment, - [88683] = 5, + [89580] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6367), 1, - sym_super, - ACTIONS(6373), 1, - sym_identifier, - STATE(3110), 2, + ACTIONS(5620), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(3148), 2, sym_line_comment, sym_block_comment, - [88700] = 5, + [89595] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, - sym_super, - ACTIONS(6433), 1, - sym_identifier, - STATE(3111), 2, + ACTIONS(6570), 1, + anon_sym_SEMI, + ACTIONS(6572), 1, + anon_sym_as, + STATE(3149), 2, sym_line_comment, sym_block_comment, - [88717] = 5, + [89612] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, + ACTIONS(4821), 1, anon_sym_LBRACE, - STATE(1254), 1, - sym_declaration_list, - STATE(3112), 2, + STATE(1378), 1, + sym_field_declaration_list, + STATE(3150), 2, sym_line_comment, sym_block_comment, - [88734] = 5, - ACTIONS(33), 1, - anon_sym_PIPE, + [89629] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(119), 1, - sym_closure_parameters, - STATE(3113), 2, + ACTIONS(4821), 1, + anon_sym_LBRACE, + STATE(1391), 1, + sym_field_declaration_list, + STATE(3151), 2, sym_line_comment, sym_block_comment, - [88751] = 5, + [89646] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5112), 1, - anon_sym_LBRACE, - STATE(717), 1, - sym_enum_variant_list, - STATE(3114), 2, + ACTIONS(6458), 1, + sym_super, + ACTIONS(6574), 1, + sym_identifier, + STATE(3152), 2, sym_line_comment, sym_block_comment, - [88768] = 5, + [89663] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - STATE(2198), 1, - sym_parameters, - STATE(3115), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(693), 1, + sym_declaration_list, + STATE(3153), 2, sym_line_comment, sym_block_comment, - [88785] = 4, + [89680] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6435), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3116), 2, + ACTIONS(5196), 1, + anon_sym_LBRACE, + STATE(1403), 1, + sym_enum_variant_list, + STATE(3154), 2, sym_line_comment, sym_block_comment, - [88800] = 4, + [89697] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5523), 2, - sym_identifier, - sym_super, - STATE(3117), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1427), 1, + sym_declaration_list, + STATE(3155), 2, sym_line_comment, sym_block_comment, - [88815] = 5, + [89714] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4821), 1, anon_sym_LBRACE, - STATE(1253), 1, + STATE(1444), 1, sym_field_declaration_list, - STATE(3118), 2, + STATE(3156), 2, sym_line_comment, sym_block_comment, - [88832] = 5, + [89731] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, - sym_super, - ACTIONS(6437), 1, - sym_identifier, - STATE(3119), 2, + ACTIONS(6576), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3157), 2, sym_line_comment, sym_block_comment, - [88849] = 5, + [89746] = 5, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6365), 1, - sym_super, - ACTIONS(6439), 1, - sym_identifier, - STATE(3120), 2, + STATE(138), 1, + sym_closure_parameters, + STATE(3158), 2, sym_line_comment, sym_block_comment, - [88866] = 5, + [89763] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3580), 1, - anon_sym_COLON, - ACTIONS(5922), 1, - anon_sym_PLUS, - STATE(3121), 2, + ACTIONS(6578), 2, + sym_float_literal, + sym_integer_literal, + STATE(3159), 2, sym_line_comment, sym_block_comment, - [88883] = 5, + [89778] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5511), 1, - sym_identifier, - STATE(3122), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1451), 1, + sym_declaration_list, + STATE(3160), 2, sym_line_comment, sym_block_comment, - [88900] = 5, + [89795] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6367), 1, - sym_super, - ACTIONS(6441), 1, - sym_identifier, - STATE(3123), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1453), 1, + sym_declaration_list, + STATE(3161), 2, sym_line_comment, sym_block_comment, - [88917] = 5, + [89812] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - STATE(532), 1, - sym_declaration_list, - STATE(3124), 2, + ACTIONS(5553), 2, + sym_identifier, + sym_super, + STATE(3162), 2, sym_line_comment, sym_block_comment, - [88934] = 4, + [89827] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6443), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3125), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + STATE(2191), 1, + sym_parameters, + STATE(3163), 2, sym_line_comment, sym_block_comment, - [88949] = 5, + [89844] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - STATE(533), 1, - sym_declaration_list, - STATE(3126), 2, + ACTIONS(5994), 1, + sym_identifier, + ACTIONS(5998), 1, + sym_mutable_specifier, + STATE(3164), 2, sym_line_comment, sym_block_comment, - [88966] = 5, + [89861] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6341), 1, + ACTIONS(6478), 1, sym_super, - ACTIONS(6393), 1, + ACTIONS(6580), 1, sym_identifier, - STATE(3127), 2, + STATE(3165), 2, sym_line_comment, sym_block_comment, - [88983] = 5, + [89878] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(4821), 1, anon_sym_LBRACE, - STATE(1249), 1, + STATE(1454), 1, sym_field_declaration_list, - STATE(3128), 2, + STATE(3166), 2, sym_line_comment, sym_block_comment, - [89000] = 5, + [89895] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5013), 1, - anon_sym_RPAREN, - ACTIONS(6315), 1, - anon_sym_SEMI, - STATE(3129), 2, + ACTIONS(5513), 1, + sym_identifier, + ACTIONS(5655), 1, + sym_super, + STATE(3167), 2, sym_line_comment, sym_block_comment, - [89017] = 5, + [89912] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5112), 1, - anon_sym_LBRACE, - STATE(621), 1, - sym_enum_variant_list, - STATE(3130), 2, + ACTIONS(6406), 1, + sym_super, + ACTIONS(6582), 1, + sym_identifier, + STATE(3168), 2, sym_line_comment, sym_block_comment, - [89034] = 5, + [89929] = 5, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5171), 1, - anon_sym_LBRACE, - STATE(1245), 1, - sym_enum_variant_list, - STATE(3131), 2, + STATE(137), 1, + sym_closure_parameters, + STATE(3169), 2, sym_line_comment, sym_block_comment, - [89051] = 4, + [89946] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5017), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3132), 2, + ACTIONS(4168), 1, + anon_sym_EQ_GT, + ACTIONS(6584), 1, + anon_sym_AMP_AMP, + STATE(3170), 2, sym_line_comment, sym_block_comment, - [89066] = 5, + [89963] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - STATE(1962), 1, - sym_parameters, - STATE(3133), 2, + ACTIONS(6054), 1, + anon_sym_EQ_GT, + ACTIONS(6584), 1, + anon_sym_AMP_AMP, + STATE(3171), 2, sym_line_comment, sym_block_comment, - [89083] = 4, + [89980] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5108), 2, - anon_sym_RPAREN, + ACTIONS(6041), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3134), 2, + STATE(3172), 2, sym_line_comment, sym_block_comment, - [89098] = 4, + [89995] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6092), 2, - anon_sym_COMMA, - anon_sym_GT, - STATE(3135), 2, + ACTIONS(6422), 1, + anon_sym_COLON_COLON, + ACTIONS(6586), 1, + anon_sym_RPAREN, + STATE(3173), 2, sym_line_comment, sym_block_comment, - [89113] = 5, + [90012] = 5, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - STATE(546), 1, - sym_declaration_list, - STATE(3136), 2, + STATE(115), 1, + sym_closure_parameters, + STATE(3174), 2, sym_line_comment, sym_block_comment, - [89130] = 5, + [90029] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5013), 1, - anon_sym_RBRACK, - ACTIONS(6315), 1, - anon_sym_SEMI, - STATE(3137), 2, + ACTIONS(6424), 1, + anon_sym_COLON_COLON, + ACTIONS(6586), 1, + anon_sym_RPAREN, + STATE(3175), 2, sym_line_comment, sym_block_comment, - [89147] = 5, + [90046] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5015), 1, - anon_sym_RBRACE, - ACTIONS(6315), 1, - anon_sym_SEMI, - STATE(3138), 2, + ACTIONS(6426), 1, + anon_sym_COLON_COLON, + ACTIONS(6586), 1, + anon_sym_RPAREN, + STATE(3176), 2, sym_line_comment, sym_block_comment, - [89164] = 5, + [90063] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3765), 1, - anon_sym_LBRACE, - STATE(1688), 1, - sym_field_initializer_list, - STATE(3139), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + ACTIONS(6588), 1, + anon_sym_RBRACK, + STATE(3177), 2, sym_line_comment, sym_block_comment, - [89181] = 5, + [90080] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5011), 1, - anon_sym_RBRACK, - ACTIONS(6315), 1, - anon_sym_SEMI, - STATE(3140), 2, + ACTIONS(6478), 2, + sym_identifier, + sym_super, + STATE(3178), 2, sym_line_comment, sym_block_comment, - [89198] = 5, + [90095] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6421), 1, + ACTIONS(6404), 1, anon_sym_COLON_COLON, - ACTIONS(6445), 1, + ACTIONS(6590), 1, anon_sym_RPAREN, - STATE(3141), 2, + STATE(3179), 2, sym_line_comment, sym_block_comment, - [89215] = 5, + [90112] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5011), 1, - anon_sym_RPAREN, - ACTIONS(6315), 1, + ACTIONS(6502), 1, anon_sym_SEMI, - STATE(3142), 2, + ACTIONS(6588), 1, + anon_sym_RPAREN, + STATE(3180), 2, sym_line_comment, sym_block_comment, - [89232] = 5, + [90129] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1235), 1, - sym_declaration_list, - STATE(3143), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + ACTIONS(6592), 1, + anon_sym_RBRACK, + STATE(3181), 2, sym_line_comment, sym_block_comment, - [89249] = 5, - ACTIONS(33), 1, - anon_sym_PIPE, + [90146] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(138), 1, - sym_closure_parameters, - STATE(3144), 2, + ACTIONS(5086), 1, + anon_sym_RBRACE, + ACTIONS(6502), 1, + anon_sym_SEMI, + STATE(3182), 2, sym_line_comment, sym_block_comment, - [89266] = 5, + [90163] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1234), 1, - sym_declaration_list, - STATE(3145), 2, + ACTIONS(5094), 1, + anon_sym_RBRACK, + ACTIONS(6502), 1, + anon_sym_SEMI, + STATE(3183), 2, sym_line_comment, sym_block_comment, - [89283] = 5, + [90180] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6367), 1, - sym_super, - ACTIONS(6447), 1, - sym_identifier, - STATE(3146), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(659), 1, + sym_declaration_list, + STATE(3184), 2, sym_line_comment, sym_block_comment, - [89300] = 5, + [90197] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_RBRACK, - ACTIONS(6315), 1, + ACTIONS(6502), 1, anon_sym_SEMI, - STATE(3147), 2, + ACTIONS(6592), 1, + anon_sym_RPAREN, + STATE(3185), 2, sym_line_comment, sym_block_comment, - [89317] = 5, - ACTIONS(33), 1, - anon_sym_PIPE, + [90214] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(146), 1, - sym_closure_parameters, - STATE(3148), 2, + ACTIONS(5094), 1, + anon_sym_RPAREN, + ACTIONS(6502), 1, + anon_sym_SEMI, + STATE(3186), 2, sym_line_comment, sym_block_comment, - [89334] = 4, + [90231] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6070), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3149), 2, + ACTIONS(5050), 1, + sym_super, + ACTIONS(5718), 1, + sym_identifier, + STATE(3187), 2, sym_line_comment, sym_block_comment, - [89349] = 5, + [90248] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6353), 1, - sym_super, - ACTIONS(6449), 1, - sym_identifier, - STATE(3150), 2, + ACTIONS(5096), 1, + anon_sym_RBRACE, + ACTIONS(6502), 1, + anon_sym_SEMI, + STATE(3188), 2, sym_line_comment, sym_block_comment, - [89366] = 5, + [90265] = 5, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_RPAREN, - ACTIONS(6453), 1, - anon_sym_COLON_COLON, - STATE(3151), 2, + STATE(121), 1, + sym_closure_parameters, + STATE(3189), 2, sym_line_comment, sym_block_comment, - [89383] = 5, - ACTIONS(33), 1, - anon_sym_PIPE, + [90282] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(144), 1, - sym_closure_parameters, - STATE(3152), 2, + ACTIONS(5655), 2, + sym_identifier, + sym_super, + STATE(3190), 2, sym_line_comment, sym_block_comment, - [89400] = 5, + [90297] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4971), 1, - anon_sym_RPAREN, - ACTIONS(6315), 1, - anon_sym_SEMI, - STATE(3153), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + STATE(2215), 1, + sym_parameters, + STATE(3191), 2, sym_line_comment, sym_block_comment, - [89417] = 5, + [90314] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5549), 1, + ACTIONS(5050), 1, sym_super, - ACTIONS(6455), 1, + ACTIONS(5720), 1, sym_identifier, - STATE(3154), 2, + STATE(3192), 2, sym_line_comment, sym_block_comment, - [89434] = 5, + [90331] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1224), 1, - sym_declaration_list, - STATE(3155), 2, + ACTIONS(4553), 1, + anon_sym_BANG, + ACTIONS(4673), 1, + anon_sym_COLON_COLON, + STATE(3193), 2, sym_line_comment, sym_block_comment, - [89451] = 5, + [90348] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_RPAREN, - ACTIONS(6457), 1, - anon_sym_COLON_COLON, - STATE(3156), 2, + ACTIONS(6594), 2, + sym_identifier, + sym_metavariable, + STATE(3194), 2, sym_line_comment, sym_block_comment, - [89468] = 5, + [90363] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6387), 1, - sym_super, - ACTIONS(6459), 1, + ACTIONS(6596), 1, sym_identifier, - STATE(3157), 2, + ACTIONS(6598), 1, + sym_super, + STATE(3195), 2, sym_line_comment, sym_block_comment, - [89485] = 5, + [90380] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6461), 1, - sym_identifier, - ACTIONS(6463), 1, - sym_mutable_specifier, - STATE(3158), 2, + ACTIONS(5196), 1, + anon_sym_LBRACE, + STATE(1380), 1, + sym_enum_variant_list, + STATE(3196), 2, sym_line_comment, sym_block_comment, - [89502] = 5, + [90397] = 5, + ACTIONS(33), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5464), 1, - sym_super, - ACTIONS(5535), 1, - sym_identifier, - STATE(3159), 2, + STATE(117), 1, + sym_closure_parameters, + STATE(3197), 2, sym_line_comment, sym_block_comment, - [89519] = 5, + [90414] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6367), 1, + ACTIONS(6500), 1, sym_super, - ACTIONS(6465), 1, + ACTIONS(6600), 1, sym_identifier, - STATE(3160), 2, + STATE(3198), 2, sym_line_comment, sym_block_comment, - [89536] = 5, + [90431] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(6467), 1, - anon_sym_EQ, - STATE(3161), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(618), 1, + sym_declaration_list, + STATE(3199), 2, sym_line_comment, sym_block_comment, - [89553] = 5, + [90448] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, + ACTIONS(5114), 1, anon_sym_RPAREN, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - STATE(3162), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + STATE(3200), 2, sym_line_comment, sym_block_comment, - [89570] = 5, + [90465] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_LBRACE, - STATE(1100), 1, - sym_field_declaration_list, - STATE(3163), 2, + ACTIONS(3896), 1, + anon_sym_LT2, + STATE(1727), 1, + sym_type_arguments, + STATE(3201), 2, sym_line_comment, sym_block_comment, - [89587] = 5, - ACTIONS(33), 1, - anon_sym_PIPE, + [90482] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(132), 1, - sym_closure_parameters, - STATE(3164), 2, + ACTIONS(6602), 1, + sym_identifier, + ACTIONS(6604), 1, + sym_super, + STATE(3202), 2, sym_line_comment, sym_block_comment, - [89604] = 5, + [90499] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1104), 1, - sym_declaration_list, - STATE(3165), 2, + ACTIONS(5050), 2, + sym_identifier, + sym_super, + STATE(3203), 2, sym_line_comment, sym_block_comment, - [89621] = 5, + [90514] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6198), 1, + ACTIONS(5655), 1, + sym_super, + ACTIONS(5722), 1, sym_identifier, - ACTIONS(6202), 1, - sym_mutable_specifier, - STATE(3166), 2, + STATE(3204), 2, sym_line_comment, sym_block_comment, - [89638] = 5, + [90531] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - ACTIONS(4817), 1, - anon_sym_for, - STATE(3167), 2, + ACTIONS(6406), 1, + sym_super, + ACTIONS(6606), 1, + sym_identifier, + STATE(3205), 2, sym_line_comment, sym_block_comment, - [89655] = 5, + [90548] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1105), 1, - sym_declaration_list, - STATE(3168), 2, + ACTIONS(6500), 1, + sym_super, + ACTIONS(6608), 1, + sym_identifier, + STATE(3206), 2, sym_line_comment, sym_block_comment, - [89672] = 5, + [90565] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6469), 1, - anon_sym_COLON_COLON, - ACTIONS(6471), 1, - anon_sym_RPAREN, - STATE(3169), 2, + ACTIONS(5728), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(3207), 2, sym_line_comment, sym_block_comment, - [89689] = 4, + [90580] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3170), 2, + ACTIONS(6598), 2, + sym_identifier, + sym_super, + STATE(3208), 2, sym_line_comment, sym_block_comment, - [89704] = 5, + [90595] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_LBRACE, - STATE(1111), 1, - sym_field_declaration_list, - STATE(3171), 2, + ACTIONS(3198), 1, + anon_sym_LT2, + STATE(1088), 1, + sym_type_arguments, + STATE(3209), 2, sym_line_comment, sym_block_comment, - [89721] = 5, + [90612] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - STATE(2164), 1, - sym_parameters, - STATE(3172), 2, + ACTIONS(5126), 1, + anon_sym_RBRACK, + ACTIONS(6502), 1, + anon_sym_SEMI, + STATE(3210), 2, sym_line_comment, sym_block_comment, - [89738] = 5, - ACTIONS(33), 1, - anon_sym_PIPE, + [90629] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(140), 1, - sym_closure_parameters, - STATE(3173), 2, + ACTIONS(6610), 2, + sym_identifier, + sym_metavariable, + STATE(3211), 2, sym_line_comment, sym_block_comment, - [89755] = 5, + [90644] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, + ACTIONS(5126), 1, + anon_sym_RPAREN, + ACTIONS(6502), 1, anon_sym_SEMI, - ACTIONS(6473), 1, - anon_sym_RBRACE, - STATE(3174), 2, + STATE(3212), 2, sym_line_comment, sym_block_comment, - [89772] = 5, + [90661] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_SEMI, - ACTIONS(6475), 1, + ACTIONS(5112), 1, anon_sym_RBRACK, - STATE(3175), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + STATE(3213), 2, sym_line_comment, sym_block_comment, - [89789] = 5, + [90678] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_SEMI, - ACTIONS(6475), 1, + ACTIONS(6458), 2, + sym_identifier, + sym_super, + STATE(3214), 2, + sym_line_comment, + sym_block_comment, + [90693] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5112), 1, anon_sym_RPAREN, - STATE(3176), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + STATE(3215), 2, sym_line_comment, sym_block_comment, - [89806] = 5, + [90710] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - anon_sym_LBRACE, - STATE(662), 1, - sym_field_declaration_list, - STATE(3177), 2, + ACTIONS(6612), 1, + sym_identifier, + ACTIONS(6614), 1, + sym_mutable_specifier, + STATE(3216), 2, sym_line_comment, sym_block_comment, - [89823] = 5, + [90727] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6341), 1, + ACTIONS(6478), 1, sym_super, - ACTIONS(6477), 1, + ACTIONS(6616), 1, sym_identifier, - STATE(3178), 2, + STATE(3217), 2, sym_line_comment, sym_block_comment, - [89840] = 5, - ACTIONS(33), 1, - anon_sym_PIPE, + [90744] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(147), 1, - sym_closure_parameters, - STATE(3179), 2, + ACTIONS(5918), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3218), 2, sym_line_comment, sym_block_comment, - [89857] = 5, + [90759] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6317), 1, - anon_sym_LT, - STATE(1495), 1, - sym_type_parameters, - STATE(3180), 2, + ACTIONS(6464), 1, + sym_identifier, + ACTIONS(6478), 1, + sym_super, + STATE(3219), 2, sym_line_comment, sym_block_comment, - [89874] = 5, + [90776] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_SEMI, - ACTIONS(6479), 1, - anon_sym_RBRACE, - STATE(3181), 2, + ACTIONS(4553), 1, + anon_sym_BANG, + ACTIONS(4671), 1, + anon_sym_COLON_COLON, + STATE(3220), 2, sym_line_comment, sym_block_comment, - [89891] = 5, + [90793] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6365), 1, + ACTIONS(6458), 1, sym_super, - ACTIONS(6481), 1, + ACTIONS(6618), 1, sym_identifier, - STATE(3182), 2, + STATE(3221), 2, sym_line_comment, sym_block_comment, - [89908] = 5, + [90810] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4347), 1, - anon_sym_LPAREN, - STATE(1948), 1, - sym_parameters, - STATE(3183), 2, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(5954), 1, + anon_sym_for, + STATE(3222), 2, sym_line_comment, sym_block_comment, - [89925] = 5, + [90827] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5521), 1, - sym_identifier, - ACTIONS(5523), 1, - sym_super, - STATE(3184), 2, + ACTIONS(2914), 1, + anon_sym_SQUOTE, + STATE(2958), 1, + sym_lifetime, + STATE(3223), 2, sym_line_comment, sym_block_comment, - [89942] = 5, + [90844] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6379), 1, + ACTIONS(6478), 1, sym_super, - ACTIONS(6483), 1, + ACTIONS(6620), 1, sym_identifier, - STATE(3185), 2, + STATE(3224), 2, sym_line_comment, sym_block_comment, - [89959] = 5, + [90861] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3492), 1, - anon_sym_COLON, - ACTIONS(5922), 1, - anon_sym_PLUS, - STATE(3186), 2, + ACTIONS(3190), 1, + anon_sym_LPAREN, + STATE(1047), 1, + sym_parameters, + STATE(3225), 2, sym_line_comment, sym_block_comment, - [89976] = 5, + [90878] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4351), 1, - anon_sym_BANG, - ACTIONS(6485), 1, - anon_sym_COLON_COLON, - STATE(3187), 2, + ACTIONS(5750), 1, + sym_identifier, + ACTIONS(5752), 1, + sym_super, + STATE(3226), 2, sym_line_comment, sym_block_comment, - [89993] = 5, + [90895] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1129), 1, - sym_declaration_list, - STATE(3188), 2, + ACTIONS(6514), 1, + sym_super, + ACTIONS(6622), 1, + sym_identifier, + STATE(3227), 2, sym_line_comment, sym_block_comment, - [90010] = 5, + [90912] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_SEMI, - ACTIONS(6487), 1, - anon_sym_RBRACK, - STATE(3189), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(627), 1, + sym_declaration_list, + STATE(3228), 2, sym_line_comment, sym_block_comment, - [90027] = 5, + [90929] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6365), 1, - sym_super, - ACTIONS(6427), 1, - sym_identifier, - STATE(3190), 2, + ACTIONS(6488), 1, + anon_sym_LT, + STATE(1061), 1, + sym_type_parameters, + STATE(3229), 2, sym_line_comment, sym_block_comment, - [90044] = 5, + [90946] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3488), 1, - anon_sym_COLON, - ACTIONS(5922), 1, - anon_sym_PLUS, - STATE(3191), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(628), 1, + sym_declaration_list, + STATE(3230), 2, sym_line_comment, sym_block_comment, - [90061] = 5, + [90963] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_SEMI, - ACTIONS(6487), 1, - anon_sym_RPAREN, - STATE(3192), 2, + ACTIONS(6488), 1, + anon_sym_LT, + STATE(969), 1, + sym_type_parameters, + STATE(3231), 2, sym_line_comment, sym_block_comment, - [90078] = 5, + [90980] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(6489), 1, - anon_sym_EQ, - STATE(3193), 2, + ACTIONS(5923), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3232), 2, sym_line_comment, sym_block_comment, - [90095] = 5, + [90995] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4837), 1, - anon_sym_PLUS, - ACTIONS(6491), 1, - anon_sym_GT, - STATE(3194), 2, + ACTIONS(5655), 1, + sym_super, + ACTIONS(5767), 1, + sym_identifier, + STATE(3233), 2, sym_line_comment, sym_block_comment, - [90112] = 5, + [91012] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4776), 1, - anon_sym_LBRACE, - STATE(1205), 1, - sym_declaration_list, - STATE(3195), 2, + ACTIONS(5894), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3234), 2, sym_line_comment, sym_block_comment, - [90129] = 4, + [91027] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6365), 2, - sym_identifier, - sym_super, - STATE(3196), 2, + ACTIONS(6488), 1, + anon_sym_LT, + STATE(950), 1, + sym_type_parameters, + STATE(3235), 2, sym_line_comment, sym_block_comment, - [90144] = 5, + [91044] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, - anon_sym_PIPE, - ACTIONS(6493), 1, - anon_sym_in, - STATE(3197), 2, + ACTIONS(3190), 1, + anon_sym_LPAREN, + STATE(1068), 1, + sym_parameters, + STATE(3236), 2, sym_line_comment, sym_block_comment, - [90161] = 5, - ACTIONS(33), 1, - anon_sym_PIPE, + [91061] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(120), 1, - sym_closure_parameters, - STATE(3198), 2, + ACTIONS(5567), 1, + sym_identifier, + ACTIONS(5655), 1, + sym_super, + STATE(3237), 2, sym_line_comment, sym_block_comment, - [90178] = 5, + [91078] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - anon_sym_LBRACE, - STATE(632), 1, - sym_field_declaration_list, - STATE(3199), 2, + ACTIONS(6624), 1, + anon_sym_SEMI, + ACTIONS(6626), 1, + anon_sym_as, + STATE(3238), 2, sym_line_comment, sym_block_comment, - [90195] = 5, + [91095] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5265), 1, - anon_sym_COLON, - ACTIONS(5269), 1, - anon_sym_PIPE, - STATE(3200), 2, + ACTIONS(6500), 2, + sym_identifier, + sym_super, + STATE(3239), 2, sym_line_comment, sym_block_comment, - [90212] = 5, + [91110] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3450), 1, - anon_sym_COLON, - ACTIONS(5922), 1, - anon_sym_PLUS, - STATE(3201), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + STATE(1945), 1, + sym_parameters, + STATE(3240), 2, sym_line_comment, sym_block_comment, - [90229] = 5, + [91127] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6341), 1, - sym_super, - ACTIONS(6495), 1, + ACTIONS(6604), 2, sym_identifier, - STATE(3202), 2, + sym_super, + STATE(3241), 2, sym_line_comment, sym_block_comment, - [90246] = 5, - ACTIONS(33), 1, - anon_sym_PIPE, + [91142] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(150), 1, - sym_closure_parameters, - STATE(3203), 2, + ACTIONS(6458), 1, + sym_super, + ACTIONS(6628), 1, + sym_identifier, + STATE(3242), 2, sym_line_comment, sym_block_comment, - [90263] = 5, + [91159] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2924), 1, - anon_sym_SQUOTE, - STATE(2820), 1, - sym_lifetime, - STATE(3204), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + STATE(2163), 1, + sym_parameters, + STATE(3243), 2, sym_line_comment, sym_block_comment, - [90280] = 5, + [91176] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6365), 1, + ACTIONS(6478), 1, sym_super, - ACTIONS(6497), 1, + ACTIONS(6630), 1, sym_identifier, - STATE(3205), 2, + STATE(3244), 2, sym_line_comment, sym_block_comment, - [90297] = 4, + [91193] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6499), 2, - sym_float_literal, - sym_integer_literal, - STATE(3206), 2, + ACTIONS(6488), 1, + anon_sym_LT, + STATE(1083), 1, + sym_type_parameters, + STATE(3245), 2, sym_line_comment, sym_block_comment, - [90312] = 5, + [91210] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, + ACTIONS(5050), 1, sym_super, - ACTIONS(5511), 1, + ACTIONS(5513), 1, sym_identifier, - STATE(3207), 2, + STATE(3246), 2, sym_line_comment, sym_block_comment, - [90329] = 5, + [91227] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, + ACTIONS(6500), 1, sym_super, - ACTIONS(6441), 1, + ACTIONS(6582), 1, sym_identifier, - STATE(3208), 2, + STATE(3247), 2, sym_line_comment, sym_block_comment, - [90346] = 5, + [91244] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5171), 1, + ACTIONS(5208), 1, anon_sym_LBRACE, - STATE(1134), 1, + STATE(649), 1, sym_enum_variant_list, - STATE(3209), 2, + STATE(3248), 2, sym_line_comment, sym_block_comment, - [90363] = 5, + [91261] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6501), 1, - anon_sym_EQ_GT, - ACTIONS(6503), 1, - anon_sym_if, - STATE(3210), 2, + ACTIONS(5899), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3249), 2, sym_line_comment, sym_block_comment, - [90380] = 4, + [91276] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6004), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3211), 2, + ACTIONS(6406), 1, + sym_super, + ACTIONS(6498), 1, + sym_identifier, + STATE(3250), 2, sym_line_comment, sym_block_comment, - [90395] = 5, + [91293] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6457), 1, - anon_sym_COLON_COLON, - ACTIONS(6471), 1, - anon_sym_RPAREN, - STATE(3212), 2, + ACTIONS(6406), 1, + sym_super, + ACTIONS(6632), 1, + sym_identifier, + STATE(3251), 2, sym_line_comment, sym_block_comment, - [90412] = 5, + [91310] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_SEMI, - ACTIONS(6505), 1, - anon_sym_RBRACE, - STATE(3213), 2, + ACTIONS(4805), 1, + anon_sym_LBRACE, + STATE(655), 1, + sym_field_declaration_list, + STATE(3252), 2, sym_line_comment, sym_block_comment, - [90429] = 5, + [91327] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6307), 1, + ACTIONS(6430), 1, sym_identifier, - ACTIONS(6341), 1, + ACTIONS(6458), 1, sym_super, - STATE(3214), 2, + STATE(3253), 2, sym_line_comment, sym_block_comment, - [90446] = 5, + [91344] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6309), 1, + ACTIONS(6432), 1, sym_identifier, - ACTIONS(6365), 1, + ACTIONS(6478), 1, sym_super, - STATE(3215), 2, + STATE(3254), 2, sym_line_comment, sym_block_comment, - [90463] = 5, + [91361] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, - anon_sym_LBRACE, - STATE(1137), 1, - sym_field_declaration_list, - STATE(3216), 2, + ACTIONS(5138), 1, + anon_sym_RBRACE, + ACTIONS(6502), 1, + anon_sym_SEMI, + STATE(3255), 2, sym_line_comment, sym_block_comment, - [90480] = 5, + [91378] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5464), 1, + ACTIONS(5655), 1, sym_super, - ACTIONS(5503), 1, + ACTIONS(5777), 1, sym_identifier, - STATE(3217), 2, + STATE(3256), 2, sym_line_comment, sym_block_comment, - [90497] = 5, + [91395] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6367), 1, + ACTIONS(6406), 1, sym_super, - ACTIONS(6507), 1, + ACTIONS(6634), 1, sym_identifier, - STATE(3218), 2, + STATE(3257), 2, sym_line_comment, sym_block_comment, - [90514] = 4, + [91412] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 2, - sym_identifier, - sym_super, - STATE(3219), 2, + ACTIONS(5876), 2, + anon_sym_COMMA, + anon_sym_GT, + STATE(3258), 2, sym_line_comment, sym_block_comment, - [90529] = 5, + [91427] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5003), 1, + ACTIONS(5140), 1, anon_sym_RBRACE, - ACTIONS(6315), 1, + ACTIONS(6502), 1, anon_sym_SEMI, - STATE(3220), 2, + STATE(3259), 2, sym_line_comment, sym_block_comment, - [90546] = 5, + [91444] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5464), 1, + ACTIONS(5655), 1, sym_super, - ACTIONS(5501), 1, + ACTIONS(5797), 1, sym_identifier, - STATE(3221), 2, + STATE(3260), 2, sym_line_comment, sym_block_comment, - [90563] = 5, + [91461] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6367), 1, + ACTIONS(6406), 1, sym_super, - ACTIONS(6509), 1, + ACTIONS(6636), 1, sym_identifier, - STATE(3222), 2, + STATE(3261), 2, sym_line_comment, sym_block_comment, - [90580] = 5, + [91478] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_SEMI, - ACTIONS(6511), 1, - anon_sym_RBRACE, - STATE(3223), 2, + ACTIONS(4805), 1, + anon_sym_LBRACE, + STATE(658), 1, + sym_field_declaration_list, + STATE(3262), 2, sym_line_comment, sym_block_comment, - [90597] = 5, + [91495] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - anon_sym_LBRACE, - STATE(733), 1, - sym_field_declaration_list, - STATE(3224), 2, + ACTIONS(6638), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3263), 2, sym_line_comment, sym_block_comment, - [90614] = 5, + [91510] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5464), 1, + ACTIONS(5655), 1, sym_super, - ACTIONS(5499), 1, + ACTIONS(5801), 1, sym_identifier, - STATE(3225), 2, + STATE(3264), 2, sym_line_comment, sym_block_comment, - [90631] = 5, + [91527] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6367), 1, + ACTIONS(6406), 1, sym_super, - ACTIONS(6513), 1, + ACTIONS(6640), 1, sym_identifier, - STATE(3226), 2, + STATE(3265), 2, sym_line_comment, sym_block_comment, - [90648] = 4, + [91544] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6515), 2, + ACTIONS(5198), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(3227), 2, + STATE(3266), 2, sym_line_comment, sym_block_comment, - [90663] = 5, + [91559] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6517), 1, - anon_sym_COLON_COLON, - ACTIONS(6519), 1, - anon_sym_BANG, - STATE(3228), 2, + ACTIONS(5208), 1, + anon_sym_LBRACE, + STATE(732), 1, + sym_enum_variant_list, + STATE(3267), 2, sym_line_comment, sym_block_comment, - [90680] = 5, + [91576] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4985), 1, + ACTIONS(5050), 1, sym_super, - ACTIONS(5499), 1, + ACTIONS(5801), 1, sym_identifier, - STATE(3229), 2, + STATE(3268), 2, sym_line_comment, sym_block_comment, - [90697] = 5, + [91593] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6345), 1, + ACTIONS(6500), 1, sym_super, - ACTIONS(6513), 1, + ACTIONS(6640), 1, sym_identifier, - STATE(3230), 2, + STATE(3269), 2, sym_line_comment, sym_block_comment, - [90714] = 5, + [91610] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4751), 1, - anon_sym_LBRACE, - STATE(638), 1, - sym_field_declaration_list, - STATE(3231), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + STATE(2198), 1, + sym_parameters, + STATE(3270), 2, sym_line_comment, sym_block_comment, - [90731] = 4, + [91627] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3232), 2, + ACTIONS(4805), 1, + anon_sym_LBRACE, + STATE(734), 1, + sym_field_declaration_list, + STATE(3271), 2, sym_line_comment, sym_block_comment, - [90746] = 5, + [91644] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4727), 1, + ACTIONS(5196), 1, anon_sym_LBRACE, - STATE(1142), 1, - sym_field_declaration_list, - STATE(3233), 2, + STATE(1264), 1, + sym_enum_variant_list, + STATE(3272), 2, sym_line_comment, sym_block_comment, - [90763] = 5, + [91661] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6453), 1, - anon_sym_COLON_COLON, - ACTIONS(6471), 1, - anon_sym_RPAREN, - STATE(3234), 2, + ACTIONS(5362), 1, + anon_sym_PIPE, + ACTIONS(6642), 1, + anon_sym_EQ, + STATE(3273), 2, sym_line_comment, sym_block_comment, - [90780] = 5, + [91678] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6523), 1, - anon_sym_SEMI, - ACTIONS(6525), 1, - anon_sym_as, - STATE(3235), 2, + ACTIONS(4380), 1, + anon_sym_LPAREN, + STATE(2194), 1, + sym_parameters, + STATE(3274), 2, sym_line_comment, sym_block_comment, - [90797] = 5, + [91695] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5269), 1, + ACTIONS(5362), 1, anon_sym_PIPE, - ACTIONS(6527), 1, - anon_sym_in, - STATE(3236), 2, + ACTIONS(6644), 1, + anon_sym_EQ, + STATE(3275), 2, sym_line_comment, sym_block_comment, - [90814] = 5, + [91712] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5362), 1, - sym_super, - ACTIONS(6363), 1, - sym_identifier, - STATE(3237), 2, + ACTIONS(4829), 1, + anon_sym_LBRACE, + STATE(675), 1, + sym_declaration_list, + STATE(3276), 2, sym_line_comment, sym_block_comment, - [90831] = 4, + [91729] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6341), 2, - sym_identifier, - sym_super, - STATE(3238), 2, + ACTIONS(5811), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3277), 2, sym_line_comment, sym_block_comment, - [90846] = 5, + [91744] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6529), 1, - anon_sym_SEMI, - ACTIONS(6531), 1, - anon_sym_as, - STATE(3239), 2, + ACTIONS(4821), 1, + anon_sym_LBRACE, + STATE(1355), 1, + sym_field_declaration_list, + STATE(3278), 2, sym_line_comment, sym_block_comment, - [90863] = 5, + [91761] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4704), 1, - anon_sym_LBRACE, - STATE(695), 1, - sym_declaration_list, - STATE(3240), 2, + ACTIONS(6506), 1, + anon_sym_LPAREN, + ACTIONS(6646), 1, + anon_sym_COLON_COLON, + STATE(3279), 2, sym_line_comment, sym_block_comment, - [90880] = 5, + [91778] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, - anon_sym_COLON, - ACTIONS(5922), 1, - anon_sym_PLUS, - STATE(3241), 2, + ACTIONS(4813), 1, + anon_sym_LBRACE, + STATE(1379), 1, + sym_declaration_list, + STATE(3280), 2, sym_line_comment, sym_block_comment, - [90897] = 5, + [91795] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6317), 1, - anon_sym_LT, - STATE(1499), 1, - sym_type_parameters, - STATE(3242), 2, + ACTIONS(4805), 1, + anon_sym_LBRACE, + STATE(632), 1, + sym_field_declaration_list, + STATE(3281), 2, sym_line_comment, sym_block_comment, - [90914] = 4, + [91812] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4415), 1, - anon_sym_fn, - STATE(3243), 2, + ACTIONS(4472), 1, + anon_sym_COLON_COLON, + ACTIONS(4904), 1, + anon_sym_for, + STATE(3282), 2, sym_line_comment, sym_block_comment, - [90928] = 4, + [91829] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6533), 1, - sym_identifier, - STATE(3244), 2, + ACTIONS(6648), 1, + anon_sym_COLON_COLON, + ACTIONS(6650), 1, + anon_sym_BANG, + STATE(3283), 2, sym_line_comment, sym_block_comment, - [90942] = 4, + [91846] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4441), 1, - anon_sym_COLON_COLON, - STATE(3245), 2, + ACTIONS(6652), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3284), 2, sym_line_comment, sym_block_comment, - [90956] = 4, + [91861] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3951), 1, - anon_sym_COLON_COLON, - STATE(3246), 2, + ACTIONS(4821), 1, + anon_sym_LBRACE, + STATE(1397), 1, + sym_field_declaration_list, + STATE(3285), 2, sym_line_comment, sym_block_comment, - [90970] = 4, + [91878] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - sym_identifier, - STATE(3247), 2, + ACTIONS(6654), 1, + anon_sym_SEMI, + ACTIONS(6656), 1, + anon_sym_as, + STATE(3286), 2, sym_line_comment, sym_block_comment, - [90984] = 4, + [91895] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4478), 1, + ACTIONS(4472), 1, anon_sym_COLON_COLON, - STATE(3248), 2, + STATE(3287), 2, sym_line_comment, sym_block_comment, - [90998] = 4, + [91909] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6537), 1, - sym_identifier, - STATE(3249), 2, + ACTIONS(5096), 1, + anon_sym_SEMI, + STATE(3288), 2, sym_line_comment, sym_block_comment, - [91012] = 4, + [91923] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6539), 1, - sym_identifier, - STATE(3250), 2, + ACTIONS(6502), 1, + anon_sym_SEMI, + STATE(3289), 2, sym_line_comment, sym_block_comment, - [91026] = 4, + [91937] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - sym_identifier, - STATE(3251), 2, + ACTIONS(6658), 1, + anon_sym_SEMI, + STATE(3290), 2, sym_line_comment, sym_block_comment, - [91040] = 4, + [91951] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6543), 1, - anon_sym_COLON, - STATE(3252), 2, + ACTIONS(5837), 1, + anon_sym_RBRACE, + STATE(3291), 2, sym_line_comment, sym_block_comment, - [91054] = 4, + [91965] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, - anon_sym_RBRACK, - STATE(3253), 2, + ACTIONS(6660), 1, + anon_sym_RPAREN, + STATE(3292), 2, sym_line_comment, sym_block_comment, - [91068] = 4, + [91979] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6547), 1, + ACTIONS(6662), 1, anon_sym_SEMI, - STATE(3254), 2, + STATE(3293), 2, sym_line_comment, sym_block_comment, - [91082] = 4, + [91993] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6549), 1, - sym_identifier, - STATE(3255), 2, + ACTIONS(3950), 1, + anon_sym_COLON_COLON, + STATE(3294), 2, sym_line_comment, sym_block_comment, - [91096] = 4, + [92007] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, - anon_sym_COLON, - STATE(3256), 2, + ACTIONS(6664), 1, + sym_identifier, + STATE(3295), 2, sym_line_comment, sym_block_comment, - [91110] = 4, + [92021] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5021), 1, + ACTIONS(5070), 1, anon_sym_COLON_COLON, - STATE(3257), 2, + STATE(3296), 2, sym_line_comment, sym_block_comment, - [91124] = 4, + [92035] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, + ACTIONS(6666), 1, anon_sym_fn, - STATE(3258), 2, + STATE(3297), 2, sym_line_comment, sym_block_comment, - [91138] = 4, + [92049] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, + ACTIONS(6668), 1, anon_sym_SEMI, - STATE(3259), 2, + STATE(3298), 2, sym_line_comment, sym_block_comment, - [91152] = 4, + [92063] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6555), 1, + ACTIONS(6670), 1, anon_sym_COLON_COLON, - STATE(3260), 2, + STATE(3299), 2, sym_line_comment, sym_block_comment, - [91166] = 4, + [92077] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5245), 1, - anon_sym_RPAREN, - STATE(3261), 2, + ACTIONS(6672), 1, + anon_sym_COLON, + STATE(3300), 2, sym_line_comment, sym_block_comment, - [91180] = 4, + [92091] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5603), 1, - anon_sym_LBRACE, - STATE(3262), 2, + ACTIONS(6674), 1, + anon_sym_SEMI, + STATE(3301), 2, sym_line_comment, sym_block_comment, - [91194] = 4, + [92105] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6505), 1, - anon_sym_SEMI, - STATE(3263), 2, + ACTIONS(6676), 1, + sym_identifier, + STATE(3302), 2, sym_line_comment, sym_block_comment, - [91208] = 4, + [92119] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - anon_sym_COLON, - STATE(3264), 2, + ACTIONS(6678), 1, + sym_identifier, + STATE(3303), 2, sym_line_comment, sym_block_comment, - [91222] = 4, + [92133] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6559), 1, + ACTIONS(6680), 1, sym_identifier, - STATE(3265), 2, + STATE(3304), 2, sym_line_comment, sym_block_comment, - [91236] = 4, + [92147] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 1, - anon_sym_RBRACK, - STATE(3266), 2, + ACTIONS(6682), 1, + anon_sym_RPAREN, + STATE(3305), 2, + sym_line_comment, + sym_block_comment, + [92161] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(6684), 1, + sym_identifier, + STATE(3306), 2, sym_line_comment, sym_block_comment, - [91250] = 4, + [92175] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6563), 1, + ACTIONS(4044), 1, anon_sym_RPAREN, - STATE(3267), 2, + STATE(3307), 2, sym_line_comment, sym_block_comment, - [91264] = 4, + [92189] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4719), 1, - anon_sym_COLON_COLON, - STATE(3268), 2, + ACTIONS(6686), 1, + anon_sym_SEMI, + STATE(3308), 2, sym_line_comment, sym_block_comment, - [91278] = 4, + [92203] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 1, - anon_sym_EQ, - STATE(3269), 2, + ACTIONS(1428), 1, + anon_sym_EQ_GT, + STATE(3309), 2, sym_line_comment, sym_block_comment, - [91292] = 4, + [92217] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6567), 1, - anon_sym_RBRACK, - STATE(3270), 2, + ACTIONS(6688), 1, + sym_identifier, + STATE(3310), 2, sym_line_comment, sym_block_comment, - [91306] = 4, + [92231] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1528), 1, - anon_sym_EQ_GT, - STATE(3271), 2, + ACTIONS(6690), 1, + sym_identifier, + STATE(3311), 2, sym_line_comment, sym_block_comment, - [91320] = 4, + [92245] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6569), 1, + ACTIONS(6692), 1, sym_identifier, - STATE(3272), 2, + STATE(3312), 2, sym_line_comment, sym_block_comment, - [91334] = 4, + [92259] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, + ACTIONS(6694), 1, anon_sym_COLON_COLON, - STATE(3273), 2, + STATE(3313), 2, sym_line_comment, sym_block_comment, - [91348] = 4, + [92273] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6573), 1, + ACTIONS(6696), 1, sym_identifier, - STATE(3274), 2, + STATE(3314), 2, sym_line_comment, sym_block_comment, - [91362] = 4, + [92287] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, + ACTIONS(6698), 1, sym_identifier, - STATE(3275), 2, + STATE(3315), 2, sym_line_comment, sym_block_comment, - [91376] = 4, + [92301] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 1, + ACTIONS(6700), 1, sym_identifier, - STATE(3276), 2, + STATE(3316), 2, sym_line_comment, sym_block_comment, - [91390] = 4, + [92315] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6579), 1, + ACTIONS(6702), 1, sym_identifier, - STATE(3277), 2, + STATE(3317), 2, sym_line_comment, sym_block_comment, - [91404] = 4, + [92329] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, + ACTIONS(6704), 1, sym_identifier, - STATE(3278), 2, + STATE(3318), 2, sym_line_comment, sym_block_comment, - [91418] = 4, + [92343] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, + ACTIONS(6706), 1, anon_sym_SEMI, - STATE(3279), 2, + STATE(3319), 2, sym_line_comment, sym_block_comment, - [91432] = 4, + [92357] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3935), 1, - anon_sym_COLON_COLON, - STATE(3280), 2, + ACTIONS(5140), 1, + anon_sym_SEMI, + STATE(3320), 2, sym_line_comment, sym_block_comment, - [91446] = 4, + [92371] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6585), 1, - anon_sym_SEMI, - STATE(3281), 2, + ACTIONS(6708), 1, + anon_sym_RPAREN, + STATE(3321), 2, sym_line_comment, sym_block_comment, - [91460] = 4, + [92385] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6479), 1, + ACTIONS(5138), 1, anon_sym_SEMI, - STATE(3282), 2, + STATE(3322), 2, sym_line_comment, sym_block_comment, - [91474] = 4, + [92399] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6587), 1, - anon_sym_SEMI, - STATE(3283), 2, + ACTIONS(5791), 1, + anon_sym_RBRACK, + STATE(3323), 2, sym_line_comment, sym_block_comment, - [91488] = 4, + [92413] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, - anon_sym_EQ_GT, - STATE(3284), 2, + ACTIONS(5773), 1, + anon_sym_RBRACK, + STATE(3324), 2, sym_line_comment, sym_block_comment, - [91502] = 4, + [92427] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6591), 1, - anon_sym_EQ_GT, - STATE(3285), 2, + ACTIONS(5779), 1, + anon_sym_RPAREN, + STATE(3325), 2, sym_line_comment, sym_block_comment, - [91516] = 4, + [92441] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6593), 1, - anon_sym_EQ_GT, - STATE(3286), 2, + ACTIONS(6710), 1, + anon_sym_SEMI, + STATE(3326), 2, sym_line_comment, sym_block_comment, - [91530] = 4, + [92455] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3638), 1, - anon_sym_COLON_COLON, - STATE(3287), 2, + ACTIONS(5769), 1, + anon_sym_RPAREN, + STATE(3327), 2, sym_line_comment, sym_block_comment, - [91544] = 4, + [92469] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6595), 1, - anon_sym_EQ_GT, - STATE(3288), 2, + ACTIONS(6712), 1, + sym_identifier, + STATE(3328), 2, sym_line_comment, sym_block_comment, - [91558] = 4, + [92483] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6597), 1, + ACTIONS(5886), 1, anon_sym_RBRACE, - STATE(3289), 2, + STATE(3329), 2, sym_line_comment, sym_block_comment, - [91572] = 4, + [92497] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6599), 1, + ACTIONS(6714), 1, sym_identifier, - STATE(3290), 2, + STATE(3330), 2, sym_line_comment, sym_block_comment, - [91586] = 4, + [92511] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5643), 1, - anon_sym_RPAREN, - STATE(3291), 2, + ACTIONS(6716), 1, + anon_sym_COLON, + STATE(3331), 2, sym_line_comment, sym_block_comment, - [91600] = 4, + [92525] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3660), 1, - anon_sym_COLON_COLON, - STATE(3292), 2, + ACTIONS(6718), 1, + anon_sym_SEMI, + STATE(3332), 2, sym_line_comment, sym_block_comment, - [91614] = 4, + [92539] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6601), 1, + ACTIONS(6720), 1, anon_sym_COLON_COLON, - STATE(3293), 2, + STATE(3333), 2, sym_line_comment, sym_block_comment, - [91628] = 4, + [92553] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, + ACTIONS(6722), 1, anon_sym_fn, - STATE(3294), 2, + STATE(3334), 2, sym_line_comment, sym_block_comment, - [91642] = 4, + [92567] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5475), 1, + ACTIONS(5783), 1, anon_sym_LBRACE, - STATE(3295), 2, + STATE(3335), 2, + sym_line_comment, + sym_block_comment, + [92581] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(6724), 1, + anon_sym_fn, + STATE(3336), 2, sym_line_comment, sym_block_comment, - [91656] = 4, + [92595] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(6726), 1, anon_sym_COLON_COLON, - STATE(3296), 2, + STATE(3337), 2, sym_line_comment, sym_block_comment, - [91670] = 4, + [92609] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6473), 1, - anon_sym_SEMI, - STATE(3297), 2, + ACTIONS(6728), 1, + sym_identifier, + STATE(3338), 2, sym_line_comment, sym_block_comment, - [91684] = 4, + [92623] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5263), 1, - anon_sym_RPAREN, - STATE(3298), 2, + ACTIONS(6730), 1, + sym_identifier, + STATE(3339), 2, sym_line_comment, sym_block_comment, - [91698] = 4, + [92637] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5676), 1, + ACTIONS(6732), 1, anon_sym_RBRACK, - STATE(3299), 2, + STATE(3340), 2, sym_line_comment, sym_block_comment, - [91712] = 4, + [92651] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6607), 1, - anon_sym_SEMI, - STATE(3300), 2, + ACTIONS(5912), 1, + anon_sym_RBRACE, + STATE(3341), 2, sym_line_comment, sym_block_comment, - [91726] = 4, + [92665] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6609), 1, - anon_sym_SEMI, - STATE(3301), 2, + ACTIONS(6734), 1, + anon_sym_COLON, + STATE(3342), 2, sym_line_comment, sym_block_comment, - [91740] = 4, + [92679] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3006), 1, - anon_sym_PLUS, - STATE(3302), 2, + ACTIONS(6736), 1, + anon_sym_COLON_COLON, + STATE(3343), 2, sym_line_comment, sym_block_comment, - [91754] = 4, + [92693] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5924), 1, - anon_sym_GT, - STATE(3303), 2, + ACTIONS(6738), 1, + anon_sym_SEMI, + STATE(3344), 2, sym_line_comment, sym_block_comment, - [91768] = 4, + [92707] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6611), 1, - anon_sym_RBRACE, - STATE(3304), 2, + ACTIONS(4665), 1, + anon_sym_COLON_COLON, + STATE(3345), 2, sym_line_comment, sym_block_comment, - [91782] = 4, + [92721] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5672), 1, + ACTIONS(5319), 1, anon_sym_RPAREN, - STATE(3305), 2, + STATE(3346), 2, sym_line_comment, sym_block_comment, - [91796] = 4, + [92735] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 1, - sym_identifier, - STATE(3306), 2, + ACTIONS(4891), 1, + anon_sym_COLON_COLON, + STATE(3347), 2, sym_line_comment, sym_block_comment, - [91810] = 4, + [92749] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6615), 1, - anon_sym_fn, - STATE(3307), 2, + ACTIONS(5738), 1, + anon_sym_LBRACE, + STATE(3348), 2, sym_line_comment, sym_block_comment, - [91824] = 4, + [92763] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6617), 1, + ACTIONS(6740), 1, anon_sym_COLON, - STATE(3308), 2, + STATE(3349), 2, sym_line_comment, sym_block_comment, - [91838] = 4, + [92777] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6619), 1, - anon_sym_SEMI, - STATE(3309), 2, + ACTIONS(4858), 1, + anon_sym_COLON_COLON, + STATE(3350), 2, sym_line_comment, sym_block_comment, - [91852] = 4, + [92791] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5916), 1, - anon_sym_RBRACE, - STATE(3310), 2, + ACTIONS(5734), 1, + anon_sym_RPAREN, + STATE(3351), 2, sym_line_comment, sym_block_comment, - [91866] = 4, + [92805] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6621), 1, + ACTIONS(6742), 1, sym_identifier, - STATE(3311), 2, + STATE(3352), 2, sym_line_comment, sym_block_comment, - [91880] = 4, + [92819] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6623), 1, + ACTIONS(6744), 1, sym_identifier, - STATE(3312), 2, + STATE(3353), 2, sym_line_comment, sym_block_comment, - [91894] = 4, + [92833] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - anon_sym_SEMI, - STATE(3313), 2, + ACTIONS(5966), 1, + anon_sym_RBRACE, + STATE(3354), 2, sym_line_comment, sym_block_comment, - [91908] = 4, + [92847] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6627), 1, + ACTIONS(6746), 1, anon_sym_RBRACK, - STATE(3314), 2, + STATE(3355), 2, sym_line_comment, sym_block_comment, - [91922] = 4, + [92861] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6629), 1, - sym_identifier, - STATE(3315), 2, + ACTIONS(5730), 1, + anon_sym_RPAREN, + STATE(3356), 2, sym_line_comment, sym_block_comment, - [91936] = 4, + [92875] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, + ACTIONS(6748), 1, sym_identifier, - STATE(3316), 2, + STATE(3357), 2, sym_line_comment, sym_block_comment, - [91950] = 4, + [92889] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - anon_sym_LPAREN, - STATE(3317), 2, + ACTIONS(6750), 1, + anon_sym_SEMI, + STATE(3358), 2, sym_line_comment, sym_block_comment, - [91964] = 4, + [92903] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6635), 1, - anon_sym_SEMI, - STATE(3318), 2, + ACTIONS(676), 1, + anon_sym_RBRACK, + STATE(3359), 2, sym_line_comment, sym_block_comment, - [91978] = 4, + [92917] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 1, + ACTIONS(6752), 1, sym_identifier, - STATE(3319), 2, + STATE(3360), 2, sym_line_comment, sym_block_comment, - [91992] = 4, + [92931] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6639), 1, - sym_identifier, - STATE(3320), 2, + ACTIONS(6754), 1, + anon_sym_RBRACK, + STATE(3361), 2, sym_line_comment, sym_block_comment, - [92006] = 4, + [92945] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6641), 1, - anon_sym_RBRACE, - STATE(3321), 2, + ACTIONS(4040), 1, + anon_sym_RPAREN, + STATE(3362), 2, sym_line_comment, sym_block_comment, - [92020] = 4, + [92959] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6643), 1, - sym_identifier, - STATE(3322), 2, + ACTIONS(6756), 1, + anon_sym_RPAREN, + STATE(3363), 2, sym_line_comment, sym_block_comment, - [92034] = 4, + [92973] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6645), 1, - anon_sym_SEMI, - STATE(3323), 2, + ACTIONS(6758), 1, + anon_sym_STAR_SLASH, + STATE(3364), 2, sym_line_comment, sym_block_comment, - [92048] = 4, + [92987] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6647), 1, - anon_sym_LT, - STATE(3324), 2, + ACTIONS(6760), 1, + anon_sym_SEMI, + STATE(3365), 2, sym_line_comment, sym_block_comment, - [92062] = 4, + [93001] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6649), 1, - anon_sym_RBRACE, - STATE(3325), 2, + ACTIONS(6762), 1, + sym_identifier, + STATE(3366), 2, sym_line_comment, sym_block_comment, - [92076] = 4, + [93015] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6651), 1, - anon_sym_SEMI, - STATE(3326), 2, + ACTIONS(6764), 1, + sym_identifier, + STATE(3367), 2, sym_line_comment, sym_block_comment, - [92090] = 4, + [93029] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6653), 1, + ACTIONS(5974), 1, anon_sym_RBRACE, - STATE(3327), 2, + STATE(3368), 2, sym_line_comment, sym_block_comment, - [92104] = 4, + [93043] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6655), 1, - sym_self, - STATE(3328), 2, + ACTIONS(6766), 1, + sym_identifier, + STATE(3369), 2, sym_line_comment, sym_block_comment, - [92118] = 4, + [93057] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6657), 1, - anon_sym_SEMI, - STATE(3329), 2, + ACTIONS(658), 1, + anon_sym_RBRACK, + STATE(3370), 2, sym_line_comment, sym_block_comment, - [92132] = 4, + [93071] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6659), 1, - anon_sym_SEMI, - STATE(3330), 2, + ACTIONS(628), 1, + anon_sym_RBRACK, + STATE(3371), 2, sym_line_comment, sym_block_comment, - [92146] = 4, + [93085] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6661), 1, + ACTIONS(6768), 1, anon_sym_SEMI, - STATE(3331), 2, + STATE(3372), 2, sym_line_comment, sym_block_comment, - [92160] = 4, + [93099] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6663), 1, - sym_identifier, - STATE(3332), 2, + ACTIONS(6000), 1, + anon_sym_RBRACE, + STATE(3373), 2, sym_line_comment, sym_block_comment, - [92174] = 4, + [93113] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6665), 1, - anon_sym_RPAREN, - STATE(3333), 2, + ACTIONS(6770), 1, + anon_sym_fn, + STATE(3374), 2, sym_line_comment, sym_block_comment, - [92188] = 4, + [93127] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6667), 1, - anon_sym_SEMI, - STATE(3334), 2, + ACTIONS(6772), 1, + sym_identifier, + STATE(3375), 2, sym_line_comment, sym_block_comment, - [92202] = 4, + [93141] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6669), 1, - anon_sym_SEMI, - STATE(3335), 2, + ACTIONS(6774), 1, + sym_identifier, + STATE(3376), 2, sym_line_comment, sym_block_comment, - [92216] = 4, + [93155] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6671), 1, - anon_sym_COLON_COLON, - STATE(3336), 2, + ACTIONS(6776), 1, + sym_identifier, + STATE(3377), 2, sym_line_comment, sym_block_comment, - [92230] = 4, + [93169] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5015), 1, - anon_sym_SEMI, - STATE(3337), 2, + ACTIONS(6778), 1, + anon_sym_RBRACK, + STATE(3378), 2, sym_line_comment, sym_block_comment, - [92244] = 4, + [93183] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6673), 1, - anon_sym_LBRACK, - STATE(3338), 2, + ACTIONS(6780), 1, + anon_sym_SEMI, + STATE(3379), 2, sym_line_comment, sym_block_comment, - [92258] = 4, + [93197] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6675), 1, - anon_sym_SEMI, - STATE(3339), 2, + ACTIONS(6782), 1, + sym_identifier, + STATE(3380), 2, sym_line_comment, sym_block_comment, - [92272] = 4, + [93211] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6677), 1, - anon_sym_RBRACK, - STATE(3340), 2, + ACTIONS(6784), 1, + sym_identifier, + STATE(3381), 2, sym_line_comment, sym_block_comment, - [92286] = 4, + [93225] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(529), 1, - anon_sym_RBRACK, - STATE(3341), 2, + ACTIONS(6786), 1, + anon_sym_EQ_GT, + STATE(3382), 2, sym_line_comment, sym_block_comment, - [92300] = 4, + [93239] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6679), 1, - anon_sym_SEMI, - STATE(3342), 2, + ACTIONS(4513), 1, + anon_sym_COLON_COLON, + STATE(3383), 2, sym_line_comment, sym_block_comment, - [92314] = 4, + [93253] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6681), 1, + ACTIONS(6788), 1, sym_identifier, - STATE(3343), 2, + STATE(3384), 2, sym_line_comment, sym_block_comment, - [92328] = 4, + [93267] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6683), 1, - sym_identifier, - STATE(3344), 2, + ACTIONS(6790), 1, + anon_sym_EQ_GT, + STATE(3385), 2, sym_line_comment, sym_block_comment, - [92342] = 4, + [93281] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(648), 1, - anon_sym_RBRACK, - STATE(3345), 2, + ACTIONS(6792), 1, + anon_sym_RBRACE, + STATE(3386), 2, sym_line_comment, sym_block_comment, - [92356] = 4, + [93295] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6685), 1, - sym_identifier, - STATE(3346), 2, + ACTIONS(6794), 1, + anon_sym_SEMI, + STATE(3387), 2, sym_line_comment, sym_block_comment, - [92370] = 4, + [93309] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6687), 1, - anon_sym_COLON, - STATE(3347), 2, + ACTIONS(5086), 1, + anon_sym_SEMI, + STATE(3388), 2, sym_line_comment, sym_block_comment, - [92384] = 4, + [93323] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6689), 1, - anon_sym_RBRACK, - STATE(3348), 2, + ACTIONS(6796), 1, + anon_sym_RBRACE, + STATE(3389), 2, sym_line_comment, sym_block_comment, - [92398] = 4, + [93337] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6691), 1, - sym_identifier, - STATE(3349), 2, + ACTIONS(6798), 1, + anon_sym_RBRACE, + STATE(3390), 2, sym_line_comment, sym_block_comment, - [92412] = 4, + [93351] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6176), 1, + ACTIONS(6800), 1, anon_sym_RBRACE, - STATE(3350), 2, + STATE(3391), 2, sym_line_comment, sym_block_comment, - [92426] = 4, + [93365] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6693), 1, - sym_identifier, - STATE(3351), 2, + ACTIONS(6802), 1, + anon_sym_RBRACK, + STATE(3392), 2, sym_line_comment, sym_block_comment, - [92440] = 4, + [93379] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5888), 1, - anon_sym_RBRACE, - STATE(3352), 2, + ACTIONS(6804), 1, + anon_sym_SEMI, + STATE(3393), 2, sym_line_comment, sym_block_comment, - [92454] = 4, + [93393] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6695), 1, - anon_sym_RPAREN, - STATE(3353), 2, + ACTIONS(6806), 1, + anon_sym_EQ_GT, + STATE(3394), 2, sym_line_comment, sym_block_comment, - [92468] = 4, + [93407] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6697), 1, + ACTIONS(6808), 1, sym_identifier, - STATE(3354), 2, + STATE(3395), 2, sym_line_comment, sym_block_comment, - [92482] = 4, + [93421] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6699), 1, - sym_identifier, - STATE(3355), 2, + ACTIONS(6810), 1, + anon_sym_EQ_GT, + STATE(3396), 2, sym_line_comment, sym_block_comment, - [92496] = 4, + [93435] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6701), 1, - anon_sym_SEMI, - STATE(3356), 2, + ACTIONS(6812), 1, + anon_sym_COLON_COLON, + STATE(3397), 2, sym_line_comment, sym_block_comment, - [92510] = 4, + [93449] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6703), 1, - anon_sym_LBRACK, - STATE(3357), 2, + ACTIONS(6814), 1, + anon_sym_SEMI, + STATE(3398), 2, sym_line_comment, sym_block_comment, - [92524] = 4, + [93463] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6705), 1, - sym_identifier, - STATE(3358), 2, + ACTIONS(6816), 1, + anon_sym_RBRACK, + STATE(3399), 2, sym_line_comment, sym_block_comment, - [92538] = 4, + [93477] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6707), 1, - anon_sym_RPAREN, - STATE(3359), 2, + ACTIONS(6818), 1, + anon_sym_RBRACK, + STATE(3400), 2, sym_line_comment, sym_block_comment, - [92552] = 4, + [93491] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6709), 1, + ACTIONS(6820), 1, anon_sym_SEMI, - STATE(3360), 2, + STATE(3401), 2, sym_line_comment, sym_block_comment, - [92566] = 4, + [93505] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5870), 1, + ACTIONS(6066), 1, anon_sym_RBRACE, - STATE(3361), 2, + STATE(3402), 2, sym_line_comment, sym_block_comment, - [92580] = 4, + [93519] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3020), 1, - anon_sym_PLUS, - STATE(3362), 2, + ACTIONS(6822), 1, + sym_identifier, + STATE(3403), 2, + sym_line_comment, + sym_block_comment, + [93533] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(6824), 1, + sym_identifier, + STATE(3404), 2, + sym_line_comment, + sym_block_comment, + [93547] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(6826), 1, + anon_sym_COLON, + STATE(3405), 2, sym_line_comment, sym_block_comment, - [92594] = 4, + [93561] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6711), 1, + ACTIONS(6828), 1, anon_sym_SEMI, - STATE(3363), 2, + STATE(3406), 2, sym_line_comment, sym_block_comment, - [92608] = 4, + [93575] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6713), 1, - anon_sym_STAR_SLASH, - STATE(3364), 2, + ACTIONS(6830), 1, + sym_identifier, + STATE(3407), 2, sym_line_comment, sym_block_comment, - [92622] = 4, + [93589] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 1, - anon_sym_RBRACE, - STATE(3365), 2, + ACTIONS(6832), 1, + anon_sym_RBRACK, + STATE(3408), 2, sym_line_comment, sym_block_comment, - [92636] = 4, + [93603] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6717), 1, + ACTIONS(6834), 1, sym_identifier, - STATE(3366), 2, + STATE(3409), 2, sym_line_comment, sym_block_comment, - [92650] = 4, + [93617] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6719), 1, - sym__line_doc_content, - STATE(3367), 2, + ACTIONS(5475), 1, + anon_sym_RPAREN, + STATE(3410), 2, sym_line_comment, sym_block_comment, - [92664] = 4, + [93631] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6721), 1, - sym_identifier, - STATE(3368), 2, + ACTIONS(6836), 1, + anon_sym_SEMI, + STATE(3411), 2, sym_line_comment, sym_block_comment, - [92678] = 4, + [93645] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(698), 1, - anon_sym_RBRACK, - STATE(3369), 2, + ACTIONS(6838), 1, + anon_sym_SEMI, + STATE(3412), 2, sym_line_comment, sym_block_comment, - [92692] = 4, + [93659] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6723), 1, - sym__line_doc_content, - STATE(3370), 2, + ACTIONS(6840), 1, + sym_identifier, + STATE(3413), 2, sym_line_comment, sym_block_comment, - [92706] = 4, + [93673] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6725), 1, - anon_sym_RPAREN, - STATE(3371), 2, + ACTIONS(3048), 1, + anon_sym_PLUS, + STATE(3414), 2, sym_line_comment, sym_block_comment, - [92720] = 4, + [93687] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6727), 1, - sym__line_doc_content, - STATE(3372), 2, + ACTIONS(6516), 1, + anon_sym_SEMI, + STATE(3415), 2, sym_line_comment, sym_block_comment, - [92734] = 4, + [93701] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6729), 1, + ACTIONS(6842), 1, anon_sym_SEMI, - STATE(3373), 2, + STATE(3416), 2, sym_line_comment, sym_block_comment, - [92748] = 4, + [93715] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5820), 1, - anon_sym_RBRACE, - STATE(3374), 2, + ACTIONS(6568), 1, + anon_sym_SEMI, + STATE(3417), 2, sym_line_comment, sym_block_comment, - [92762] = 4, + [93729] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6731), 1, - anon_sym_SEMI, - STATE(3375), 2, + ACTIONS(6844), 1, + sym_identifier, + STATE(3418), 2, sym_line_comment, sym_block_comment, - [92776] = 4, - ACTIONS(3), 1, + [93743] = 4, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6733), 1, - aux_sym_line_comment_token2, - STATE(3376), 2, + ACTIONS(6846), 1, + sym_identifier, + STATE(3419), 2, sym_line_comment, sym_block_comment, - [92790] = 4, + [93757] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6735), 1, - anon_sym_LPAREN, - STATE(3377), 2, + ACTIONS(6564), 1, + anon_sym_SEMI, + STATE(3420), 2, sym_line_comment, sym_block_comment, - [92804] = 4, + [93771] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6737), 1, + ACTIONS(6848), 1, anon_sym_COLON, - STATE(3378), 2, + STATE(3421), 2, sym_line_comment, sym_block_comment, - [92818] = 4, + [93785] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6739), 1, - anon_sym_SEMI, - STATE(3379), 2, + ACTIONS(6850), 1, + anon_sym_COLON, + STATE(3422), 2, sym_line_comment, sym_block_comment, - [92832] = 4, + [93799] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6741), 1, - anon_sym_COLON_COLON, - STATE(3380), 2, + ACTIONS(6852), 1, + anon_sym_RPAREN, + STATE(3423), 2, sym_line_comment, sym_block_comment, - [92846] = 4, + [93813] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, - anon_sym_RBRACE, - STATE(3381), 2, + ACTIONS(6854), 1, + sym_identifier, + STATE(3424), 2, sym_line_comment, sym_block_comment, - [92860] = 4, + [93827] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5840), 1, + ACTIONS(6856), 1, anon_sym_RBRACE, - STATE(3382), 2, + STATE(3425), 2, sym_line_comment, sym_block_comment, - [92874] = 4, + [93841] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6457), 1, - anon_sym_COLON_COLON, - STATE(3383), 2, + ACTIONS(6858), 1, + anon_sym_SEMI, + STATE(3426), 2, sym_line_comment, sym_block_comment, - [92888] = 4, + [93855] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5700), 1, - anon_sym_RPAREN, - STATE(3384), 2, + ACTIONS(6860), 1, + anon_sym_LPAREN, + STATE(3427), 2, sym_line_comment, sym_block_comment, - [92902] = 4, + [93869] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6743), 1, - anon_sym_COLON_COLON, - STATE(3385), 2, + ACTIONS(6862), 1, + anon_sym_SEMI, + STATE(3428), 2, sym_line_comment, sym_block_comment, - [92916] = 4, + [93883] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6745), 1, - sym_identifier, - STATE(3386), 2, + ACTIONS(6864), 1, + anon_sym_COLON, + STATE(3429), 2, sym_line_comment, sym_block_comment, - [92930] = 4, + [93897] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6747), 1, - sym_identifier, - STATE(3387), 2, + ACTIONS(6866), 1, + anon_sym_SEMI, + STATE(3430), 2, sym_line_comment, sym_block_comment, - [92944] = 4, + [93911] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6749), 1, - ts_builtin_sym_end, - STATE(3388), 2, + ACTIONS(5581), 1, + anon_sym_RPAREN, + STATE(3431), 2, sym_line_comment, sym_block_comment, - [92958] = 4, + [93925] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4747), 1, + ACTIONS(5557), 1, anon_sym_COLON_COLON, - STATE(3389), 2, + STATE(3432), 2, sym_line_comment, sym_block_comment, - [92972] = 4, + [93939] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3945), 1, - anon_sym_COLON_COLON, - STATE(3390), 2, + ACTIONS(6868), 1, + sym_self, + STATE(3433), 2, sym_line_comment, sym_block_comment, - [92986] = 4, + [93953] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6751), 1, - anon_sym_COLON_COLON, - STATE(3391), 2, + ACTIONS(6870), 1, + anon_sym_SEMI, + STATE(3434), 2, sym_line_comment, sym_block_comment, - [93000] = 4, + [93967] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3697), 1, - anon_sym_COLON_COLON, - STATE(3392), 2, + ACTIONS(5356), 1, + anon_sym_RPAREN, + STATE(3435), 2, sym_line_comment, sym_block_comment, - [93014] = 4, + [93981] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6753), 1, - anon_sym_SEMI, - STATE(3393), 2, + ACTIONS(6872), 1, + anon_sym_COLON_COLON, + STATE(3436), 2, sym_line_comment, sym_block_comment, - [93028] = 4, + [93995] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6755), 1, - anon_sym_RBRACE, - STATE(3394), 2, + ACTIONS(6874), 1, + anon_sym_fn, + STATE(3437), 2, sym_line_comment, sym_block_comment, - [93042] = 4, + [94009] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6757), 1, + ACTIONS(6876), 1, anon_sym_COLON_COLON, - STATE(3395), 2, + STATE(3438), 2, sym_line_comment, sym_block_comment, - [93056] = 4, + [94023] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6759), 1, - anon_sym_fn, - STATE(3396), 2, + ACTIONS(6878), 1, + anon_sym_COLON_COLON, + STATE(3439), 2, sym_line_comment, sym_block_comment, - [93070] = 4, + [94037] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, - anon_sym_SEMI, - STATE(3397), 2, + ACTIONS(6880), 1, + anon_sym_RBRACE, + STATE(3440), 2, sym_line_comment, sym_block_comment, - [93084] = 4, + [94051] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 1, - anon_sym_COLON_COLON, - STATE(3398), 2, + ACTIONS(3028), 1, + anon_sym_PLUS, + STATE(3441), 2, sym_line_comment, sym_block_comment, - [93098] = 4, + [94065] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6763), 1, + ACTIONS(6882), 1, anon_sym_SEMI, - STATE(3399), 2, + STATE(3442), 2, sym_line_comment, sym_block_comment, - [93112] = 4, + [94079] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5306), 1, - anon_sym_RPAREN, - STATE(3400), 2, + ACTIONS(6249), 1, + anon_sym_RBRACE, + STATE(3443), 2, sym_line_comment, sym_block_comment, - [93126] = 4, + [94093] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6765), 1, - sym_identifier, - STATE(3401), 2, + ACTIONS(5982), 1, + anon_sym_GT, + STATE(3444), 2, sym_line_comment, sym_block_comment, - [93140] = 4, + [94107] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6767), 1, - anon_sym_RPAREN, - STATE(3402), 2, + ACTIONS(6884), 1, + anon_sym_COLON_COLON, + STATE(3445), 2, sym_line_comment, sym_block_comment, - [93154] = 4, + [94121] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6769), 1, - anon_sym_COLON_COLON, - STATE(3403), 2, + ACTIONS(6886), 1, + sym_identifier, + STATE(3446), 2, sym_line_comment, sym_block_comment, - [93168] = 4, + [94135] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6771), 1, + ACTIONS(6888), 1, sym_identifier, - STATE(3404), 2, + STATE(3447), 2, sym_line_comment, sym_block_comment, - [93182] = 4, + [94149] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6773), 1, - sym_identifier, - STATE(3405), 2, + ACTIONS(6890), 1, + anon_sym_fn, + STATE(3448), 2, sym_line_comment, sym_block_comment, - [93196] = 4, + [94163] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6775), 1, - sym_identifier, - STATE(3406), 2, + ACTIONS(6892), 1, + anon_sym_SEMI, + STATE(3449), 2, sym_line_comment, sym_block_comment, - [93210] = 4, + [94177] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6777), 1, + ACTIONS(6894), 1, anon_sym_COLON_COLON, - STATE(3407), 2, + STATE(3450), 2, sym_line_comment, sym_block_comment, - [93224] = 4, + [94191] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6779), 1, + ACTIONS(6896), 1, anon_sym_fn, - STATE(3408), 2, + STATE(3451), 2, sym_line_comment, sym_block_comment, - [93238] = 4, + [94205] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6781), 1, + ACTIONS(6898), 1, anon_sym_LBRACE, - STATE(3409), 2, + STATE(3452), 2, sym_line_comment, sym_block_comment, - [93252] = 4, + [94219] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6209), 1, - anon_sym_RBRACE, - STATE(3410), 2, + ACTIONS(4497), 1, + anon_sym_COLON_COLON, + STATE(3453), 2, sym_line_comment, sym_block_comment, - [93266] = 4, + [94233] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6783), 1, - anon_sym_SEMI, - STATE(3411), 2, + ACTIONS(6900), 1, + anon_sym_RBRACE, + STATE(3454), 2, sym_line_comment, sym_block_comment, - [93280] = 4, + [94247] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5633), 1, - anon_sym_RBRACK, - STATE(3412), 2, + ACTIONS(6902), 1, + anon_sym_LT, + STATE(3455), 2, sym_line_comment, sym_block_comment, - [93294] = 4, + [94261] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5310), 1, - anon_sym_RPAREN, - STATE(3413), 2, + ACTIONS(6904), 1, + anon_sym_SEMI, + STATE(3456), 2, sym_line_comment, sym_block_comment, - [93308] = 4, + [94275] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6785), 1, - anon_sym_SEMI, - STATE(3414), 2, + ACTIONS(6906), 1, + sym_identifier, + STATE(3457), 2, sym_line_comment, sym_block_comment, - [93322] = 4, + [94289] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6787), 1, - anon_sym_SEMI, - STATE(3415), 2, + ACTIONS(4070), 1, + anon_sym_COLON_COLON, + STATE(3458), 2, sym_line_comment, sym_block_comment, - [93336] = 4, + [94303] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6789), 1, - sym_identifier, - STATE(3416), 2, + ACTIONS(6540), 1, + anon_sym_SEMI, + STATE(3459), 2, sym_line_comment, sym_block_comment, - [93350] = 4, + [94317] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6791), 1, - sym_identifier, - STATE(3417), 2, + ACTIONS(6908), 1, + anon_sym_LBRACK, + STATE(3460), 2, sym_line_comment, sym_block_comment, - [93364] = 4, + [94331] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6793), 1, - sym_identifier, - STATE(3418), 2, + ACTIONS(5455), 1, + anon_sym_RPAREN, + STATE(3461), 2, sym_line_comment, sym_block_comment, - [93378] = 4, + [94345] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6795), 1, + ACTIONS(507), 1, anon_sym_RBRACK, - STATE(3419), 2, + STATE(3462), 2, sym_line_comment, sym_block_comment, - [93392] = 4, + [94359] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6797), 1, - anon_sym_COLON, - STATE(3420), 2, + ACTIONS(6268), 1, + anon_sym_RBRACE, + STATE(3463), 2, sym_line_comment, sym_block_comment, - [93406] = 4, + [94373] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5517), 1, + ACTIONS(6910), 1, anon_sym_COLON_COLON, - STATE(3421), 2, + STATE(3464), 2, sym_line_comment, sym_block_comment, - [93420] = 4, + [94387] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6799), 1, - anon_sym_EQ_GT, - STATE(3422), 2, + ACTIONS(6912), 1, + anon_sym_SEMI, + STATE(3465), 2, sym_line_comment, sym_block_comment, - [93434] = 4, + [94401] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3308), 1, + ACTIONS(3423), 1, anon_sym_COLON_COLON, - STATE(3423), 2, + STATE(3466), 2, sym_line_comment, sym_block_comment, - [93448] = 4, + [94415] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6801), 1, + ACTIONS(6914), 1, anon_sym_COLON_COLON, - STATE(3424), 2, + STATE(3467), 2, sym_line_comment, sym_block_comment, - [93462] = 4, + [94429] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5726), 1, + ACTIONS(6282), 1, anon_sym_RBRACE, - STATE(3425), 2, + STATE(3468), 2, sym_line_comment, sym_block_comment, - [93476] = 4, + [94443] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6100), 1, - anon_sym_RBRACE, - STATE(3426), 2, + ACTIONS(3935), 1, + sym_identifier, + STATE(3469), 2, sym_line_comment, sym_block_comment, - [93490] = 4, + [94457] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6803), 1, - anon_sym_SEMI, - STATE(3427), 2, + ACTIONS(6916), 1, + anon_sym_RBRACK, + STATE(3470), 2, sym_line_comment, sym_block_comment, - [93504] = 4, + [94471] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6805), 1, - anon_sym_COLON, - STATE(3428), 2, + ACTIONS(6446), 1, + anon_sym_LBRACK, + STATE(3471), 2, sym_line_comment, sym_block_comment, - [93518] = 4, + [94485] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6807), 1, - anon_sym_LBRACE, - STATE(3429), 2, + ACTIONS(6918), 1, + anon_sym_SEMI, + STATE(3472), 2, sym_line_comment, sym_block_comment, - [93532] = 4, + [94499] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6809), 1, - sym_identifier, - STATE(3430), 2, + ACTIONS(6920), 1, + anon_sym_LBRACE, + STATE(3473), 2, sym_line_comment, sym_block_comment, - [93546] = 4, + [94513] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6811), 1, - sym_identifier, - STATE(3431), 2, + ACTIONS(6922), 1, + anon_sym_SEMI, + STATE(3474), 2, sym_line_comment, sym_block_comment, - [93560] = 4, + [94527] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3933), 1, - sym_identifier, - STATE(3432), 2, + ACTIONS(6924), 1, + anon_sym_EQ_GT, + STATE(3475), 2, sym_line_comment, sym_block_comment, - [93574] = 4, + [94541] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6813), 1, + ACTIONS(6926), 1, sym_identifier, - STATE(3433), 2, + STATE(3476), 2, sym_line_comment, sym_block_comment, - [93588] = 4, + [94555] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6815), 1, - anon_sym_SEMI, - STATE(3434), 2, + ACTIONS(6928), 1, + anon_sym_COLON, + STATE(3477), 2, sym_line_comment, sym_block_comment, - [93602] = 4, + [94569] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5081), 1, - anon_sym_COLON_COLON, - STATE(3435), 2, + ACTIONS(6930), 1, + anon_sym_STAR_SLASH, + STATE(3478), 2, sym_line_comment, sym_block_comment, - [93616] = 4, + [94583] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6817), 1, + ACTIONS(5074), 1, anon_sym_COLON_COLON, - STATE(3436), 2, - sym_line_comment, - sym_block_comment, - [93630] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(6819), 1, - anon_sym_LBRACE, - STATE(3437), 2, + STATE(3479), 2, sym_line_comment, sym_block_comment, - [93644] = 4, + [94597] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5569), 1, + ACTIONS(6932), 1, anon_sym_COLON_COLON, - STATE(3438), 2, + STATE(3480), 2, sym_line_comment, sym_block_comment, - [93658] = 4, + [94611] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6821), 1, - anon_sym_COLON_COLON, - STATE(3439), 2, + ACTIONS(6934), 1, + sym_identifier, + STATE(3481), 2, sym_line_comment, sym_block_comment, - [93672] = 4, + [94625] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5436), 1, + ACTIONS(6936), 1, anon_sym_LBRACE, - STATE(3440), 2, + STATE(3482), 2, sym_line_comment, sym_block_comment, - [93686] = 4, + [94639] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6823), 1, + ACTIONS(5684), 1, anon_sym_COLON_COLON, - STATE(3441), 2, + STATE(3483), 2, sym_line_comment, sym_block_comment, - [93700] = 4, + [94653] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6825), 1, + ACTIONS(6938), 1, anon_sym_COLON_COLON, - STATE(3442), 2, + STATE(3484), 2, sym_line_comment, sym_block_comment, - [93714] = 4, + [94667] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5428), 1, + ACTIONS(5641), 1, anon_sym_LBRACE, - STATE(3443), 2, + STATE(3485), 2, sym_line_comment, sym_block_comment, - [93728] = 4, + [94681] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4997), 1, + ACTIONS(6940), 1, anon_sym_COLON_COLON, - STATE(3444), 2, + STATE(3486), 2, sym_line_comment, sym_block_comment, - [93742] = 4, + [94695] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6827), 1, - anon_sym_COLON_COLON, - STATE(3445), 2, + ACTIONS(5622), 1, + anon_sym_LBRACE, + STATE(3487), 2, sym_line_comment, sym_block_comment, - [93756] = 4, + [94709] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4991), 1, + ACTIONS(5134), 1, anon_sym_COLON_COLON, - STATE(3446), 2, + STATE(3488), 2, sym_line_comment, sym_block_comment, - [93770] = 4, + [94723] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6829), 1, + ACTIONS(5120), 1, anon_sym_COLON_COLON, - STATE(3447), 2, + STATE(3489), 2, sym_line_comment, sym_block_comment, - [93784] = 4, + [94737] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3971), 1, + ACTIONS(4026), 1, anon_sym_COLON_COLON, - STATE(3448), 2, + STATE(3490), 2, sym_line_comment, sym_block_comment, - [93798] = 4, + [94751] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6831), 1, + ACTIONS(6942), 1, anon_sym_COLON_COLON, - STATE(3449), 2, + STATE(3491), 2, sym_line_comment, sym_block_comment, - [93812] = 4, + [94765] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6833), 1, - anon_sym_COLON_COLON, - STATE(3450), 2, + ACTIONS(6944), 1, + sym_identifier, + STATE(3492), 2, sym_line_comment, sym_block_comment, - [93826] = 4, + [94779] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6835), 1, - anon_sym_COLON_COLON, - STATE(3451), 2, + ACTIONS(6946), 1, + anon_sym_LPAREN, + STATE(3493), 2, sym_line_comment, sym_block_comment, - [93840] = 4, + [94793] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6837), 1, - anon_sym_SEMI, - STATE(3452), 2, + ACTIONS(1460), 1, + anon_sym_EQ_GT, + STATE(3494), 2, sym_line_comment, sym_block_comment, - [93854] = 4, + [94807] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1488), 1, - anon_sym_EQ_GT, - STATE(3453), 2, + ACTIONS(6948), 1, + anon_sym_SEMI, + STATE(3495), 2, sym_line_comment, sym_block_comment, - [93868] = 4, + [94821] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6839), 1, - anon_sym_fn, - STATE(3454), 2, + ACTIONS(6950), 1, + anon_sym_COLON, + STATE(3496), 2, sym_line_comment, sym_block_comment, - [93882] = 4, + [94835] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6841), 1, - sym_identifier, - STATE(3455), 2, + ACTIONS(6952), 1, + anon_sym_LBRACK, + STATE(3497), 2, sym_line_comment, sym_block_comment, - [93896] = 4, + [94849] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6843), 1, - anon_sym_COLON, - STATE(3456), 2, + ACTIONS(4885), 1, + anon_sym_COLON_COLON, + STATE(3498), 2, sym_line_comment, sym_block_comment, - [93910] = 4, + [94863] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6845), 1, + ACTIONS(6954), 1, anon_sym_LBRACK, - STATE(3457), 2, + STATE(3499), 2, sym_line_comment, sym_block_comment, - [93924] = 4, + [94877] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6847), 1, - sym_identifier, - STATE(3458), 2, + ACTIONS(6956), 1, + anon_sym_COLON, + STATE(3500), 2, sym_line_comment, sym_block_comment, - [93938] = 4, + [94891] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6849), 1, - anon_sym_LBRACK, - STATE(3459), 2, + ACTIONS(6958), 1, + anon_sym_COLON, + STATE(3501), 2, sym_line_comment, sym_block_comment, - [93952] = 4, + [94905] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, - anon_sym_COLON, - STATE(3460), 2, + ACTIONS(6960), 1, + anon_sym_SEMI, + STATE(3502), 2, sym_line_comment, sym_block_comment, - [93966] = 4, + [94919] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6853), 1, - anon_sym_COLON, - STATE(3461), 2, + ACTIONS(6962), 1, + sym__line_doc_content, + STATE(3503), 2, sym_line_comment, sym_block_comment, - [93980] = 4, + [94933] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6855), 1, - anon_sym_SEMI, - STATE(3462), 2, + ACTIONS(6964), 1, + sym__line_doc_content, + STATE(3504), 2, sym_line_comment, sym_block_comment, - [93994] = 4, + [94947] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6857), 1, - anon_sym_SEMI, - STATE(3463), 2, + ACTIONS(6966), 1, + sym__line_doc_content, + STATE(3505), 2, sym_line_comment, sym_block_comment, - [94008] = 4, + [94961] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6859), 1, - sym_identifier, - STATE(3464), 2, + ACTIONS(6968), 1, + anon_sym_COLON, + STATE(3506), 2, sym_line_comment, sym_block_comment, - [94022] = 4, + [94975] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4532), 1, - anon_sym_COLON_COLON, - STATE(3465), 2, + ACTIONS(6970), 1, + anon_sym_RPAREN, + STATE(3507), 2, sym_line_comment, sym_block_comment, - [94036] = 4, + [94989] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6861), 1, - anon_sym_COLON, - STATE(3466), 2, + ACTIONS(6972), 1, + sym_identifier, + STATE(3508), 2, sym_line_comment, sym_block_comment, - [94050] = 4, - ACTIONS(101), 1, + [95003] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6863), 1, - anon_sym_RBRACK, - STATE(3467), 2, + ACTIONS(6974), 1, + aux_sym_line_comment_token2, + STATE(3509), 2, sym_line_comment, sym_block_comment, - [94064] = 4, + [95017] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4757), 1, - anon_sym_COLON_COLON, - STATE(3468), 2, + ACTIONS(6976), 1, + anon_sym_RBRACK, + STATE(3510), 2, sym_line_comment, sym_block_comment, - [94078] = 4, + [95031] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6865), 1, - anon_sym_SEMI, - STATE(3469), 2, + ACTIONS(6978), 1, + anon_sym_EQ, + STATE(3511), 2, sym_line_comment, sym_block_comment, - [94092] = 4, + [95045] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6867), 1, + ACTIONS(6980), 1, anon_sym_SEMI, - STATE(3470), 2, + STATE(3512), 2, sym_line_comment, sym_block_comment, - [94106] = 4, + [95059] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6869), 1, + ACTIONS(6982), 1, anon_sym_COLON, - STATE(3471), 2, + STATE(3513), 2, sym_line_comment, sym_block_comment, - [94120] = 4, + [95073] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6871), 1, - anon_sym_RBRACK, - STATE(3472), 2, + ACTIONS(6984), 1, + sym_identifier, + STATE(3514), 2, sym_line_comment, sym_block_comment, - [94134] = 4, + [95087] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6873), 1, - anon_sym_SEMI, - STATE(3473), 2, + ACTIONS(6986), 1, + anon_sym_COLON, + STATE(3515), 2, sym_line_comment, sym_block_comment, - [94148] = 4, + [95101] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6875), 1, - anon_sym_SEMI, - STATE(3474), 2, + ACTIONS(6988), 1, + anon_sym_COLON, + STATE(3516), 2, sym_line_comment, sym_block_comment, - [94162] = 4, + [95115] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5005), 1, - anon_sym_SEMI, - STATE(3475), 2, + ACTIONS(6424), 1, + anon_sym_COLON_COLON, + STATE(3517), 2, sym_line_comment, sym_block_comment, - [94176] = 4, + [95129] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6877), 1, - anon_sym_COLON, - STATE(3476), 2, + ACTIONS(4450), 1, + anon_sym_fn, + STATE(3518), 2, sym_line_comment, sym_block_comment, - [94190] = 4, + [95143] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6879), 1, - sym_identifier, - STATE(3477), 2, + ACTIONS(6990), 1, + ts_builtin_sym_end, + STATE(3519), 2, sym_line_comment, sym_block_comment, - [94204] = 4, + [95157] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6881), 1, - anon_sym_EQ_GT, - STATE(3478), 2, + ACTIONS(6992), 1, + anon_sym_COLON, + STATE(3520), 2, sym_line_comment, sym_block_comment, - [94218] = 4, + [95171] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6883), 1, + ACTIONS(6994), 1, anon_sym_SEMI, - STATE(3479), 2, + STATE(3521), 2, sym_line_comment, sym_block_comment, - [94232] = 4, + [95185] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6885), 1, + ACTIONS(6996), 1, anon_sym_COLON, - STATE(3480), 2, + STATE(3522), 2, sym_line_comment, sym_block_comment, - [94246] = 4, + [95199] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6887), 1, + ACTIONS(6998), 1, anon_sym_SEMI, - STATE(3481), 2, + STATE(3523), 2, sym_line_comment, sym_block_comment, - [94260] = 4, + [95213] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6889), 1, - anon_sym_COLON, - STATE(3482), 2, + ACTIONS(7000), 1, + sym_identifier, + STATE(3524), 2, sym_line_comment, sym_block_comment, - [94274] = 4, + [95227] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4025), 1, - anon_sym_RPAREN, - STATE(3483), 2, + ACTIONS(7002), 1, + anon_sym_SEMI, + STATE(3525), 2, sym_line_comment, sym_block_comment, - [94288] = 4, + [95241] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3056), 1, - anon_sym_PLUS, - STATE(3484), 2, + ACTIONS(7004), 1, + anon_sym_COLON, + STATE(3526), 2, sym_line_comment, sym_block_comment, - [94302] = 4, + [95255] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6891), 1, - anon_sym_RBRACE, - STATE(3485), 2, + ACTIONS(7006), 1, + anon_sym_SEMI, + STATE(3527), 2, sym_line_comment, sym_block_comment, - [94316] = 4, + [95269] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6893), 1, - anon_sym_COLON, - STATE(3486), 2, + ACTIONS(7008), 1, + anon_sym_SEMI, + STATE(3528), 2, sym_line_comment, sym_block_comment, - [94330] = 4, + [95283] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6895), 1, - anon_sym_SEMI, - STATE(3487), 2, + ACTIONS(2996), 1, + anon_sym_PLUS, + STATE(3529), 2, sym_line_comment, sym_block_comment, - [94344] = 4, + [95297] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6897), 1, - sym_identifier, - STATE(3488), 2, + ACTIONS(3832), 1, + anon_sym_COLON_COLON, + STATE(3530), 2, sym_line_comment, sym_block_comment, - [94358] = 4, + [95311] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6899), 1, + ACTIONS(7010), 1, anon_sym_SEMI, - STATE(3489), 2, + STATE(3531), 2, sym_line_comment, sym_block_comment, - [94372] = 4, + [95325] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6901), 1, - anon_sym_fn, - STATE(3490), 2, + ACTIONS(7012), 1, + anon_sym_SEMI, + STATE(3532), 2, sym_line_comment, sym_block_comment, - [94386] = 4, + [95339] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5025), 1, - anon_sym_SEMI, - STATE(3491), 2, + ACTIONS(7014), 1, + anon_sym_EQ, + STATE(3533), 2, sym_line_comment, sym_block_comment, - [94400] = 4, + [95353] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5003), 1, - anon_sym_SEMI, - STATE(3492), 2, + ACTIONS(7016), 1, + sym_identifier, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [94414] = 4, + [95367] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6903), 1, - anon_sym_EQ, - STATE(3493), 2, + ACTIONS(7018), 1, + anon_sym_SEMI, + STATE(3535), 2, sym_line_comment, sym_block_comment, - [94428] = 4, + [95381] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6905), 1, + ACTIONS(7020), 1, anon_sym_SEMI, - STATE(3494), 2, + STATE(3536), 2, sym_line_comment, sym_block_comment, - [94442] = 4, + [95395] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6907), 1, + ACTIONS(7022), 1, anon_sym_SEMI, - STATE(3495), 2, + STATE(3537), 2, sym_line_comment, sym_block_comment, - [94456] = 4, + [95409] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6909), 1, - anon_sym_SEMI, - STATE(3496), 2, + ACTIONS(7024), 1, + anon_sym_COLON, + STATE(3538), 2, sym_line_comment, sym_block_comment, - [94470] = 4, + [95423] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, + ACTIONS(6368), 1, anon_sym_RBRACE, - STATE(3497), 2, + STATE(3539), 2, sym_line_comment, sym_block_comment, - [94484] = 4, + [95437] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6911), 1, + ACTIONS(7026), 1, anon_sym_COLON, - STATE(3498), 2, + STATE(3540), 2, sym_line_comment, sym_block_comment, - [94498] = 4, + [95451] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6913), 1, - anon_sym_COLON, - STATE(3499), 2, + ACTIONS(7028), 1, + anon_sym_LBRACK, + STATE(3541), 2, sym_line_comment, sym_block_comment, - [94512] = 4, + [95465] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6915), 1, + ACTIONS(7030), 1, anon_sym_LBRACK, - STATE(3500), 2, + STATE(3542), 2, sym_line_comment, sym_block_comment, - [94526] = 4, + [95479] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6917), 1, + ACTIONS(7032), 1, anon_sym_COLON, - STATE(3501), 2, + STATE(3543), 2, sym_line_comment, sym_block_comment, - [94540] = 4, + [95493] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6919), 1, + ACTIONS(7034), 1, anon_sym_COLON, - STATE(3502), 2, + STATE(3544), 2, sym_line_comment, sym_block_comment, - [94554] = 4, + [95507] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6921), 1, + ACTIONS(7036), 1, sym_identifier, - STATE(3503), 2, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [94568] = 4, + [95521] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, + ACTIONS(7038), 1, anon_sym_COLON, - STATE(3504), 2, + STATE(3546), 2, sym_line_comment, sym_block_comment, - [94582] = 4, + [95535] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6925), 1, + ACTIONS(7040), 1, anon_sym_COLON, - STATE(3505), 2, + STATE(3547), 2, sym_line_comment, sym_block_comment, - [94596] = 4, + [95549] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - sym_identifier, - STATE(3506), 2, + ACTIONS(7042), 1, + anon_sym_SEMI, + STATE(3548), 2, sym_line_comment, sym_block_comment, - [94610] = 4, + [95563] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6929), 1, - anon_sym_SEMI, - STATE(3507), 2, + ACTIONS(7044), 1, + anon_sym_RBRACE, + STATE(3549), 2, sym_line_comment, sym_block_comment, - [94624] = 4, + [95577] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6931), 1, + ACTIONS(7046), 1, anon_sym_COLON, - STATE(3508), 2, + STATE(3550), 2, sym_line_comment, sym_block_comment, - [94638] = 4, + [95591] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6933), 1, + ACTIONS(7048), 1, anon_sym_COLON, - STATE(3509), 2, + STATE(3551), 2, sym_line_comment, sym_block_comment, - [94652] = 4, + [95605] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6935), 1, + ACTIONS(7050), 1, anon_sym_COLON, - STATE(3510), 2, + STATE(3552), 2, sym_line_comment, sym_block_comment, - [94666] = 4, + [95619] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6937), 1, + ACTIONS(7052), 1, anon_sym_EQ_GT, - STATE(3511), 2, + STATE(3553), 2, sym_line_comment, sym_block_comment, - [94680] = 4, + [95633] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4391), 1, + ACTIONS(4426), 1, anon_sym_fn, - STATE(3512), 2, + STATE(3554), 2, sym_line_comment, sym_block_comment, - [94694] = 4, + [95647] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6939), 1, + ACTIONS(7054), 1, sym_identifier, - STATE(3513), 2, + STATE(3555), 2, sym_line_comment, sym_block_comment, - [94708] = 4, + [95661] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(690), 1, - anon_sym_RBRACK, - STATE(3514), 2, + ACTIONS(7056), 1, + anon_sym_SEMI, + STATE(3556), 2, sym_line_comment, sym_block_comment, - [94722] = 4, + [95675] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(7058), 1, sym_identifier, - STATE(3515), 2, + STATE(3557), 2, sym_line_comment, sym_block_comment, - [94736] = 4, + [95689] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6943), 1, - anon_sym_SEMI, - STATE(3516), 2, + ACTIONS(7060), 1, + sym_identifier, + STATE(3558), 2, sym_line_comment, sym_block_comment, - [94750] = 4, + [95703] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4029), 1, - anon_sym_RPAREN, - STATE(3517), 2, + ACTIONS(7062), 1, + anon_sym_SEMI, + STATE(3559), 2, sym_line_comment, sym_block_comment, - [94764] = 4, + [95717] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(7064), 1, sym_identifier, - STATE(3518), 2, + STATE(3560), 2, sym_line_comment, sym_block_comment, - [94778] = 4, + [95731] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6947), 1, + ACTIONS(7066), 1, anon_sym_fn, - STATE(3519), 2, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [94792] = 4, + [95745] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6949), 1, - anon_sym_SEMI, - STATE(3520), 2, + ACTIONS(7068), 1, + sym_identifier, + STATE(3562), 2, sym_line_comment, sym_block_comment, - [94806] = 4, + [95759] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6951), 1, + ACTIONS(7070), 1, sym_identifier, - STATE(3521), 2, + STATE(3563), 2, sym_line_comment, sym_block_comment, - [94820] = 4, + [95773] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6953), 1, + ACTIONS(7072), 1, sym_identifier, - STATE(3522), 2, + STATE(3564), 2, sym_line_comment, sym_block_comment, - [94834] = 4, + [95787] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6955), 1, - anon_sym_STAR_SLASH, - STATE(3523), 2, + ACTIONS(7074), 1, + anon_sym_SEMI, + STATE(3565), 2, sym_line_comment, sym_block_comment, - [94848] = 1, - ACTIONS(6957), 1, + [95801] = 1, + ACTIONS(7076), 1, ts_builtin_sym_end, - [94852] = 1, - ACTIONS(6959), 1, + [95805] = 1, + ACTIONS(7078), 1, ts_builtin_sym_end, - [94856] = 1, - ACTIONS(6961), 1, + [95809] = 1, + ACTIONS(7080), 1, ts_builtin_sym_end, - [94860] = 1, - ACTIONS(6963), 1, + [95813] = 1, + ACTIONS(7082), 1, ts_builtin_sym_end, - [94864] = 1, - ACTIONS(6965), 1, + [95817] = 1, + ACTIONS(7084), 1, ts_builtin_sym_end, - [94868] = 1, - ACTIONS(6967), 1, + [95821] = 1, + ACTIONS(7086), 1, ts_builtin_sym_end, - [94872] = 1, - ACTIONS(6969), 1, + [95825] = 1, + ACTIONS(7088), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1006)] = 0, - [SMALL_STATE(1007)] = 75, - [SMALL_STATE(1008)] = 150, - [SMALL_STATE(1009)] = 225, - [SMALL_STATE(1010)] = 299, - [SMALL_STATE(1011)] = 367, - [SMALL_STATE(1012)] = 435, - [SMALL_STATE(1013)] = 512, - [SMALL_STATE(1014)] = 586, - [SMALL_STATE(1015)] = 660, - [SMALL_STATE(1016)] = 734, - [SMALL_STATE(1017)] = 797, - [SMALL_STATE(1018)] = 868, - [SMALL_STATE(1019)] = 931, - [SMALL_STATE(1020)] = 994, - [SMALL_STATE(1021)] = 1065, - [SMALL_STATE(1022)] = 1136, - [SMALL_STATE(1023)] = 1203, - [SMALL_STATE(1024)] = 1270, - [SMALL_STATE(1025)] = 1333, - [SMALL_STATE(1026)] = 1396, - [SMALL_STATE(1027)] = 1467, - [SMALL_STATE(1028)] = 1530, - [SMALL_STATE(1029)] = 1593, - [SMALL_STATE(1030)] = 1656, - [SMALL_STATE(1031)] = 1719, - [SMALL_STATE(1032)] = 1786, - [SMALL_STATE(1033)] = 1853, - [SMALL_STATE(1034)] = 1917, - [SMALL_STATE(1035)] = 1979, - [SMALL_STATE(1036)] = 2041, - [SMALL_STATE(1037)] = 2103, - [SMALL_STATE(1038)] = 2165, - [SMALL_STATE(1039)] = 2227, - [SMALL_STATE(1040)] = 2289, - [SMALL_STATE(1041)] = 2351, - [SMALL_STATE(1042)] = 2415, - [SMALL_STATE(1043)] = 2483, - [SMALL_STATE(1044)] = 2545, - [SMALL_STATE(1045)] = 2607, - [SMALL_STATE(1046)] = 2677, - [SMALL_STATE(1047)] = 2740, - [SMALL_STATE(1048)] = 2839, - [SMALL_STATE(1049)] = 2900, - [SMALL_STATE(1050)] = 2961, - [SMALL_STATE(1051)] = 3022, - [SMALL_STATE(1052)] = 3083, - [SMALL_STATE(1053)] = 3144, - [SMALL_STATE(1054)] = 3207, - [SMALL_STATE(1055)] = 3270, - [SMALL_STATE(1056)] = 3331, - [SMALL_STATE(1057)] = 3392, - [SMALL_STATE(1058)] = 3453, - [SMALL_STATE(1059)] = 3514, - [SMALL_STATE(1060)] = 3575, - [SMALL_STATE(1061)] = 3638, - [SMALL_STATE(1062)] = 3701, - [SMALL_STATE(1063)] = 3764, - [SMALL_STATE(1064)] = 3827, - [SMALL_STATE(1065)] = 3890, - [SMALL_STATE(1066)] = 3951, - [SMALL_STATE(1067)] = 4014, - [SMALL_STATE(1068)] = 4113, - [SMALL_STATE(1069)] = 4174, - [SMALL_STATE(1070)] = 4235, - [SMALL_STATE(1071)] = 4298, - [SMALL_STATE(1072)] = 4361, - [SMALL_STATE(1073)] = 4422, - [SMALL_STATE(1074)] = 4485, - [SMALL_STATE(1075)] = 4548, - [SMALL_STATE(1076)] = 4609, - [SMALL_STATE(1077)] = 4670, - [SMALL_STATE(1078)] = 4731, - [SMALL_STATE(1079)] = 4792, - [SMALL_STATE(1080)] = 4857, - [SMALL_STATE(1081)] = 4920, - [SMALL_STATE(1082)] = 4983, - [SMALL_STATE(1083)] = 5046, - [SMALL_STATE(1084)] = 5109, - [SMALL_STATE(1085)] = 5172, - [SMALL_STATE(1086)] = 5233, - [SMALL_STATE(1087)] = 5298, - [SMALL_STATE(1088)] = 5363, - [SMALL_STATE(1089)] = 5423, - [SMALL_STATE(1090)] = 5483, - [SMALL_STATE(1091)] = 5543, - [SMALL_STATE(1092)] = 5603, - [SMALL_STATE(1093)] = 5663, - [SMALL_STATE(1094)] = 5723, - [SMALL_STATE(1095)] = 5783, - [SMALL_STATE(1096)] = 5843, - [SMALL_STATE(1097)] = 5903, - [SMALL_STATE(1098)] = 5963, - [SMALL_STATE(1099)] = 6023, - [SMALL_STATE(1100)] = 6083, - [SMALL_STATE(1101)] = 6143, - [SMALL_STATE(1102)] = 6203, - [SMALL_STATE(1103)] = 6263, - [SMALL_STATE(1104)] = 6323, - [SMALL_STATE(1105)] = 6383, - [SMALL_STATE(1106)] = 6443, - [SMALL_STATE(1107)] = 6503, - [SMALL_STATE(1108)] = 6563, - [SMALL_STATE(1109)] = 6623, - [SMALL_STATE(1110)] = 6683, - [SMALL_STATE(1111)] = 6743, - [SMALL_STATE(1112)] = 6803, - [SMALL_STATE(1113)] = 6863, - [SMALL_STATE(1114)] = 6923, - [SMALL_STATE(1115)] = 6983, - [SMALL_STATE(1116)] = 7043, - [SMALL_STATE(1117)] = 7103, - [SMALL_STATE(1118)] = 7163, - [SMALL_STATE(1119)] = 7223, - [SMALL_STATE(1120)] = 7283, - [SMALL_STATE(1121)] = 7343, - [SMALL_STATE(1122)] = 7403, - [SMALL_STATE(1123)] = 7463, - [SMALL_STATE(1124)] = 7523, - [SMALL_STATE(1125)] = 7583, - [SMALL_STATE(1126)] = 7643, - [SMALL_STATE(1127)] = 7703, - [SMALL_STATE(1128)] = 7763, - [SMALL_STATE(1129)] = 7823, - [SMALL_STATE(1130)] = 7883, - [SMALL_STATE(1131)] = 7943, - [SMALL_STATE(1132)] = 8003, - [SMALL_STATE(1133)] = 8063, - [SMALL_STATE(1134)] = 8123, - [SMALL_STATE(1135)] = 8183, - [SMALL_STATE(1136)] = 8243, - [SMALL_STATE(1137)] = 8303, - [SMALL_STATE(1138)] = 8363, - [SMALL_STATE(1139)] = 8423, - [SMALL_STATE(1140)] = 8483, - [SMALL_STATE(1141)] = 8543, - [SMALL_STATE(1142)] = 8603, - [SMALL_STATE(1143)] = 8663, - [SMALL_STATE(1144)] = 8723, - [SMALL_STATE(1145)] = 8783, - [SMALL_STATE(1146)] = 8843, - [SMALL_STATE(1147)] = 8903, - [SMALL_STATE(1148)] = 8963, - [SMALL_STATE(1149)] = 9023, - [SMALL_STATE(1150)] = 9083, - [SMALL_STATE(1151)] = 9143, - [SMALL_STATE(1152)] = 9203, - [SMALL_STATE(1153)] = 9263, - [SMALL_STATE(1154)] = 9323, - [SMALL_STATE(1155)] = 9383, - [SMALL_STATE(1156)] = 9443, - [SMALL_STATE(1157)] = 9503, - [SMALL_STATE(1158)] = 9563, - [SMALL_STATE(1159)] = 9623, - [SMALL_STATE(1160)] = 9683, - [SMALL_STATE(1161)] = 9743, - [SMALL_STATE(1162)] = 9803, - [SMALL_STATE(1163)] = 9863, - [SMALL_STATE(1164)] = 9923, - [SMALL_STATE(1165)] = 9983, - [SMALL_STATE(1166)] = 10043, - [SMALL_STATE(1167)] = 10103, - [SMALL_STATE(1168)] = 10163, - [SMALL_STATE(1169)] = 10223, - [SMALL_STATE(1170)] = 10283, - [SMALL_STATE(1171)] = 10343, - [SMALL_STATE(1172)] = 10403, - [SMALL_STATE(1173)] = 10463, - [SMALL_STATE(1174)] = 10523, - [SMALL_STATE(1175)] = 10583, - [SMALL_STATE(1176)] = 10643, - [SMALL_STATE(1177)] = 10703, - [SMALL_STATE(1178)] = 10763, - [SMALL_STATE(1179)] = 10823, - [SMALL_STATE(1180)] = 10883, - [SMALL_STATE(1181)] = 10943, - [SMALL_STATE(1182)] = 11003, - [SMALL_STATE(1183)] = 11063, - [SMALL_STATE(1184)] = 11123, - [SMALL_STATE(1185)] = 11183, - [SMALL_STATE(1186)] = 11243, - [SMALL_STATE(1187)] = 11303, - [SMALL_STATE(1188)] = 11363, - [SMALL_STATE(1189)] = 11423, - [SMALL_STATE(1190)] = 11483, - [SMALL_STATE(1191)] = 11543, - [SMALL_STATE(1192)] = 11603, - [SMALL_STATE(1193)] = 11663, - [SMALL_STATE(1194)] = 11723, - [SMALL_STATE(1195)] = 11783, - [SMALL_STATE(1196)] = 11843, - [SMALL_STATE(1197)] = 11903, - [SMALL_STATE(1198)] = 11963, - [SMALL_STATE(1199)] = 12023, - [SMALL_STATE(1200)] = 12083, - [SMALL_STATE(1201)] = 12143, - [SMALL_STATE(1202)] = 12203, - [SMALL_STATE(1203)] = 12263, - [SMALL_STATE(1204)] = 12323, - [SMALL_STATE(1205)] = 12383, - [SMALL_STATE(1206)] = 12443, - [SMALL_STATE(1207)] = 12503, - [SMALL_STATE(1208)] = 12563, - [SMALL_STATE(1209)] = 12623, - [SMALL_STATE(1210)] = 12683, - [SMALL_STATE(1211)] = 12743, - [SMALL_STATE(1212)] = 12803, - [SMALL_STATE(1213)] = 12863, - [SMALL_STATE(1214)] = 12923, - [SMALL_STATE(1215)] = 12983, - [SMALL_STATE(1216)] = 13043, - [SMALL_STATE(1217)] = 13107, - [SMALL_STATE(1218)] = 13167, - [SMALL_STATE(1219)] = 13227, - [SMALL_STATE(1220)] = 13287, - [SMALL_STATE(1221)] = 13347, - [SMALL_STATE(1222)] = 13407, - [SMALL_STATE(1223)] = 13467, - [SMALL_STATE(1224)] = 13527, - [SMALL_STATE(1225)] = 13587, - [SMALL_STATE(1226)] = 13647, - [SMALL_STATE(1227)] = 13707, - [SMALL_STATE(1228)] = 13767, - [SMALL_STATE(1229)] = 13827, - [SMALL_STATE(1230)] = 13887, - [SMALL_STATE(1231)] = 13947, - [SMALL_STATE(1232)] = 14007, - [SMALL_STATE(1233)] = 14067, - [SMALL_STATE(1234)] = 14127, - [SMALL_STATE(1235)] = 14187, - [SMALL_STATE(1236)] = 14247, - [SMALL_STATE(1237)] = 14307, - [SMALL_STATE(1238)] = 14367, - [SMALL_STATE(1239)] = 14427, - [SMALL_STATE(1240)] = 14487, - [SMALL_STATE(1241)] = 14547, - [SMALL_STATE(1242)] = 14607, - [SMALL_STATE(1243)] = 14667, - [SMALL_STATE(1244)] = 14727, - [SMALL_STATE(1245)] = 14787, - [SMALL_STATE(1246)] = 14847, - [SMALL_STATE(1247)] = 14907, - [SMALL_STATE(1248)] = 14967, - [SMALL_STATE(1249)] = 15027, - [SMALL_STATE(1250)] = 15087, - [SMALL_STATE(1251)] = 15147, - [SMALL_STATE(1252)] = 15207, - [SMALL_STATE(1253)] = 15267, - [SMALL_STATE(1254)] = 15327, - [SMALL_STATE(1255)] = 15387, - [SMALL_STATE(1256)] = 15447, - [SMALL_STATE(1257)] = 15507, - [SMALL_STATE(1258)] = 15567, - [SMALL_STATE(1259)] = 15627, - [SMALL_STATE(1260)] = 15687, - [SMALL_STATE(1261)] = 15747, - [SMALL_STATE(1262)] = 15807, - [SMALL_STATE(1263)] = 15867, - [SMALL_STATE(1264)] = 15927, - [SMALL_STATE(1265)] = 15987, - [SMALL_STATE(1266)] = 16047, - [SMALL_STATE(1267)] = 16107, - [SMALL_STATE(1268)] = 16167, - [SMALL_STATE(1269)] = 16227, - [SMALL_STATE(1270)] = 16293, - [SMALL_STATE(1271)] = 16359, - [SMALL_STATE(1272)] = 16419, - [SMALL_STATE(1273)] = 16479, - [SMALL_STATE(1274)] = 16539, - [SMALL_STATE(1275)] = 16599, - [SMALL_STATE(1276)] = 16659, - [SMALL_STATE(1277)] = 16723, - [SMALL_STATE(1278)] = 16783, - [SMALL_STATE(1279)] = 16843, - [SMALL_STATE(1280)] = 16903, - [SMALL_STATE(1281)] = 16963, - [SMALL_STATE(1282)] = 17023, - [SMALL_STATE(1283)] = 17083, - [SMALL_STATE(1284)] = 17143, - [SMALL_STATE(1285)] = 17203, - [SMALL_STATE(1286)] = 17263, - [SMALL_STATE(1287)] = 17323, - [SMALL_STATE(1288)] = 17383, - [SMALL_STATE(1289)] = 17443, - [SMALL_STATE(1290)] = 17503, - [SMALL_STATE(1291)] = 17563, - [SMALL_STATE(1292)] = 17623, - [SMALL_STATE(1293)] = 17683, - [SMALL_STATE(1294)] = 17743, - [SMALL_STATE(1295)] = 17803, - [SMALL_STATE(1296)] = 17863, - [SMALL_STATE(1297)] = 17923, - [SMALL_STATE(1298)] = 17983, - [SMALL_STATE(1299)] = 18043, - [SMALL_STATE(1300)] = 18103, - [SMALL_STATE(1301)] = 18163, - [SMALL_STATE(1302)] = 18223, - [SMALL_STATE(1303)] = 18283, - [SMALL_STATE(1304)] = 18343, - [SMALL_STATE(1305)] = 18403, - [SMALL_STATE(1306)] = 18463, - [SMALL_STATE(1307)] = 18523, - [SMALL_STATE(1308)] = 18583, - [SMALL_STATE(1309)] = 18643, - [SMALL_STATE(1310)] = 18703, - [SMALL_STATE(1311)] = 18763, - [SMALL_STATE(1312)] = 18823, - [SMALL_STATE(1313)] = 18883, - [SMALL_STATE(1314)] = 18943, - [SMALL_STATE(1315)] = 19003, - [SMALL_STATE(1316)] = 19063, - [SMALL_STATE(1317)] = 19123, - [SMALL_STATE(1318)] = 19183, - [SMALL_STATE(1319)] = 19243, - [SMALL_STATE(1320)] = 19303, - [SMALL_STATE(1321)] = 19363, - [SMALL_STATE(1322)] = 19423, - [SMALL_STATE(1323)] = 19483, - [SMALL_STATE(1324)] = 19543, - [SMALL_STATE(1325)] = 19603, - [SMALL_STATE(1326)] = 19663, - [SMALL_STATE(1327)] = 19723, - [SMALL_STATE(1328)] = 19783, - [SMALL_STATE(1329)] = 19843, - [SMALL_STATE(1330)] = 19903, - [SMALL_STATE(1331)] = 19963, - [SMALL_STATE(1332)] = 20023, - [SMALL_STATE(1333)] = 20083, - [SMALL_STATE(1334)] = 20143, - [SMALL_STATE(1335)] = 20203, - [SMALL_STATE(1336)] = 20263, - [SMALL_STATE(1337)] = 20323, - [SMALL_STATE(1338)] = 20383, - [SMALL_STATE(1339)] = 20443, - [SMALL_STATE(1340)] = 20503, - [SMALL_STATE(1341)] = 20563, - [SMALL_STATE(1342)] = 20623, - [SMALL_STATE(1343)] = 20683, - [SMALL_STATE(1344)] = 20743, - [SMALL_STATE(1345)] = 20803, - [SMALL_STATE(1346)] = 20863, - [SMALL_STATE(1347)] = 20923, - [SMALL_STATE(1348)] = 20983, - [SMALL_STATE(1349)] = 21043, - [SMALL_STATE(1350)] = 21103, - [SMALL_STATE(1351)] = 21163, - [SMALL_STATE(1352)] = 21223, - [SMALL_STATE(1353)] = 21283, - [SMALL_STATE(1354)] = 21343, - [SMALL_STATE(1355)] = 21403, - [SMALL_STATE(1356)] = 21463, - [SMALL_STATE(1357)] = 21523, - [SMALL_STATE(1358)] = 21583, - [SMALL_STATE(1359)] = 21643, - [SMALL_STATE(1360)] = 21703, - [SMALL_STATE(1361)] = 21763, - [SMALL_STATE(1362)] = 21823, - [SMALL_STATE(1363)] = 21883, - [SMALL_STATE(1364)] = 21943, - [SMALL_STATE(1365)] = 22003, - [SMALL_STATE(1366)] = 22063, - [SMALL_STATE(1367)] = 22123, - [SMALL_STATE(1368)] = 22183, - [SMALL_STATE(1369)] = 22243, - [SMALL_STATE(1370)] = 22303, - [SMALL_STATE(1371)] = 22363, - [SMALL_STATE(1372)] = 22423, - [SMALL_STATE(1373)] = 22483, - [SMALL_STATE(1374)] = 22543, - [SMALL_STATE(1375)] = 22603, - [SMALL_STATE(1376)] = 22663, - [SMALL_STATE(1377)] = 22723, - [SMALL_STATE(1378)] = 22783, - [SMALL_STATE(1379)] = 22843, - [SMALL_STATE(1380)] = 22903, - [SMALL_STATE(1381)] = 22963, - [SMALL_STATE(1382)] = 23023, - [SMALL_STATE(1383)] = 23083, - [SMALL_STATE(1384)] = 23143, - [SMALL_STATE(1385)] = 23203, - [SMALL_STATE(1386)] = 23263, - [SMALL_STATE(1387)] = 23323, - [SMALL_STATE(1388)] = 23383, - [SMALL_STATE(1389)] = 23443, - [SMALL_STATE(1390)] = 23503, - [SMALL_STATE(1391)] = 23563, - [SMALL_STATE(1392)] = 23623, - [SMALL_STATE(1393)] = 23683, - [SMALL_STATE(1394)] = 23743, - [SMALL_STATE(1395)] = 23803, - [SMALL_STATE(1396)] = 23863, - [SMALL_STATE(1397)] = 23929, - [SMALL_STATE(1398)] = 23989, - [SMALL_STATE(1399)] = 24049, - [SMALL_STATE(1400)] = 24109, - [SMALL_STATE(1401)] = 24169, - [SMALL_STATE(1402)] = 24229, - [SMALL_STATE(1403)] = 24289, - [SMALL_STATE(1404)] = 24349, - [SMALL_STATE(1405)] = 24409, - [SMALL_STATE(1406)] = 24469, - [SMALL_STATE(1407)] = 24529, - [SMALL_STATE(1408)] = 24589, - [SMALL_STATE(1409)] = 24649, - [SMALL_STATE(1410)] = 24709, - [SMALL_STATE(1411)] = 24769, - [SMALL_STATE(1412)] = 24829, - [SMALL_STATE(1413)] = 24889, - [SMALL_STATE(1414)] = 24949, - [SMALL_STATE(1415)] = 25009, - [SMALL_STATE(1416)] = 25069, - [SMALL_STATE(1417)] = 25129, - [SMALL_STATE(1418)] = 25189, - [SMALL_STATE(1419)] = 25249, - [SMALL_STATE(1420)] = 25309, - [SMALL_STATE(1421)] = 25369, - [SMALL_STATE(1422)] = 25429, - [SMALL_STATE(1423)] = 25489, - [SMALL_STATE(1424)] = 25549, - [SMALL_STATE(1425)] = 25609, - [SMALL_STATE(1426)] = 25669, - [SMALL_STATE(1427)] = 25729, - [SMALL_STATE(1428)] = 25789, - [SMALL_STATE(1429)] = 25849, - [SMALL_STATE(1430)] = 25909, - [SMALL_STATE(1431)] = 25969, - [SMALL_STATE(1432)] = 26029, - [SMALL_STATE(1433)] = 26091, - [SMALL_STATE(1434)] = 26151, - [SMALL_STATE(1435)] = 26211, - [SMALL_STATE(1436)] = 26279, - [SMALL_STATE(1437)] = 26339, - [SMALL_STATE(1438)] = 26399, - [SMALL_STATE(1439)] = 26461, - [SMALL_STATE(1440)] = 26521, - [SMALL_STATE(1441)] = 26581, - [SMALL_STATE(1442)] = 26641, - [SMALL_STATE(1443)] = 26701, - [SMALL_STATE(1444)] = 26761, - [SMALL_STATE(1445)] = 26821, - [SMALL_STATE(1446)] = 26881, - [SMALL_STATE(1447)] = 26941, - [SMALL_STATE(1448)] = 27000, - [SMALL_STATE(1449)] = 27059, - [SMALL_STATE(1450)] = 27120, - [SMALL_STATE(1451)] = 27191, - [SMALL_STATE(1452)] = 27286, - [SMALL_STATE(1453)] = 27349, - [SMALL_STATE(1454)] = 27410, - [SMALL_STATE(1455)] = 27469, - [SMALL_STATE(1456)] = 27528, - [SMALL_STATE(1457)] = 27623, - [SMALL_STATE(1458)] = 27682, - [SMALL_STATE(1459)] = 27741, - [SMALL_STATE(1460)] = 27823, - [SMALL_STATE(1461)] = 27893, - [SMALL_STATE(1462)] = 27969, - [SMALL_STATE(1463)] = 28055, - [SMALL_STATE(1464)] = 28123, - [SMALL_STATE(1465)] = 28213, - [SMALL_STATE(1466)] = 28281, - [SMALL_STATE(1467)] = 28371, - [SMALL_STATE(1468)] = 28457, - [SMALL_STATE(1469)] = 28547, - [SMALL_STATE(1470)] = 28631, - [SMALL_STATE(1471)] = 28721, - [SMALL_STATE(1472)] = 28811, - [SMALL_STATE(1473)] = 28903, - [SMALL_STATE(1474)] = 28995, - [SMALL_STATE(1475)] = 29063, - [SMALL_STATE(1476)] = 29129, - [SMALL_STATE(1477)] = 29197, - [SMALL_STATE(1478)] = 29287, - [SMALL_STATE(1479)] = 29365, - [SMALL_STATE(1480)] = 29439, - [SMALL_STATE(1481)] = 29505, - [SMALL_STATE(1482)] = 29597, - [SMALL_STATE(1483)] = 29669, - [SMALL_STATE(1484)] = 29766, - [SMALL_STATE(1485)] = 29827, - [SMALL_STATE(1486)] = 29888, - [SMALL_STATE(1487)] = 29953, - [SMALL_STATE(1488)] = 30014, - [SMALL_STATE(1489)] = 30075, - [SMALL_STATE(1490)] = 30140, - [SMALL_STATE(1491)] = 30237, - [SMALL_STATE(1492)] = 30300, - [SMALL_STATE(1493)] = 30359, - [SMALL_STATE(1494)] = 30424, - [SMALL_STATE(1495)] = 30481, - [SMALL_STATE(1496)] = 30578, - [SMALL_STATE(1497)] = 30675, - [SMALL_STATE(1498)] = 30772, - [SMALL_STATE(1499)] = 30869, - [SMALL_STATE(1500)] = 30966, - [SMALL_STATE(1501)] = 31031, - [SMALL_STATE(1502)] = 31128, - [SMALL_STATE(1503)] = 31185, - [SMALL_STATE(1504)] = 31244, - [SMALL_STATE(1505)] = 31303, - [SMALL_STATE(1506)] = 31400, - [SMALL_STATE(1507)] = 31459, - [SMALL_STATE(1508)] = 31522, - [SMALL_STATE(1509)] = 31582, - [SMALL_STATE(1510)] = 31664, - [SMALL_STATE(1511)] = 31724, - [SMALL_STATE(1512)] = 31784, - [SMALL_STATE(1513)] = 31844, - [SMALL_STATE(1514)] = 31900, - [SMALL_STATE(1515)] = 31958, - [SMALL_STATE(1516)] = 32014, - [SMALL_STATE(1517)] = 32072, - [SMALL_STATE(1518)] = 32128, - [SMALL_STATE(1519)] = 32184, - [SMALL_STATE(1520)] = 32266, - [SMALL_STATE(1521)] = 32322, - [SMALL_STATE(1522)] = 32378, - [SMALL_STATE(1523)] = 32460, - [SMALL_STATE(1524)] = 32520, - [SMALL_STATE(1525)] = 32576, - [SMALL_STATE(1526)] = 32632, - [SMALL_STATE(1527)] = 32688, - [SMALL_STATE(1528)] = 32748, - [SMALL_STATE(1529)] = 32804, - [SMALL_STATE(1530)] = 32860, - [SMALL_STATE(1531)] = 32942, - [SMALL_STATE(1532)] = 33002, - [SMALL_STATE(1533)] = 33057, - [SMALL_STATE(1534)] = 33152, - [SMALL_STATE(1535)] = 33211, - [SMALL_STATE(1536)] = 33266, - [SMALL_STATE(1537)] = 33321, - [SMALL_STATE(1538)] = 33376, - [SMALL_STATE(1539)] = 33471, - [SMALL_STATE(1540)] = 33528, - [SMALL_STATE(1541)] = 33585, - [SMALL_STATE(1542)] = 33642, - [SMALL_STATE(1543)] = 33737, - [SMALL_STATE(1544)] = 33832, - [SMALL_STATE(1545)] = 33927, - [SMALL_STATE(1546)] = 33982, - [SMALL_STATE(1547)] = 34077, - [SMALL_STATE(1548)] = 34172, - [SMALL_STATE(1549)] = 34229, - [SMALL_STATE(1550)] = 34284, - [SMALL_STATE(1551)] = 34341, - [SMALL_STATE(1552)] = 34396, - [SMALL_STATE(1553)] = 34451, - [SMALL_STATE(1554)] = 34506, - [SMALL_STATE(1555)] = 34561, - [SMALL_STATE(1556)] = 34616, - [SMALL_STATE(1557)] = 34711, - [SMALL_STATE(1558)] = 34768, - [SMALL_STATE(1559)] = 34823, - [SMALL_STATE(1560)] = 34880, - [SMALL_STATE(1561)] = 34937, - [SMALL_STATE(1562)] = 34994, - [SMALL_STATE(1563)] = 35089, - [SMALL_STATE(1564)] = 35184, - [SMALL_STATE(1565)] = 35241, - [SMALL_STATE(1566)] = 35298, - [SMALL_STATE(1567)] = 35355, - [SMALL_STATE(1568)] = 35412, - [SMALL_STATE(1569)] = 35469, - [SMALL_STATE(1570)] = 35564, - [SMALL_STATE(1571)] = 35619, - [SMALL_STATE(1572)] = 35674, - [SMALL_STATE(1573)] = 35731, - [SMALL_STATE(1574)] = 35786, - [SMALL_STATE(1575)] = 35843, - [SMALL_STATE(1576)] = 35938, - [SMALL_STATE(1577)] = 35993, - [SMALL_STATE(1578)] = 36050, - [SMALL_STATE(1579)] = 36105, - [SMALL_STATE(1580)] = 36160, - [SMALL_STATE(1581)] = 36217, - [SMALL_STATE(1582)] = 36274, - [SMALL_STATE(1583)] = 36331, - [SMALL_STATE(1584)] = 36386, - [SMALL_STATE(1585)] = 36443, - [SMALL_STATE(1586)] = 36498, - [SMALL_STATE(1587)] = 36555, - [SMALL_STATE(1588)] = 36610, - [SMALL_STATE(1589)] = 36667, - [SMALL_STATE(1590)] = 36759, - [SMALL_STATE(1591)] = 36851, - [SMALL_STATE(1592)] = 36943, - [SMALL_STATE(1593)] = 36997, - [SMALL_STATE(1594)] = 37083, - [SMALL_STATE(1595)] = 37165, - [SMALL_STATE(1596)] = 37219, - [SMALL_STATE(1597)] = 37273, - [SMALL_STATE(1598)] = 37365, - [SMALL_STATE(1599)] = 37451, - [SMALL_STATE(1600)] = 37505, - [SMALL_STATE(1601)] = 37559, - [SMALL_STATE(1602)] = 37613, - [SMALL_STATE(1603)] = 37701, - [SMALL_STATE(1604)] = 37755, - [SMALL_STATE(1605)] = 37809, - [SMALL_STATE(1606)] = 37863, - [SMALL_STATE(1607)] = 37917, - [SMALL_STATE(1608)] = 37971, - [SMALL_STATE(1609)] = 38025, - [SMALL_STATE(1610)] = 38079, - [SMALL_STATE(1611)] = 38133, - [SMALL_STATE(1612)] = 38219, - [SMALL_STATE(1613)] = 38273, - [SMALL_STATE(1614)] = 38327, - [SMALL_STATE(1615)] = 38381, - [SMALL_STATE(1616)] = 38435, - [SMALL_STATE(1617)] = 38489, - [SMALL_STATE(1618)] = 38543, - [SMALL_STATE(1619)] = 38597, - [SMALL_STATE(1620)] = 38651, - [SMALL_STATE(1621)] = 38705, - [SMALL_STATE(1622)] = 38759, - [SMALL_STATE(1623)] = 38813, - [SMALL_STATE(1624)] = 38867, - [SMALL_STATE(1625)] = 38921, - [SMALL_STATE(1626)] = 38975, - [SMALL_STATE(1627)] = 39029, - [SMALL_STATE(1628)] = 39083, - [SMALL_STATE(1629)] = 39137, - [SMALL_STATE(1630)] = 39191, - [SMALL_STATE(1631)] = 39245, - [SMALL_STATE(1632)] = 39299, - [SMALL_STATE(1633)] = 39353, - [SMALL_STATE(1634)] = 39441, - [SMALL_STATE(1635)] = 39529, - [SMALL_STATE(1636)] = 39617, - [SMALL_STATE(1637)] = 39671, - [SMALL_STATE(1638)] = 39725, - [SMALL_STATE(1639)] = 39779, - [SMALL_STATE(1640)] = 39833, - [SMALL_STATE(1641)] = 39887, - [SMALL_STATE(1642)] = 39941, - [SMALL_STATE(1643)] = 39995, - [SMALL_STATE(1644)] = 40049, - [SMALL_STATE(1645)] = 40103, - [SMALL_STATE(1646)] = 40163, - [SMALL_STATE(1647)] = 40217, - [SMALL_STATE(1648)] = 40271, - [SMALL_STATE(1649)] = 40363, - [SMALL_STATE(1650)] = 40423, - [SMALL_STATE(1651)] = 40477, - [SMALL_STATE(1652)] = 40531, - [SMALL_STATE(1653)] = 40585, - [SMALL_STATE(1654)] = 40639, - [SMALL_STATE(1655)] = 40693, - [SMALL_STATE(1656)] = 40747, - [SMALL_STATE(1657)] = 40801, - [SMALL_STATE(1658)] = 40855, - [SMALL_STATE(1659)] = 40909, - [SMALL_STATE(1660)] = 40963, - [SMALL_STATE(1661)] = 41017, - [SMALL_STATE(1662)] = 41071, - [SMALL_STATE(1663)] = 41157, - [SMALL_STATE(1664)] = 41211, - [SMALL_STATE(1665)] = 41299, - [SMALL_STATE(1666)] = 41353, - [SMALL_STATE(1667)] = 41407, - [SMALL_STATE(1668)] = 41499, - [SMALL_STATE(1669)] = 41565, - [SMALL_STATE(1670)] = 41619, - [SMALL_STATE(1671)] = 41673, - [SMALL_STATE(1672)] = 41759, - [SMALL_STATE(1673)] = 41839, - [SMALL_STATE(1674)] = 41917, - [SMALL_STATE(1675)] = 41971, - [SMALL_STATE(1676)] = 42025, - [SMALL_STATE(1677)] = 42079, - [SMALL_STATE(1678)] = 42133, - [SMALL_STATE(1679)] = 42219, - [SMALL_STATE(1680)] = 42301, - [SMALL_STATE(1681)] = 42355, - [SMALL_STATE(1682)] = 42437, - [SMALL_STATE(1683)] = 42523, - [SMALL_STATE(1684)] = 42577, - [SMALL_STATE(1685)] = 42631, - [SMALL_STATE(1686)] = 42685, - [SMALL_STATE(1687)] = 42739, - [SMALL_STATE(1688)] = 42811, - [SMALL_STATE(1689)] = 42865, - [SMALL_STATE(1690)] = 42919, - [SMALL_STATE(1691)] = 42973, - [SMALL_STATE(1692)] = 43027, - [SMALL_STATE(1693)] = 43081, - [SMALL_STATE(1694)] = 43169, - [SMALL_STATE(1695)] = 43223, - [SMALL_STATE(1696)] = 43311, - [SMALL_STATE(1697)] = 43365, - [SMALL_STATE(1698)] = 43439, - [SMALL_STATE(1699)] = 43509, - [SMALL_STATE(1700)] = 43563, - [SMALL_STATE(1701)] = 43617, - [SMALL_STATE(1702)] = 43671, - [SMALL_STATE(1703)] = 43757, - [SMALL_STATE(1704)] = 43823, - [SMALL_STATE(1705)] = 43877, - [SMALL_STATE(1706)] = 43965, - [SMALL_STATE(1707)] = 44019, - [SMALL_STATE(1708)] = 44073, - [SMALL_STATE(1709)] = 44153, - [SMALL_STATE(1710)] = 44207, - [SMALL_STATE(1711)] = 44275, - [SMALL_STATE(1712)] = 44361, - [SMALL_STATE(1713)] = 44439, - [SMALL_STATE(1714)] = 44499, - [SMALL_STATE(1715)] = 44563, - [SMALL_STATE(1716)] = 44645, - [SMALL_STATE(1717)] = 44699, - [SMALL_STATE(1718)] = 44771, - [SMALL_STATE(1719)] = 44845, - [SMALL_STATE(1720)] = 44915, - [SMALL_STATE(1721)] = 44983, - [SMALL_STATE(1722)] = 45037, - [SMALL_STATE(1723)] = 45123, - [SMALL_STATE(1724)] = 45185, - [SMALL_STATE(1725)] = 45249, - [SMALL_STATE(1726)] = 45303, - [SMALL_STATE(1727)] = 45357, - [SMALL_STATE(1728)] = 45411, - [SMALL_STATE(1729)] = 45499, - [SMALL_STATE(1730)] = 45585, - [SMALL_STATE(1731)] = 45639, - [SMALL_STATE(1732)] = 45693, - [SMALL_STATE(1733)] = 45781, - [SMALL_STATE(1734)] = 45835, - [SMALL_STATE(1735)] = 45921, - [SMALL_STATE(1736)] = 46009, - [SMALL_STATE(1737)] = 46063, - [SMALL_STATE(1738)] = 46152, - [SMALL_STATE(1739)] = 46239, - [SMALL_STATE(1740)] = 46328, - [SMALL_STATE(1741)] = 46413, - [SMALL_STATE(1742)] = 46494, - [SMALL_STATE(1743)] = 46581, - [SMALL_STATE(1744)] = 46668, - [SMALL_STATE(1745)] = 46757, - [SMALL_STATE(1746)] = 46846, - [SMALL_STATE(1747)] = 46935, - [SMALL_STATE(1748)] = 47024, - [SMALL_STATE(1749)] = 47097, - [SMALL_STATE(1750)] = 47176, - [SMALL_STATE(1751)] = 47263, - [SMALL_STATE(1752)] = 47350, - [SMALL_STATE(1753)] = 47439, - [SMALL_STATE(1754)] = 47528, - [SMALL_STATE(1755)] = 47615, - [SMALL_STATE(1756)] = 47704, - [SMALL_STATE(1757)] = 47773, - [SMALL_STATE(1758)] = 47840, - [SMALL_STATE(1759)] = 47929, - [SMALL_STATE(1760)] = 48018, - [SMALL_STATE(1761)] = 48107, - [SMALL_STATE(1762)] = 48196, - [SMALL_STATE(1763)] = 48285, - [SMALL_STATE(1764)] = 48370, - [SMALL_STATE(1765)] = 48433, - [SMALL_STATE(1766)] = 48518, - [SMALL_STATE(1767)] = 48605, - [SMALL_STATE(1768)] = 48682, - [SMALL_STATE(1769)] = 48771, - [SMALL_STATE(1770)] = 48858, - [SMALL_STATE(1771)] = 48947, - [SMALL_STATE(1772)] = 49036, - [SMALL_STATE(1773)] = 49125, - [SMALL_STATE(1774)] = 49214, - [SMALL_STATE(1775)] = 49299, - [SMALL_STATE(1776)] = 49380, - [SMALL_STATE(1777)] = 49459, - [SMALL_STATE(1778)] = 49544, - [SMALL_STATE(1779)] = 49633, - [SMALL_STATE(1780)] = 49722, - [SMALL_STATE(1781)] = 49809, - [SMALL_STATE(1782)] = 49898, - [SMALL_STATE(1783)] = 49987, - [SMALL_STATE(1784)] = 50076, - [SMALL_STATE(1785)] = 50163, - [SMALL_STATE(1786)] = 50252, - [SMALL_STATE(1787)] = 50339, - [SMALL_STATE(1788)] = 50426, - [SMALL_STATE(1789)] = 50515, - [SMALL_STATE(1790)] = 50604, - [SMALL_STATE(1791)] = 50693, - [SMALL_STATE(1792)] = 50782, - [SMALL_STATE(1793)] = 50867, - [SMALL_STATE(1794)] = 50932, - [SMALL_STATE(1795)] = 51021, - [SMALL_STATE(1796)] = 51110, - [SMALL_STATE(1797)] = 51199, - [SMALL_STATE(1798)] = 51288, - [SMALL_STATE(1799)] = 51377, - [SMALL_STATE(1800)] = 51466, - [SMALL_STATE(1801)] = 51551, - [SMALL_STATE(1802)] = 51636, - [SMALL_STATE(1803)] = 51723, - [SMALL_STATE(1804)] = 51808, - [SMALL_STATE(1805)] = 51897, - [SMALL_STATE(1806)] = 51984, - [SMALL_STATE(1807)] = 52055, - [SMALL_STATE(1808)] = 52144, - [SMALL_STATE(1809)] = 52231, - [SMALL_STATE(1810)] = 52320, - [SMALL_STATE(1811)] = 52383, - [SMALL_STATE(1812)] = 52468, - [SMALL_STATE(1813)] = 52535, - [SMALL_STATE(1814)] = 52604, - [SMALL_STATE(1815)] = 52677, - [SMALL_STATE(1816)] = 52748, - [SMALL_STATE(1817)] = 52829, - [SMALL_STATE(1818)] = 52906, - [SMALL_STATE(1819)] = 52995, - [SMALL_STATE(1820)] = 53084, - [SMALL_STATE(1821)] = 53171, - [SMALL_STATE(1822)] = 53250, - [SMALL_STATE(1823)] = 53315, - [SMALL_STATE(1824)] = 53400, - [SMALL_STATE(1825)] = 53489, - [SMALL_STATE(1826)] = 53578, - [SMALL_STATE(1827)] = 53667, - [SMALL_STATE(1828)] = 53756, - [SMALL_STATE(1829)] = 53845, - [SMALL_STATE(1830)] = 53930, - [SMALL_STATE(1831)] = 54019, - [SMALL_STATE(1832)] = 54104, - [SMALL_STATE(1833)] = 54191, - [SMALL_STATE(1834)] = 54272, - [SMALL_STATE(1835)] = 54359, - [SMALL_STATE(1836)] = 54444, - [SMALL_STATE(1837)] = 54531, - [SMALL_STATE(1838)] = 54620, - [SMALL_STATE(1839)] = 54709, - [SMALL_STATE(1840)] = 54798, - [SMALL_STATE(1841)] = 54885, - [SMALL_STATE(1842)] = 54974, - [SMALL_STATE(1843)] = 55060, - [SMALL_STATE(1844)] = 55146, - [SMALL_STATE(1845)] = 55222, - [SMALL_STATE(1846)] = 55306, - [SMALL_STATE(1847)] = 55392, - [SMALL_STATE(1848)] = 55478, - [SMALL_STATE(1849)] = 55564, - [SMALL_STATE(1850)] = 55650, - [SMALL_STATE(1851)] = 55736, - [SMALL_STATE(1852)] = 55822, - [SMALL_STATE(1853)] = 55908, - [SMALL_STATE(1854)] = 55994, - [SMALL_STATE(1855)] = 56080, - [SMALL_STATE(1856)] = 56166, - [SMALL_STATE(1857)] = 56252, - [SMALL_STATE(1858)] = 56338, - [SMALL_STATE(1859)] = 56424, - [SMALL_STATE(1860)] = 56510, - [SMALL_STATE(1861)] = 56596, - [SMALL_STATE(1862)] = 56682, - [SMALL_STATE(1863)] = 56768, - [SMALL_STATE(1864)] = 56852, - [SMALL_STATE(1865)] = 56938, - [SMALL_STATE(1866)] = 57024, - [SMALL_STATE(1867)] = 57110, - [SMALL_STATE(1868)] = 57196, - [SMALL_STATE(1869)] = 57282, - [SMALL_STATE(1870)] = 57368, - [SMALL_STATE(1871)] = 57454, - [SMALL_STATE(1872)] = 57540, - [SMALL_STATE(1873)] = 57626, - [SMALL_STATE(1874)] = 57702, - [SMALL_STATE(1875)] = 57788, - [SMALL_STATE(1876)] = 57874, - [SMALL_STATE(1877)] = 57947, - [SMALL_STATE(1878)] = 58020, - [SMALL_STATE(1879)] = 58093, - [SMALL_STATE(1880)] = 58166, - [SMALL_STATE(1881)] = 58239, - [SMALL_STATE(1882)] = 58313, - [SMALL_STATE(1883)] = 58387, - [SMALL_STATE(1884)] = 58461, - [SMALL_STATE(1885)] = 58535, - [SMALL_STATE(1886)] = 58609, - [SMALL_STATE(1887)] = 58683, - [SMALL_STATE(1888)] = 58757, - [SMALL_STATE(1889)] = 58831, - [SMALL_STATE(1890)] = 58877, - [SMALL_STATE(1891)] = 58923, - [SMALL_STATE(1892)] = 58969, - [SMALL_STATE(1893)] = 59030, - [SMALL_STATE(1894)] = 59091, - [SMALL_STATE(1895)] = 59152, - [SMALL_STATE(1896)] = 59213, - [SMALL_STATE(1897)] = 59274, - [SMALL_STATE(1898)] = 59335, - [SMALL_STATE(1899)] = 59396, - [SMALL_STATE(1900)] = 59454, - [SMALL_STATE(1901)] = 59512, - [SMALL_STATE(1902)] = 59560, - [SMALL_STATE(1903)] = 59596, - [SMALL_STATE(1904)] = 59632, - [SMALL_STATE(1905)] = 59685, - [SMALL_STATE(1906)] = 59730, - [SMALL_STATE(1907)] = 59767, - [SMALL_STATE(1908)] = 59804, - [SMALL_STATE(1909)] = 59841, - [SMALL_STATE(1910)] = 59886, - [SMALL_STATE(1911)] = 59931, - [SMALL_STATE(1912)] = 59968, - [SMALL_STATE(1913)] = 60008, - [SMALL_STATE(1914)] = 60048, - [SMALL_STATE(1915)] = 60088, - [SMALL_STATE(1916)] = 60128, - [SMALL_STATE(1917)] = 60163, - [SMALL_STATE(1918)] = 60196, - [SMALL_STATE(1919)] = 60229, - [SMALL_STATE(1920)] = 60262, - [SMALL_STATE(1921)] = 60297, - [SMALL_STATE(1922)] = 60330, - [SMALL_STATE(1923)] = 60365, - [SMALL_STATE(1924)] = 60396, - [SMALL_STATE(1925)] = 60431, - [SMALL_STATE(1926)] = 60463, - [SMALL_STATE(1927)] = 60509, - [SMALL_STATE(1928)] = 60569, - [SMALL_STATE(1929)] = 60601, - [SMALL_STATE(1930)] = 60633, - [SMALL_STATE(1931)] = 60665, - [SMALL_STATE(1932)] = 60725, - [SMALL_STATE(1933)] = 60769, - [SMALL_STATE(1934)] = 60801, - [SMALL_STATE(1935)] = 60833, - [SMALL_STATE(1936)] = 60862, - [SMALL_STATE(1937)] = 60903, - [SMALL_STATE(1938)] = 60936, - [SMALL_STATE(1939)] = 60965, - [SMALL_STATE(1940)] = 60998, - [SMALL_STATE(1941)] = 61029, - [SMALL_STATE(1942)] = 61058, - [SMALL_STATE(1943)] = 61091, - [SMALL_STATE(1944)] = 61124, - [SMALL_STATE(1945)] = 61177, - [SMALL_STATE(1946)] = 61206, - [SMALL_STATE(1947)] = 61237, - [SMALL_STATE(1948)] = 61266, - [SMALL_STATE(1949)] = 61297, - [SMALL_STATE(1950)] = 61350, - [SMALL_STATE(1951)] = 61381, - [SMALL_STATE(1952)] = 61412, - [SMALL_STATE(1953)] = 61445, - [SMALL_STATE(1954)] = 61476, - [SMALL_STATE(1955)] = 61505, - [SMALL_STATE(1956)] = 61534, - [SMALL_STATE(1957)] = 61567, - [SMALL_STATE(1958)] = 61596, - [SMALL_STATE(1959)] = 61627, - [SMALL_STATE(1960)] = 61670, - [SMALL_STATE(1961)] = 61725, - [SMALL_STATE(1962)] = 61754, - [SMALL_STATE(1963)] = 61785, - [SMALL_STATE(1964)] = 61813, - [SMALL_STATE(1965)] = 61841, - [SMALL_STATE(1966)] = 61885, - [SMALL_STATE(1967)] = 61913, - [SMALL_STATE(1968)] = 61941, - [SMALL_STATE(1969)] = 61969, - [SMALL_STATE(1970)] = 61997, - [SMALL_STATE(1971)] = 62025, - [SMALL_STATE(1972)] = 62053, - [SMALL_STATE(1973)] = 62081, - [SMALL_STATE(1974)] = 62109, - [SMALL_STATE(1975)] = 62137, - [SMALL_STATE(1976)] = 62167, - [SMALL_STATE(1977)] = 62195, - [SMALL_STATE(1978)] = 62223, - [SMALL_STATE(1979)] = 62251, - [SMALL_STATE(1980)] = 62279, - [SMALL_STATE(1981)] = 62307, - [SMALL_STATE(1982)] = 62335, - [SMALL_STATE(1983)] = 62363, - [SMALL_STATE(1984)] = 62391, - [SMALL_STATE(1985)] = 62419, - [SMALL_STATE(1986)] = 62447, - [SMALL_STATE(1987)] = 62475, - [SMALL_STATE(1988)] = 62503, - [SMALL_STATE(1989)] = 62531, - [SMALL_STATE(1990)] = 62561, - [SMALL_STATE(1991)] = 62589, - [SMALL_STATE(1992)] = 62617, - [SMALL_STATE(1993)] = 62645, - [SMALL_STATE(1994)] = 62676, - [SMALL_STATE(1995)] = 62727, - [SMALL_STATE(1996)] = 62756, - [SMALL_STATE(1997)] = 62791, - [SMALL_STATE(1998)] = 62823, - [SMALL_STATE(1999)] = 62855, - [SMALL_STATE(2000)] = 62887, - [SMALL_STATE(2001)] = 62919, - [SMALL_STATE(2002)] = 62951, - [SMALL_STATE(2003)] = 62981, - [SMALL_STATE(2004)] = 63013, - [SMALL_STATE(2005)] = 63045, - [SMALL_STATE(2006)] = 63089, - [SMALL_STATE(2007)] = 63121, - [SMALL_STATE(2008)] = 63149, - [SMALL_STATE(2009)] = 63177, - [SMALL_STATE(2010)] = 63209, - [SMALL_STATE(2011)] = 63241, - [SMALL_STATE(2012)] = 63273, - [SMALL_STATE(2013)] = 63305, - [SMALL_STATE(2014)] = 63342, - [SMALL_STATE(2015)] = 63370, - [SMALL_STATE(2016)] = 63408, - [SMALL_STATE(2017)] = 63436, - [SMALL_STATE(2018)] = 63464, - [SMALL_STATE(2019)] = 63492, - [SMALL_STATE(2020)] = 63520, - [SMALL_STATE(2021)] = 63550, - [SMALL_STATE(2022)] = 63580, - [SMALL_STATE(2023)] = 63618, - [SMALL_STATE(2024)] = 63656, - [SMALL_STATE(2025)] = 63694, - [SMALL_STATE(2026)] = 63732, - [SMALL_STATE(2027)] = 63762, - [SMALL_STATE(2028)] = 63796, - [SMALL_STATE(2029)] = 63824, - [SMALL_STATE(2030)] = 63852, - [SMALL_STATE(2031)] = 63876, - [SMALL_STATE(2032)] = 63906, - [SMALL_STATE(2033)] = 63934, - [SMALL_STATE(2034)] = 63958, - [SMALL_STATE(2035)] = 63986, - [SMALL_STATE(2036)] = 64010, - [SMALL_STATE(2037)] = 64038, - [SMALL_STATE(2038)] = 64066, - [SMALL_STATE(2039)] = 64090, - [SMALL_STATE(2040)] = 64128, - [SMALL_STATE(2041)] = 64156, - [SMALL_STATE(2042)] = 64194, - [SMALL_STATE(2043)] = 64218, - [SMALL_STATE(2044)] = 64256, - [SMALL_STATE(2045)] = 64294, - [SMALL_STATE(2046)] = 64328, - [SMALL_STATE(2047)] = 64359, - [SMALL_STATE(2048)] = 64382, - [SMALL_STATE(2049)] = 64405, - [SMALL_STATE(2050)] = 64440, - [SMALL_STATE(2051)] = 64463, - [SMALL_STATE(2052)] = 64486, - [SMALL_STATE(2053)] = 64517, - [SMALL_STATE(2054)] = 64558, - [SMALL_STATE(2055)] = 64595, - [SMALL_STATE(2056)] = 64618, - [SMALL_STATE(2057)] = 64659, - [SMALL_STATE(2058)] = 64682, - [SMALL_STATE(2059)] = 64723, - [SMALL_STATE(2060)] = 64746, - [SMALL_STATE(2061)] = 64769, - [SMALL_STATE(2062)] = 64792, - [SMALL_STATE(2063)] = 64823, - [SMALL_STATE(2064)] = 64846, - [SMALL_STATE(2065)] = 64869, - [SMALL_STATE(2066)] = 64892, - [SMALL_STATE(2067)] = 64915, - [SMALL_STATE(2068)] = 64938, - [SMALL_STATE(2069)] = 64961, - [SMALL_STATE(2070)] = 64996, - [SMALL_STATE(2071)] = 65019, - [SMALL_STATE(2072)] = 65060, - [SMALL_STATE(2073)] = 65083, - [SMALL_STATE(2074)] = 65106, - [SMALL_STATE(2075)] = 65129, - [SMALL_STATE(2076)] = 65152, - [SMALL_STATE(2077)] = 65183, - [SMALL_STATE(2078)] = 65206, - [SMALL_STATE(2079)] = 65243, - [SMALL_STATE(2080)] = 65278, - [SMALL_STATE(2081)] = 65301, - [SMALL_STATE(2082)] = 65324, - [SMALL_STATE(2083)] = 65361, - [SMALL_STATE(2084)] = 65384, - [SMALL_STATE(2085)] = 65407, - [SMALL_STATE(2086)] = 65430, - [SMALL_STATE(2087)] = 65453, - [SMALL_STATE(2088)] = 65476, - [SMALL_STATE(2089)] = 65499, - [SMALL_STATE(2090)] = 65522, - [SMALL_STATE(2091)] = 65545, - [SMALL_STATE(2092)] = 65568, - [SMALL_STATE(2093)] = 65601, - [SMALL_STATE(2094)] = 65624, - [SMALL_STATE(2095)] = 65660, - [SMALL_STATE(2096)] = 65698, - [SMALL_STATE(2097)] = 65726, - [SMALL_STATE(2098)] = 65758, - [SMALL_STATE(2099)] = 65790, - [SMALL_STATE(2100)] = 65818, - [SMALL_STATE(2101)] = 65842, - [SMALL_STATE(2102)] = 65866, - [SMALL_STATE(2103)] = 65898, - [SMALL_STATE(2104)] = 65936, - [SMALL_STATE(2105)] = 65974, - [SMALL_STATE(2106)] = 65998, - [SMALL_STATE(2107)] = 66036, - [SMALL_STATE(2108)] = 66074, - [SMALL_STATE(2109)] = 66108, - [SMALL_STATE(2110)] = 66146, - [SMALL_STATE(2111)] = 66184, - [SMALL_STATE(2112)] = 66220, - [SMALL_STATE(2113)] = 66248, - [SMALL_STATE(2114)] = 66286, - [SMALL_STATE(2115)] = 66314, - [SMALL_STATE(2116)] = 66350, - [SMALL_STATE(2117)] = 66378, - [SMALL_STATE(2118)] = 66414, - [SMALL_STATE(2119)] = 66450, - [SMALL_STATE(2120)] = 66484, - [SMALL_STATE(2121)] = 66508, - [SMALL_STATE(2122)] = 66540, - [SMALL_STATE(2123)] = 66572, - [SMALL_STATE(2124)] = 66600, - [SMALL_STATE(2125)] = 66638, - [SMALL_STATE(2126)] = 66674, - [SMALL_STATE(2127)] = 66708, - [SMALL_STATE(2128)] = 66744, - [SMALL_STATE(2129)] = 66780, - [SMALL_STATE(2130)] = 66812, - [SMALL_STATE(2131)] = 66848, - [SMALL_STATE(2132)] = 66876, - [SMALL_STATE(2133)] = 66914, - [SMALL_STATE(2134)] = 66946, - [SMALL_STATE(2135)] = 66984, - [SMALL_STATE(2136)] = 67018, - [SMALL_STATE(2137)] = 67050, - [SMALL_STATE(2138)] = 67086, - [SMALL_STATE(2139)] = 67118, - [SMALL_STATE(2140)] = 67156, - [SMALL_STATE(2141)] = 67194, - [SMALL_STATE(2142)] = 67232, - [SMALL_STATE(2143)] = 67266, - [SMALL_STATE(2144)] = 67292, - [SMALL_STATE(2145)] = 67324, - [SMALL_STATE(2146)] = 67356, - [SMALL_STATE(2147)] = 67388, - [SMALL_STATE(2148)] = 67426, - [SMALL_STATE(2149)] = 67458, - [SMALL_STATE(2150)] = 67496, - [SMALL_STATE(2151)] = 67522, - [SMALL_STATE(2152)] = 67548, - [SMALL_STATE(2153)] = 67574, - [SMALL_STATE(2154)] = 67598, - [SMALL_STATE(2155)] = 67631, - [SMALL_STATE(2156)] = 67666, - [SMALL_STATE(2157)] = 67701, - [SMALL_STATE(2158)] = 67726, - [SMALL_STATE(2159)] = 67751, - [SMALL_STATE(2160)] = 67786, - [SMALL_STATE(2161)] = 67821, - [SMALL_STATE(2162)] = 67856, - [SMALL_STATE(2163)] = 67891, - [SMALL_STATE(2164)] = 67926, - [SMALL_STATE(2165)] = 67961, - [SMALL_STATE(2166)] = 67990, - [SMALL_STATE(2167)] = 68025, - [SMALL_STATE(2168)] = 68060, - [SMALL_STATE(2169)] = 68095, - [SMALL_STATE(2170)] = 68126, - [SMALL_STATE(2171)] = 68161, - [SMALL_STATE(2172)] = 68186, - [SMALL_STATE(2173)] = 68207, - [SMALL_STATE(2174)] = 68228, - [SMALL_STATE(2175)] = 68249, - [SMALL_STATE(2176)] = 68270, - [SMALL_STATE(2177)] = 68305, - [SMALL_STATE(2178)] = 68326, - [SMALL_STATE(2179)] = 68361, - [SMALL_STATE(2180)] = 68396, - [SMALL_STATE(2181)] = 68429, - [SMALL_STATE(2182)] = 68462, - [SMALL_STATE(2183)] = 68497, - [SMALL_STATE(2184)] = 68532, - [SMALL_STATE(2185)] = 68567, - [SMALL_STATE(2186)] = 68588, - [SMALL_STATE(2187)] = 68623, - [SMALL_STATE(2188)] = 68656, - [SMALL_STATE(2189)] = 68689, - [SMALL_STATE(2190)] = 68724, - [SMALL_STATE(2191)] = 68759, - [SMALL_STATE(2192)] = 68792, - [SMALL_STATE(2193)] = 68819, - [SMALL_STATE(2194)] = 68854, - [SMALL_STATE(2195)] = 68889, - [SMALL_STATE(2196)] = 68922, - [SMALL_STATE(2197)] = 68957, - [SMALL_STATE(2198)] = 68992, - [SMALL_STATE(2199)] = 69027, - [SMALL_STATE(2200)] = 69062, - [SMALL_STATE(2201)] = 69097, - [SMALL_STATE(2202)] = 69118, - [SMALL_STATE(2203)] = 69153, - [SMALL_STATE(2204)] = 69186, - [SMALL_STATE(2205)] = 69221, - [SMALL_STATE(2206)] = 69256, - [SMALL_STATE(2207)] = 69291, - [SMALL_STATE(2208)] = 69326, - [SMALL_STATE(2209)] = 69361, - [SMALL_STATE(2210)] = 69382, - [SMALL_STATE(2211)] = 69415, - [SMALL_STATE(2212)] = 69450, - [SMALL_STATE(2213)] = 69485, - [SMALL_STATE(2214)] = 69520, - [SMALL_STATE(2215)] = 69555, - [SMALL_STATE(2216)] = 69587, - [SMALL_STATE(2217)] = 69619, - [SMALL_STATE(2218)] = 69641, - [SMALL_STATE(2219)] = 69663, - [SMALL_STATE(2220)] = 69695, - [SMALL_STATE(2221)] = 69717, - [SMALL_STATE(2222)] = 69747, - [SMALL_STATE(2223)] = 69777, - [SMALL_STATE(2224)] = 69803, - [SMALL_STATE(2225)] = 69829, - [SMALL_STATE(2226)] = 69859, - [SMALL_STATE(2227)] = 69889, - [SMALL_STATE(2228)] = 69921, - [SMALL_STATE(2229)] = 69953, - [SMALL_STATE(2230)] = 69979, - [SMALL_STATE(2231)] = 70007, - [SMALL_STATE(2232)] = 70039, - [SMALL_STATE(2233)] = 70071, - [SMALL_STATE(2234)] = 70099, - [SMALL_STATE(2235)] = 70131, - [SMALL_STATE(2236)] = 70163, - [SMALL_STATE(2237)] = 70195, - [SMALL_STATE(2238)] = 70227, - [SMALL_STATE(2239)] = 70259, - [SMALL_STATE(2240)] = 70287, - [SMALL_STATE(2241)] = 70319, - [SMALL_STATE(2242)] = 70351, - [SMALL_STATE(2243)] = 70383, - [SMALL_STATE(2244)] = 70415, - [SMALL_STATE(2245)] = 70447, - [SMALL_STATE(2246)] = 70479, - [SMALL_STATE(2247)] = 70511, - [SMALL_STATE(2248)] = 70543, - [SMALL_STATE(2249)] = 70575, - [SMALL_STATE(2250)] = 70607, - [SMALL_STATE(2251)] = 70639, - [SMALL_STATE(2252)] = 70671, - [SMALL_STATE(2253)] = 70701, - [SMALL_STATE(2254)] = 70731, - [SMALL_STATE(2255)] = 70753, - [SMALL_STATE(2256)] = 70783, - [SMALL_STATE(2257)] = 70813, - [SMALL_STATE(2258)] = 70843, - [SMALL_STATE(2259)] = 70873, - [SMALL_STATE(2260)] = 70895, - [SMALL_STATE(2261)] = 70927, - [SMALL_STATE(2262)] = 70955, - [SMALL_STATE(2263)] = 70987, - [SMALL_STATE(2264)] = 71019, - [SMALL_STATE(2265)] = 71051, - [SMALL_STATE(2266)] = 71083, - [SMALL_STATE(2267)] = 71105, - [SMALL_STATE(2268)] = 71137, - [SMALL_STATE(2269)] = 71169, - [SMALL_STATE(2270)] = 71197, - [SMALL_STATE(2271)] = 71223, - [SMALL_STATE(2272)] = 71255, - [SMALL_STATE(2273)] = 71284, - [SMALL_STATE(2274)] = 71305, - [SMALL_STATE(2275)] = 71334, - [SMALL_STATE(2276)] = 71357, - [SMALL_STATE(2277)] = 71386, - [SMALL_STATE(2278)] = 71415, - [SMALL_STATE(2279)] = 71444, - [SMALL_STATE(2280)] = 71473, - [SMALL_STATE(2281)] = 71502, - [SMALL_STATE(2282)] = 71531, - [SMALL_STATE(2283)] = 71550, - [SMALL_STATE(2284)] = 71579, - [SMALL_STATE(2285)] = 71602, - [SMALL_STATE(2286)] = 71631, - [SMALL_STATE(2287)] = 71654, - [SMALL_STATE(2288)] = 71683, - [SMALL_STATE(2289)] = 71712, - [SMALL_STATE(2290)] = 71735, - [SMALL_STATE(2291)] = 71760, - [SMALL_STATE(2292)] = 71789, - [SMALL_STATE(2293)] = 71818, - [SMALL_STATE(2294)] = 71845, - [SMALL_STATE(2295)] = 71874, - [SMALL_STATE(2296)] = 71903, - [SMALL_STATE(2297)] = 71932, - [SMALL_STATE(2298)] = 71955, - [SMALL_STATE(2299)] = 71984, - [SMALL_STATE(2300)] = 72013, - [SMALL_STATE(2301)] = 72042, - [SMALL_STATE(2302)] = 72071, - [SMALL_STATE(2303)] = 72092, - [SMALL_STATE(2304)] = 72119, - [SMALL_STATE(2305)] = 72148, - [SMALL_STATE(2306)] = 72171, - [SMALL_STATE(2307)] = 72198, - [SMALL_STATE(2308)] = 72227, - [SMALL_STATE(2309)] = 72248, - [SMALL_STATE(2310)] = 72277, - [SMALL_STATE(2311)] = 72306, - [SMALL_STATE(2312)] = 72331, - [SMALL_STATE(2313)] = 72356, - [SMALL_STATE(2314)] = 72385, - [SMALL_STATE(2315)] = 72408, - [SMALL_STATE(2316)] = 72437, - [SMALL_STATE(2317)] = 72466, - [SMALL_STATE(2318)] = 72495, - [SMALL_STATE(2319)] = 72514, - [SMALL_STATE(2320)] = 72543, - [SMALL_STATE(2321)] = 72566, - [SMALL_STATE(2322)] = 72589, - [SMALL_STATE(2323)] = 72616, - [SMALL_STATE(2324)] = 72645, - [SMALL_STATE(2325)] = 72674, - [SMALL_STATE(2326)] = 72703, - [SMALL_STATE(2327)] = 72732, - [SMALL_STATE(2328)] = 72761, - [SMALL_STATE(2329)] = 72782, - [SMALL_STATE(2330)] = 72811, - [SMALL_STATE(2331)] = 72840, - [SMALL_STATE(2332)] = 72869, - [SMALL_STATE(2333)] = 72898, - [SMALL_STATE(2334)] = 72925, - [SMALL_STATE(2335)] = 72954, - [SMALL_STATE(2336)] = 72983, - [SMALL_STATE(2337)] = 73012, - [SMALL_STATE(2338)] = 73041, - [SMALL_STATE(2339)] = 73070, - [SMALL_STATE(2340)] = 73099, - [SMALL_STATE(2341)] = 73122, - [SMALL_STATE(2342)] = 73151, - [SMALL_STATE(2343)] = 73176, - [SMALL_STATE(2344)] = 73199, - [SMALL_STATE(2345)] = 73226, - [SMALL_STATE(2346)] = 73255, - [SMALL_STATE(2347)] = 73278, - [SMALL_STATE(2348)] = 73307, - [SMALL_STATE(2349)] = 73328, - [SMALL_STATE(2350)] = 73349, - [SMALL_STATE(2351)] = 73378, - [SMALL_STATE(2352)] = 73399, - [SMALL_STATE(2353)] = 73422, - [SMALL_STATE(2354)] = 73451, - [SMALL_STATE(2355)] = 73480, - [SMALL_STATE(2356)] = 73509, - [SMALL_STATE(2357)] = 73538, - [SMALL_STATE(2358)] = 73567, - [SMALL_STATE(2359)] = 73596, - [SMALL_STATE(2360)] = 73625, - [SMALL_STATE(2361)] = 73654, - [SMALL_STATE(2362)] = 73680, - [SMALL_STATE(2363)] = 73706, - [SMALL_STATE(2364)] = 73728, - [SMALL_STATE(2365)] = 73746, - [SMALL_STATE(2366)] = 73764, - [SMALL_STATE(2367)] = 73782, - [SMALL_STATE(2368)] = 73800, - [SMALL_STATE(2369)] = 73826, - [SMALL_STATE(2370)] = 73852, - [SMALL_STATE(2371)] = 73870, - [SMALL_STATE(2372)] = 73896, - [SMALL_STATE(2373)] = 73920, - [SMALL_STATE(2374)] = 73946, - [SMALL_STATE(2375)] = 73972, - [SMALL_STATE(2376)] = 73998, - [SMALL_STATE(2377)] = 74024, - [SMALL_STATE(2378)] = 74044, - [SMALL_STATE(2379)] = 74070, - [SMALL_STATE(2380)] = 74094, - [SMALL_STATE(2381)] = 74118, - [SMALL_STATE(2382)] = 74140, - [SMALL_STATE(2383)] = 74166, - [SMALL_STATE(2384)] = 74190, - [SMALL_STATE(2385)] = 74210, - [SMALL_STATE(2386)] = 74228, - [SMALL_STATE(2387)] = 74248, - [SMALL_STATE(2388)] = 74266, - [SMALL_STATE(2389)] = 74288, - [SMALL_STATE(2390)] = 74310, - [SMALL_STATE(2391)] = 74336, - [SMALL_STATE(2392)] = 74358, - [SMALL_STATE(2393)] = 74384, - [SMALL_STATE(2394)] = 74402, - [SMALL_STATE(2395)] = 74424, - [SMALL_STATE(2396)] = 74448, - [SMALL_STATE(2397)] = 74474, - [SMALL_STATE(2398)] = 74500, - [SMALL_STATE(2399)] = 74522, - [SMALL_STATE(2400)] = 74548, - [SMALL_STATE(2401)] = 74572, - [SMALL_STATE(2402)] = 74596, - [SMALL_STATE(2403)] = 74620, - [SMALL_STATE(2404)] = 74638, - [SMALL_STATE(2405)] = 74660, - [SMALL_STATE(2406)] = 74686, - [SMALL_STATE(2407)] = 74706, - [SMALL_STATE(2408)] = 74732, - [SMALL_STATE(2409)] = 74750, - [SMALL_STATE(2410)] = 74776, - [SMALL_STATE(2411)] = 74800, - [SMALL_STATE(2412)] = 74822, - [SMALL_STATE(2413)] = 74848, - [SMALL_STATE(2414)] = 74874, - [SMALL_STATE(2415)] = 74900, - [SMALL_STATE(2416)] = 74926, - [SMALL_STATE(2417)] = 74944, - [SMALL_STATE(2418)] = 74970, - [SMALL_STATE(2419)] = 74996, - [SMALL_STATE(2420)] = 75014, - [SMALL_STATE(2421)] = 75040, - [SMALL_STATE(2422)] = 75066, - [SMALL_STATE(2423)] = 75084, - [SMALL_STATE(2424)] = 75102, - [SMALL_STATE(2425)] = 75120, - [SMALL_STATE(2426)] = 75146, - [SMALL_STATE(2427)] = 75164, - [SMALL_STATE(2428)] = 75190, - [SMALL_STATE(2429)] = 75216, - [SMALL_STATE(2430)] = 75242, - [SMALL_STATE(2431)] = 75268, - [SMALL_STATE(2432)] = 75292, - [SMALL_STATE(2433)] = 75318, - [SMALL_STATE(2434)] = 75336, - [SMALL_STATE(2435)] = 75362, - [SMALL_STATE(2436)] = 75386, - [SMALL_STATE(2437)] = 75412, - [SMALL_STATE(2438)] = 75438, - [SMALL_STATE(2439)] = 75456, - [SMALL_STATE(2440)] = 75482, - [SMALL_STATE(2441)] = 75508, - [SMALL_STATE(2442)] = 75534, - [SMALL_STATE(2443)] = 75560, - [SMALL_STATE(2444)] = 75584, - [SMALL_STATE(2445)] = 75602, - [SMALL_STATE(2446)] = 75628, - [SMALL_STATE(2447)] = 75654, - [SMALL_STATE(2448)] = 75680, - [SMALL_STATE(2449)] = 75702, - [SMALL_STATE(2450)] = 75728, - [SMALL_STATE(2451)] = 75754, - [SMALL_STATE(2452)] = 75772, - [SMALL_STATE(2453)] = 75790, - [SMALL_STATE(2454)] = 75816, - [SMALL_STATE(2455)] = 75839, - [SMALL_STATE(2456)] = 75860, - [SMALL_STATE(2457)] = 75879, - [SMALL_STATE(2458)] = 75898, - [SMALL_STATE(2459)] = 75921, - [SMALL_STATE(2460)] = 75944, - [SMALL_STATE(2461)] = 75967, - [SMALL_STATE(2462)] = 75990, - [SMALL_STATE(2463)] = 76013, - [SMALL_STATE(2464)] = 76030, - [SMALL_STATE(2465)] = 76049, - [SMALL_STATE(2466)] = 76072, - [SMALL_STATE(2467)] = 76095, - [SMALL_STATE(2468)] = 76118, - [SMALL_STATE(2469)] = 76139, - [SMALL_STATE(2470)] = 76162, - [SMALL_STATE(2471)] = 76185, - [SMALL_STATE(2472)] = 76208, - [SMALL_STATE(2473)] = 76229, - [SMALL_STATE(2474)] = 76250, - [SMALL_STATE(2475)] = 76271, - [SMALL_STATE(2476)] = 76294, - [SMALL_STATE(2477)] = 76317, - [SMALL_STATE(2478)] = 76340, - [SMALL_STATE(2479)] = 76359, - [SMALL_STATE(2480)] = 76382, - [SMALL_STATE(2481)] = 76405, - [SMALL_STATE(2482)] = 76424, - [SMALL_STATE(2483)] = 76447, - [SMALL_STATE(2484)] = 76470, - [SMALL_STATE(2485)] = 76493, - [SMALL_STATE(2486)] = 76510, - [SMALL_STATE(2487)] = 76533, - [SMALL_STATE(2488)] = 76556, - [SMALL_STATE(2489)] = 76575, - [SMALL_STATE(2490)] = 76598, - [SMALL_STATE(2491)] = 76619, - [SMALL_STATE(2492)] = 76642, - [SMALL_STATE(2493)] = 76665, - [SMALL_STATE(2494)] = 76688, - [SMALL_STATE(2495)] = 76711, - [SMALL_STATE(2496)] = 76734, - [SMALL_STATE(2497)] = 76753, - [SMALL_STATE(2498)] = 76776, - [SMALL_STATE(2499)] = 76799, - [SMALL_STATE(2500)] = 76822, - [SMALL_STATE(2501)] = 76845, - [SMALL_STATE(2502)] = 76868, - [SMALL_STATE(2503)] = 76891, - [SMALL_STATE(2504)] = 76914, - [SMALL_STATE(2505)] = 76933, - [SMALL_STATE(2506)] = 76954, - [SMALL_STATE(2507)] = 76977, - [SMALL_STATE(2508)] = 76998, - [SMALL_STATE(2509)] = 77019, - [SMALL_STATE(2510)] = 77040, - [SMALL_STATE(2511)] = 77057, - [SMALL_STATE(2512)] = 77080, - [SMALL_STATE(2513)] = 77103, - [SMALL_STATE(2514)] = 77126, - [SMALL_STATE(2515)] = 77149, - [SMALL_STATE(2516)] = 77172, - [SMALL_STATE(2517)] = 77195, - [SMALL_STATE(2518)] = 77218, - [SMALL_STATE(2519)] = 77241, - [SMALL_STATE(2520)] = 77264, - [SMALL_STATE(2521)] = 77287, - [SMALL_STATE(2522)] = 77310, - [SMALL_STATE(2523)] = 77333, - [SMALL_STATE(2524)] = 77356, - [SMALL_STATE(2525)] = 77379, - [SMALL_STATE(2526)] = 77402, - [SMALL_STATE(2527)] = 77425, - [SMALL_STATE(2528)] = 77448, - [SMALL_STATE(2529)] = 77471, - [SMALL_STATE(2530)] = 77490, - [SMALL_STATE(2531)] = 77509, - [SMALL_STATE(2532)] = 77528, - [SMALL_STATE(2533)] = 77547, - [SMALL_STATE(2534)] = 77570, - [SMALL_STATE(2535)] = 77593, - [SMALL_STATE(2536)] = 77616, - [SMALL_STATE(2537)] = 77637, - [SMALL_STATE(2538)] = 77656, - [SMALL_STATE(2539)] = 77679, - [SMALL_STATE(2540)] = 77698, - [SMALL_STATE(2541)] = 77719, - [SMALL_STATE(2542)] = 77742, - [SMALL_STATE(2543)] = 77765, - [SMALL_STATE(2544)] = 77784, - [SMALL_STATE(2545)] = 77803, - [SMALL_STATE(2546)] = 77826, - [SMALL_STATE(2547)] = 77849, - [SMALL_STATE(2548)] = 77872, - [SMALL_STATE(2549)] = 77895, - [SMALL_STATE(2550)] = 77916, - [SMALL_STATE(2551)] = 77939, - [SMALL_STATE(2552)] = 77962, - [SMALL_STATE(2553)] = 77981, - [SMALL_STATE(2554)] = 78004, - [SMALL_STATE(2555)] = 78025, - [SMALL_STATE(2556)] = 78048, - [SMALL_STATE(2557)] = 78069, - [SMALL_STATE(2558)] = 78092, - [SMALL_STATE(2559)] = 78113, - [SMALL_STATE(2560)] = 78136, - [SMALL_STATE(2561)] = 78159, - [SMALL_STATE(2562)] = 78182, - [SMALL_STATE(2563)] = 78205, - [SMALL_STATE(2564)] = 78228, - [SMALL_STATE(2565)] = 78249, - [SMALL_STATE(2566)] = 78272, - [SMALL_STATE(2567)] = 78295, - [SMALL_STATE(2568)] = 78318, - [SMALL_STATE(2569)] = 78341, - [SMALL_STATE(2570)] = 78360, - [SMALL_STATE(2571)] = 78383, - [SMALL_STATE(2572)] = 78406, - [SMALL_STATE(2573)] = 78425, - [SMALL_STATE(2574)] = 78448, - [SMALL_STATE(2575)] = 78469, - [SMALL_STATE(2576)] = 78492, - [SMALL_STATE(2577)] = 78515, - [SMALL_STATE(2578)] = 78538, - [SMALL_STATE(2579)] = 78561, - [SMALL_STATE(2580)] = 78582, - [SMALL_STATE(2581)] = 78605, - [SMALL_STATE(2582)] = 78628, - [SMALL_STATE(2583)] = 78651, - [SMALL_STATE(2584)] = 78672, - [SMALL_STATE(2585)] = 78695, - [SMALL_STATE(2586)] = 78718, - [SMALL_STATE(2587)] = 78741, - [SMALL_STATE(2588)] = 78764, - [SMALL_STATE(2589)] = 78781, - [SMALL_STATE(2590)] = 78804, - [SMALL_STATE(2591)] = 78827, - [SMALL_STATE(2592)] = 78850, - [SMALL_STATE(2593)] = 78873, - [SMALL_STATE(2594)] = 78896, - [SMALL_STATE(2595)] = 78919, - [SMALL_STATE(2596)] = 78942, - [SMALL_STATE(2597)] = 78965, - [SMALL_STATE(2598)] = 78988, - [SMALL_STATE(2599)] = 79011, - [SMALL_STATE(2600)] = 79034, - [SMALL_STATE(2601)] = 79057, - [SMALL_STATE(2602)] = 79080, - [SMALL_STATE(2603)] = 79103, - [SMALL_STATE(2604)] = 79124, - [SMALL_STATE(2605)] = 79147, - [SMALL_STATE(2606)] = 79168, - [SMALL_STATE(2607)] = 79191, - [SMALL_STATE(2608)] = 79214, - [SMALL_STATE(2609)] = 79237, - [SMALL_STATE(2610)] = 79260, - [SMALL_STATE(2611)] = 79277, - [SMALL_STATE(2612)] = 79300, - [SMALL_STATE(2613)] = 79323, - [SMALL_STATE(2614)] = 79346, - [SMALL_STATE(2615)] = 79365, - [SMALL_STATE(2616)] = 79388, - [SMALL_STATE(2617)] = 79411, - [SMALL_STATE(2618)] = 79434, - [SMALL_STATE(2619)] = 79457, - [SMALL_STATE(2620)] = 79480, - [SMALL_STATE(2621)] = 79501, - [SMALL_STATE(2622)] = 79524, - [SMALL_STATE(2623)] = 79547, - [SMALL_STATE(2624)] = 79570, - [SMALL_STATE(2625)] = 79593, - [SMALL_STATE(2626)] = 79616, - [SMALL_STATE(2627)] = 79639, - [SMALL_STATE(2628)] = 79662, - [SMALL_STATE(2629)] = 79685, - [SMALL_STATE(2630)] = 79708, - [SMALL_STATE(2631)] = 79731, - [SMALL_STATE(2632)] = 79754, - [SMALL_STATE(2633)] = 79777, - [SMALL_STATE(2634)] = 79800, - [SMALL_STATE(2635)] = 79821, - [SMALL_STATE(2636)] = 79838, - [SMALL_STATE(2637)] = 79861, - [SMALL_STATE(2638)] = 79878, - [SMALL_STATE(2639)] = 79901, - [SMALL_STATE(2640)] = 79924, - [SMALL_STATE(2641)] = 79947, - [SMALL_STATE(2642)] = 79966, - [SMALL_STATE(2643)] = 79985, - [SMALL_STATE(2644)] = 80008, - [SMALL_STATE(2645)] = 80031, - [SMALL_STATE(2646)] = 80054, - [SMALL_STATE(2647)] = 80077, - [SMALL_STATE(2648)] = 80100, - [SMALL_STATE(2649)] = 80123, - [SMALL_STATE(2650)] = 80146, - [SMALL_STATE(2651)] = 80169, - [SMALL_STATE(2652)] = 80192, - [SMALL_STATE(2653)] = 80211, - [SMALL_STATE(2654)] = 80234, - [SMALL_STATE(2655)] = 80257, - [SMALL_STATE(2656)] = 80280, - [SMALL_STATE(2657)] = 80303, - [SMALL_STATE(2658)] = 80326, - [SMALL_STATE(2659)] = 80349, - [SMALL_STATE(2660)] = 80372, - [SMALL_STATE(2661)] = 80391, - [SMALL_STATE(2662)] = 80414, - [SMALL_STATE(2663)] = 80437, - [SMALL_STATE(2664)] = 80460, - [SMALL_STATE(2665)] = 80483, - [SMALL_STATE(2666)] = 80506, - [SMALL_STATE(2667)] = 80529, - [SMALL_STATE(2668)] = 80552, - [SMALL_STATE(2669)] = 80575, - [SMALL_STATE(2670)] = 80598, - [SMALL_STATE(2671)] = 80621, - [SMALL_STATE(2672)] = 80644, - [SMALL_STATE(2673)] = 80667, - [SMALL_STATE(2674)] = 80690, - [SMALL_STATE(2675)] = 80713, - [SMALL_STATE(2676)] = 80736, - [SMALL_STATE(2677)] = 80759, - [SMALL_STATE(2678)] = 80782, - [SMALL_STATE(2679)] = 80805, - [SMALL_STATE(2680)] = 80828, - [SMALL_STATE(2681)] = 80851, - [SMALL_STATE(2682)] = 80874, - [SMALL_STATE(2683)] = 80897, - [SMALL_STATE(2684)] = 80918, - [SMALL_STATE(2685)] = 80939, - [SMALL_STATE(2686)] = 80962, - [SMALL_STATE(2687)] = 80985, - [SMALL_STATE(2688)] = 81008, - [SMALL_STATE(2689)] = 81031, - [SMALL_STATE(2690)] = 81051, - [SMALL_STATE(2691)] = 81071, - [SMALL_STATE(2692)] = 81091, - [SMALL_STATE(2693)] = 81111, - [SMALL_STATE(2694)] = 81129, - [SMALL_STATE(2695)] = 81149, - [SMALL_STATE(2696)] = 81165, - [SMALL_STATE(2697)] = 81185, - [SMALL_STATE(2698)] = 81205, - [SMALL_STATE(2699)] = 81221, - [SMALL_STATE(2700)] = 81241, - [SMALL_STATE(2701)] = 81261, - [SMALL_STATE(2702)] = 81279, - [SMALL_STATE(2703)] = 81295, - [SMALL_STATE(2704)] = 81315, - [SMALL_STATE(2705)] = 81335, - [SMALL_STATE(2706)] = 81355, - [SMALL_STATE(2707)] = 81371, - [SMALL_STATE(2708)] = 81391, - [SMALL_STATE(2709)] = 81411, - [SMALL_STATE(2710)] = 81431, - [SMALL_STATE(2711)] = 81451, - [SMALL_STATE(2712)] = 81471, - [SMALL_STATE(2713)] = 81491, - [SMALL_STATE(2714)] = 81509, - [SMALL_STATE(2715)] = 81527, - [SMALL_STATE(2716)] = 81547, - [SMALL_STATE(2717)] = 81567, - [SMALL_STATE(2718)] = 81587, - [SMALL_STATE(2719)] = 81605, - [SMALL_STATE(2720)] = 81621, - [SMALL_STATE(2721)] = 81637, - [SMALL_STATE(2722)] = 81657, - [SMALL_STATE(2723)] = 81677, - [SMALL_STATE(2724)] = 81697, - [SMALL_STATE(2725)] = 81715, - [SMALL_STATE(2726)] = 81733, - [SMALL_STATE(2727)] = 81753, - [SMALL_STATE(2728)] = 81773, - [SMALL_STATE(2729)] = 81793, - [SMALL_STATE(2730)] = 81813, - [SMALL_STATE(2731)] = 81833, - [SMALL_STATE(2732)] = 81851, - [SMALL_STATE(2733)] = 81871, - [SMALL_STATE(2734)] = 81889, - [SMALL_STATE(2735)] = 81909, - [SMALL_STATE(2736)] = 81929, - [SMALL_STATE(2737)] = 81949, - [SMALL_STATE(2738)] = 81969, - [SMALL_STATE(2739)] = 81987, - [SMALL_STATE(2740)] = 82007, - [SMALL_STATE(2741)] = 82027, - [SMALL_STATE(2742)] = 82047, - [SMALL_STATE(2743)] = 82065, - [SMALL_STATE(2744)] = 82085, - [SMALL_STATE(2745)] = 82105, - [SMALL_STATE(2746)] = 82121, - [SMALL_STATE(2747)] = 82141, - [SMALL_STATE(2748)] = 82161, - [SMALL_STATE(2749)] = 82181, - [SMALL_STATE(2750)] = 82201, - [SMALL_STATE(2751)] = 82217, - [SMALL_STATE(2752)] = 82233, - [SMALL_STATE(2753)] = 82249, - [SMALL_STATE(2754)] = 82265, - [SMALL_STATE(2755)] = 82281, - [SMALL_STATE(2756)] = 82301, - [SMALL_STATE(2757)] = 82317, - [SMALL_STATE(2758)] = 82337, - [SMALL_STATE(2759)] = 82357, - [SMALL_STATE(2760)] = 82377, - [SMALL_STATE(2761)] = 82397, - [SMALL_STATE(2762)] = 82415, - [SMALL_STATE(2763)] = 82435, - [SMALL_STATE(2764)] = 82451, - [SMALL_STATE(2765)] = 82467, - [SMALL_STATE(2766)] = 82483, - [SMALL_STATE(2767)] = 82499, - [SMALL_STATE(2768)] = 82515, - [SMALL_STATE(2769)] = 82531, - [SMALL_STATE(2770)] = 82547, - [SMALL_STATE(2771)] = 82563, - [SMALL_STATE(2772)] = 82583, - [SMALL_STATE(2773)] = 82603, - [SMALL_STATE(2774)] = 82623, - [SMALL_STATE(2775)] = 82643, - [SMALL_STATE(2776)] = 82663, - [SMALL_STATE(2777)] = 82679, - [SMALL_STATE(2778)] = 82699, - [SMALL_STATE(2779)] = 82719, - [SMALL_STATE(2780)] = 82739, - [SMALL_STATE(2781)] = 82755, - [SMALL_STATE(2782)] = 82773, - [SMALL_STATE(2783)] = 82793, - [SMALL_STATE(2784)] = 82811, - [SMALL_STATE(2785)] = 82829, - [SMALL_STATE(2786)] = 82847, - [SMALL_STATE(2787)] = 82867, - [SMALL_STATE(2788)] = 82887, - [SMALL_STATE(2789)] = 82907, - [SMALL_STATE(2790)] = 82927, - [SMALL_STATE(2791)] = 82947, - [SMALL_STATE(2792)] = 82967, - [SMALL_STATE(2793)] = 82987, - [SMALL_STATE(2794)] = 83005, - [SMALL_STATE(2795)] = 83025, - [SMALL_STATE(2796)] = 83045, - [SMALL_STATE(2797)] = 83065, - [SMALL_STATE(2798)] = 83085, - [SMALL_STATE(2799)] = 83105, - [SMALL_STATE(2800)] = 83125, - [SMALL_STATE(2801)] = 83145, - [SMALL_STATE(2802)] = 83165, - [SMALL_STATE(2803)] = 83185, - [SMALL_STATE(2804)] = 83205, - [SMALL_STATE(2805)] = 83225, - [SMALL_STATE(2806)] = 83245, - [SMALL_STATE(2807)] = 83265, - [SMALL_STATE(2808)] = 83285, - [SMALL_STATE(2809)] = 83305, - [SMALL_STATE(2810)] = 83323, - [SMALL_STATE(2811)] = 83343, - [SMALL_STATE(2812)] = 83363, - [SMALL_STATE(2813)] = 83383, - [SMALL_STATE(2814)] = 83401, - [SMALL_STATE(2815)] = 83417, - [SMALL_STATE(2816)] = 83437, - [SMALL_STATE(2817)] = 83457, - [SMALL_STATE(2818)] = 83473, - [SMALL_STATE(2819)] = 83493, - [SMALL_STATE(2820)] = 83513, - [SMALL_STATE(2821)] = 83533, - [SMALL_STATE(2822)] = 83549, - [SMALL_STATE(2823)] = 83567, - [SMALL_STATE(2824)] = 83587, - [SMALL_STATE(2825)] = 83605, - [SMALL_STATE(2826)] = 83621, - [SMALL_STATE(2827)] = 83641, - [SMALL_STATE(2828)] = 83657, - [SMALL_STATE(2829)] = 83673, - [SMALL_STATE(2830)] = 83693, - [SMALL_STATE(2831)] = 83709, - [SMALL_STATE(2832)] = 83729, - [SMALL_STATE(2833)] = 83745, - [SMALL_STATE(2834)] = 83765, - [SMALL_STATE(2835)] = 83785, - [SMALL_STATE(2836)] = 83805, - [SMALL_STATE(2837)] = 83825, - [SMALL_STATE(2838)] = 83845, - [SMALL_STATE(2839)] = 83865, - [SMALL_STATE(2840)] = 83885, - [SMALL_STATE(2841)] = 83905, - [SMALL_STATE(2842)] = 83925, - [SMALL_STATE(2843)] = 83945, - [SMALL_STATE(2844)] = 83961, - [SMALL_STATE(2845)] = 83977, - [SMALL_STATE(2846)] = 83993, - [SMALL_STATE(2847)] = 84013, - [SMALL_STATE(2848)] = 84031, - [SMALL_STATE(2849)] = 84049, - [SMALL_STATE(2850)] = 84069, - [SMALL_STATE(2851)] = 84085, - [SMALL_STATE(2852)] = 84105, - [SMALL_STATE(2853)] = 84125, - [SMALL_STATE(2854)] = 84145, - [SMALL_STATE(2855)] = 84165, - [SMALL_STATE(2856)] = 84181, - [SMALL_STATE(2857)] = 84201, - [SMALL_STATE(2858)] = 84221, - [SMALL_STATE(2859)] = 84241, - [SMALL_STATE(2860)] = 84257, - [SMALL_STATE(2861)] = 84277, - [SMALL_STATE(2862)] = 84297, - [SMALL_STATE(2863)] = 84315, - [SMALL_STATE(2864)] = 84335, - [SMALL_STATE(2865)] = 84353, - [SMALL_STATE(2866)] = 84373, - [SMALL_STATE(2867)] = 84393, - [SMALL_STATE(2868)] = 84411, - [SMALL_STATE(2869)] = 84429, - [SMALL_STATE(2870)] = 84449, - [SMALL_STATE(2871)] = 84465, - [SMALL_STATE(2872)] = 84485, - [SMALL_STATE(2873)] = 84505, - [SMALL_STATE(2874)] = 84525, - [SMALL_STATE(2875)] = 84545, - [SMALL_STATE(2876)] = 84565, - [SMALL_STATE(2877)] = 84583, - [SMALL_STATE(2878)] = 84603, - [SMALL_STATE(2879)] = 84619, - [SMALL_STATE(2880)] = 84637, - [SMALL_STATE(2881)] = 84655, - [SMALL_STATE(2882)] = 84675, - [SMALL_STATE(2883)] = 84695, - [SMALL_STATE(2884)] = 84715, - [SMALL_STATE(2885)] = 84733, - [SMALL_STATE(2886)] = 84751, - [SMALL_STATE(2887)] = 84771, - [SMALL_STATE(2888)] = 84789, - [SMALL_STATE(2889)] = 84807, - [SMALL_STATE(2890)] = 84825, - [SMALL_STATE(2891)] = 84845, - [SMALL_STATE(2892)] = 84861, - [SMALL_STATE(2893)] = 84881, - [SMALL_STATE(2894)] = 84901, - [SMALL_STATE(2895)] = 84921, - [SMALL_STATE(2896)] = 84941, - [SMALL_STATE(2897)] = 84961, - [SMALL_STATE(2898)] = 84979, - [SMALL_STATE(2899)] = 84997, - [SMALL_STATE(2900)] = 85017, - [SMALL_STATE(2901)] = 85037, - [SMALL_STATE(2902)] = 85055, - [SMALL_STATE(2903)] = 85075, - [SMALL_STATE(2904)] = 85095, - [SMALL_STATE(2905)] = 85113, - [SMALL_STATE(2906)] = 85133, - [SMALL_STATE(2907)] = 85149, - [SMALL_STATE(2908)] = 85165, - [SMALL_STATE(2909)] = 85185, - [SMALL_STATE(2910)] = 85205, - [SMALL_STATE(2911)] = 85221, - [SMALL_STATE(2912)] = 85237, - [SMALL_STATE(2913)] = 85257, - [SMALL_STATE(2914)] = 85277, - [SMALL_STATE(2915)] = 85293, - [SMALL_STATE(2916)] = 85313, - [SMALL_STATE(2917)] = 85333, - [SMALL_STATE(2918)] = 85353, - [SMALL_STATE(2919)] = 85373, - [SMALL_STATE(2920)] = 85393, - [SMALL_STATE(2921)] = 85413, - [SMALL_STATE(2922)] = 85433, - [SMALL_STATE(2923)] = 85451, - [SMALL_STATE(2924)] = 85471, - [SMALL_STATE(2925)] = 85489, - [SMALL_STATE(2926)] = 85509, - [SMALL_STATE(2927)] = 85529, - [SMALL_STATE(2928)] = 85549, - [SMALL_STATE(2929)] = 85567, - [SMALL_STATE(2930)] = 85587, - [SMALL_STATE(2931)] = 85607, - [SMALL_STATE(2932)] = 85627, - [SMALL_STATE(2933)] = 85645, - [SMALL_STATE(2934)] = 85665, - [SMALL_STATE(2935)] = 85685, - [SMALL_STATE(2936)] = 85705, - [SMALL_STATE(2937)] = 85723, - [SMALL_STATE(2938)] = 85743, - [SMALL_STATE(2939)] = 85763, - [SMALL_STATE(2940)] = 85783, - [SMALL_STATE(2941)] = 85803, - [SMALL_STATE(2942)] = 85823, - [SMALL_STATE(2943)] = 85843, - [SMALL_STATE(2944)] = 85861, - [SMALL_STATE(2945)] = 85881, - [SMALL_STATE(2946)] = 85901, - [SMALL_STATE(2947)] = 85921, - [SMALL_STATE(2948)] = 85941, - [SMALL_STATE(2949)] = 85961, - [SMALL_STATE(2950)] = 85981, - [SMALL_STATE(2951)] = 86001, - [SMALL_STATE(2952)] = 86021, - [SMALL_STATE(2953)] = 86041, - [SMALL_STATE(2954)] = 86061, - [SMALL_STATE(2955)] = 86081, - [SMALL_STATE(2956)] = 86101, - [SMALL_STATE(2957)] = 86121, - [SMALL_STATE(2958)] = 86141, - [SMALL_STATE(2959)] = 86161, - [SMALL_STATE(2960)] = 86181, - [SMALL_STATE(2961)] = 86201, - [SMALL_STATE(2962)] = 86221, - [SMALL_STATE(2963)] = 86241, - [SMALL_STATE(2964)] = 86257, - [SMALL_STATE(2965)] = 86275, - [SMALL_STATE(2966)] = 86293, - [SMALL_STATE(2967)] = 86309, - [SMALL_STATE(2968)] = 86325, - [SMALL_STATE(2969)] = 86341, - [SMALL_STATE(2970)] = 86357, - [SMALL_STATE(2971)] = 86377, - [SMALL_STATE(2972)] = 86393, - [SMALL_STATE(2973)] = 86413, - [SMALL_STATE(2974)] = 86433, - [SMALL_STATE(2975)] = 86449, - [SMALL_STATE(2976)] = 86465, - [SMALL_STATE(2977)] = 86480, - [SMALL_STATE(2978)] = 86497, - [SMALL_STATE(2979)] = 86514, - [SMALL_STATE(2980)] = 86529, - [SMALL_STATE(2981)] = 86546, - [SMALL_STATE(2982)] = 86563, - [SMALL_STATE(2983)] = 86578, - [SMALL_STATE(2984)] = 86595, - [SMALL_STATE(2985)] = 86612, - [SMALL_STATE(2986)] = 86629, - [SMALL_STATE(2987)] = 86646, - [SMALL_STATE(2988)] = 86663, - [SMALL_STATE(2989)] = 86680, - [SMALL_STATE(2990)] = 86697, - [SMALL_STATE(2991)] = 86714, - [SMALL_STATE(2992)] = 86731, - [SMALL_STATE(2993)] = 86748, - [SMALL_STATE(2994)] = 86765, - [SMALL_STATE(2995)] = 86782, - [SMALL_STATE(2996)] = 86799, - [SMALL_STATE(2997)] = 86816, - [SMALL_STATE(2998)] = 86833, - [SMALL_STATE(2999)] = 86850, - [SMALL_STATE(3000)] = 86867, - [SMALL_STATE(3001)] = 86884, - [SMALL_STATE(3002)] = 86901, - [SMALL_STATE(3003)] = 86918, - [SMALL_STATE(3004)] = 86935, - [SMALL_STATE(3005)] = 86952, - [SMALL_STATE(3006)] = 86969, - [SMALL_STATE(3007)] = 86986, - [SMALL_STATE(3008)] = 87003, - [SMALL_STATE(3009)] = 87018, - [SMALL_STATE(3010)] = 87035, - [SMALL_STATE(3011)] = 87052, - [SMALL_STATE(3012)] = 87069, - [SMALL_STATE(3013)] = 87086, - [SMALL_STATE(3014)] = 87101, - [SMALL_STATE(3015)] = 87118, - [SMALL_STATE(3016)] = 87135, - [SMALL_STATE(3017)] = 87152, - [SMALL_STATE(3018)] = 87167, - [SMALL_STATE(3019)] = 87184, - [SMALL_STATE(3020)] = 87199, - [SMALL_STATE(3021)] = 87216, - [SMALL_STATE(3022)] = 87233, - [SMALL_STATE(3023)] = 87248, - [SMALL_STATE(3024)] = 87265, - [SMALL_STATE(3025)] = 87282, - [SMALL_STATE(3026)] = 87297, - [SMALL_STATE(3027)] = 87314, - [SMALL_STATE(3028)] = 87329, - [SMALL_STATE(3029)] = 87346, - [SMALL_STATE(3030)] = 87363, - [SMALL_STATE(3031)] = 87380, - [SMALL_STATE(3032)] = 87395, - [SMALL_STATE(3033)] = 87412, - [SMALL_STATE(3034)] = 87429, - [SMALL_STATE(3035)] = 87446, - [SMALL_STATE(3036)] = 87463, - [SMALL_STATE(3037)] = 87480, - [SMALL_STATE(3038)] = 87497, - [SMALL_STATE(3039)] = 87514, - [SMALL_STATE(3040)] = 87531, - [SMALL_STATE(3041)] = 87546, - [SMALL_STATE(3042)] = 87563, - [SMALL_STATE(3043)] = 87578, - [SMALL_STATE(3044)] = 87595, - [SMALL_STATE(3045)] = 87612, - [SMALL_STATE(3046)] = 87629, - [SMALL_STATE(3047)] = 87646, - [SMALL_STATE(3048)] = 87663, - [SMALL_STATE(3049)] = 87680, - [SMALL_STATE(3050)] = 87697, - [SMALL_STATE(3051)] = 87712, - [SMALL_STATE(3052)] = 87729, - [SMALL_STATE(3053)] = 87744, - [SMALL_STATE(3054)] = 87761, - [SMALL_STATE(3055)] = 87778, - [SMALL_STATE(3056)] = 87793, - [SMALL_STATE(3057)] = 87810, - [SMALL_STATE(3058)] = 87827, - [SMALL_STATE(3059)] = 87844, - [SMALL_STATE(3060)] = 87859, - [SMALL_STATE(3061)] = 87874, - [SMALL_STATE(3062)] = 87891, - [SMALL_STATE(3063)] = 87908, - [SMALL_STATE(3064)] = 87925, - [SMALL_STATE(3065)] = 87942, - [SMALL_STATE(3066)] = 87959, - [SMALL_STATE(3067)] = 87976, - [SMALL_STATE(3068)] = 87993, - [SMALL_STATE(3069)] = 88010, - [SMALL_STATE(3070)] = 88027, - [SMALL_STATE(3071)] = 88044, - [SMALL_STATE(3072)] = 88061, - [SMALL_STATE(3073)] = 88078, - [SMALL_STATE(3074)] = 88095, - [SMALL_STATE(3075)] = 88112, - [SMALL_STATE(3076)] = 88129, - [SMALL_STATE(3077)] = 88146, - [SMALL_STATE(3078)] = 88161, - [SMALL_STATE(3079)] = 88176, - [SMALL_STATE(3080)] = 88193, - [SMALL_STATE(3081)] = 88210, - [SMALL_STATE(3082)] = 88225, - [SMALL_STATE(3083)] = 88242, - [SMALL_STATE(3084)] = 88257, - [SMALL_STATE(3085)] = 88274, - [SMALL_STATE(3086)] = 88291, - [SMALL_STATE(3087)] = 88306, - [SMALL_STATE(3088)] = 88323, - [SMALL_STATE(3089)] = 88338, - [SMALL_STATE(3090)] = 88353, - [SMALL_STATE(3091)] = 88368, - [SMALL_STATE(3092)] = 88385, - [SMALL_STATE(3093)] = 88402, - [SMALL_STATE(3094)] = 88417, - [SMALL_STATE(3095)] = 88434, - [SMALL_STATE(3096)] = 88451, - [SMALL_STATE(3097)] = 88468, - [SMALL_STATE(3098)] = 88485, - [SMALL_STATE(3099)] = 88502, - [SMALL_STATE(3100)] = 88519, - [SMALL_STATE(3101)] = 88536, - [SMALL_STATE(3102)] = 88553, - [SMALL_STATE(3103)] = 88570, - [SMALL_STATE(3104)] = 88587, - [SMALL_STATE(3105)] = 88602, - [SMALL_STATE(3106)] = 88617, - [SMALL_STATE(3107)] = 88632, - [SMALL_STATE(3108)] = 88649, - [SMALL_STATE(3109)] = 88666, - [SMALL_STATE(3110)] = 88683, - [SMALL_STATE(3111)] = 88700, - [SMALL_STATE(3112)] = 88717, - [SMALL_STATE(3113)] = 88734, - [SMALL_STATE(3114)] = 88751, - [SMALL_STATE(3115)] = 88768, - [SMALL_STATE(3116)] = 88785, - [SMALL_STATE(3117)] = 88800, - [SMALL_STATE(3118)] = 88815, - [SMALL_STATE(3119)] = 88832, - [SMALL_STATE(3120)] = 88849, - [SMALL_STATE(3121)] = 88866, - [SMALL_STATE(3122)] = 88883, - [SMALL_STATE(3123)] = 88900, - [SMALL_STATE(3124)] = 88917, - [SMALL_STATE(3125)] = 88934, - [SMALL_STATE(3126)] = 88949, - [SMALL_STATE(3127)] = 88966, - [SMALL_STATE(3128)] = 88983, - [SMALL_STATE(3129)] = 89000, - [SMALL_STATE(3130)] = 89017, - [SMALL_STATE(3131)] = 89034, - [SMALL_STATE(3132)] = 89051, - [SMALL_STATE(3133)] = 89066, - [SMALL_STATE(3134)] = 89083, - [SMALL_STATE(3135)] = 89098, - [SMALL_STATE(3136)] = 89113, - [SMALL_STATE(3137)] = 89130, - [SMALL_STATE(3138)] = 89147, - [SMALL_STATE(3139)] = 89164, - [SMALL_STATE(3140)] = 89181, - [SMALL_STATE(3141)] = 89198, - [SMALL_STATE(3142)] = 89215, - [SMALL_STATE(3143)] = 89232, - [SMALL_STATE(3144)] = 89249, - [SMALL_STATE(3145)] = 89266, - [SMALL_STATE(3146)] = 89283, - [SMALL_STATE(3147)] = 89300, - [SMALL_STATE(3148)] = 89317, - [SMALL_STATE(3149)] = 89334, - [SMALL_STATE(3150)] = 89349, - [SMALL_STATE(3151)] = 89366, - [SMALL_STATE(3152)] = 89383, - [SMALL_STATE(3153)] = 89400, - [SMALL_STATE(3154)] = 89417, - [SMALL_STATE(3155)] = 89434, - [SMALL_STATE(3156)] = 89451, - [SMALL_STATE(3157)] = 89468, - [SMALL_STATE(3158)] = 89485, - [SMALL_STATE(3159)] = 89502, - [SMALL_STATE(3160)] = 89519, - [SMALL_STATE(3161)] = 89536, - [SMALL_STATE(3162)] = 89553, - [SMALL_STATE(3163)] = 89570, - [SMALL_STATE(3164)] = 89587, - [SMALL_STATE(3165)] = 89604, - [SMALL_STATE(3166)] = 89621, - [SMALL_STATE(3167)] = 89638, - [SMALL_STATE(3168)] = 89655, - [SMALL_STATE(3169)] = 89672, - [SMALL_STATE(3170)] = 89689, - [SMALL_STATE(3171)] = 89704, - [SMALL_STATE(3172)] = 89721, - [SMALL_STATE(3173)] = 89738, - [SMALL_STATE(3174)] = 89755, - [SMALL_STATE(3175)] = 89772, - [SMALL_STATE(3176)] = 89789, - [SMALL_STATE(3177)] = 89806, - [SMALL_STATE(3178)] = 89823, - [SMALL_STATE(3179)] = 89840, - [SMALL_STATE(3180)] = 89857, - [SMALL_STATE(3181)] = 89874, - [SMALL_STATE(3182)] = 89891, - [SMALL_STATE(3183)] = 89908, - [SMALL_STATE(3184)] = 89925, - [SMALL_STATE(3185)] = 89942, - [SMALL_STATE(3186)] = 89959, - [SMALL_STATE(3187)] = 89976, - [SMALL_STATE(3188)] = 89993, - [SMALL_STATE(3189)] = 90010, - [SMALL_STATE(3190)] = 90027, - [SMALL_STATE(3191)] = 90044, - [SMALL_STATE(3192)] = 90061, - [SMALL_STATE(3193)] = 90078, - [SMALL_STATE(3194)] = 90095, - [SMALL_STATE(3195)] = 90112, - [SMALL_STATE(3196)] = 90129, - [SMALL_STATE(3197)] = 90144, - [SMALL_STATE(3198)] = 90161, - [SMALL_STATE(3199)] = 90178, - [SMALL_STATE(3200)] = 90195, - [SMALL_STATE(3201)] = 90212, - [SMALL_STATE(3202)] = 90229, - [SMALL_STATE(3203)] = 90246, - [SMALL_STATE(3204)] = 90263, - [SMALL_STATE(3205)] = 90280, - [SMALL_STATE(3206)] = 90297, - [SMALL_STATE(3207)] = 90312, - [SMALL_STATE(3208)] = 90329, - [SMALL_STATE(3209)] = 90346, - [SMALL_STATE(3210)] = 90363, - [SMALL_STATE(3211)] = 90380, - [SMALL_STATE(3212)] = 90395, - [SMALL_STATE(3213)] = 90412, - [SMALL_STATE(3214)] = 90429, - [SMALL_STATE(3215)] = 90446, - [SMALL_STATE(3216)] = 90463, - [SMALL_STATE(3217)] = 90480, - [SMALL_STATE(3218)] = 90497, - [SMALL_STATE(3219)] = 90514, - [SMALL_STATE(3220)] = 90529, - [SMALL_STATE(3221)] = 90546, - [SMALL_STATE(3222)] = 90563, - [SMALL_STATE(3223)] = 90580, - [SMALL_STATE(3224)] = 90597, - [SMALL_STATE(3225)] = 90614, - [SMALL_STATE(3226)] = 90631, - [SMALL_STATE(3227)] = 90648, - [SMALL_STATE(3228)] = 90663, - [SMALL_STATE(3229)] = 90680, - [SMALL_STATE(3230)] = 90697, - [SMALL_STATE(3231)] = 90714, - [SMALL_STATE(3232)] = 90731, - [SMALL_STATE(3233)] = 90746, - [SMALL_STATE(3234)] = 90763, - [SMALL_STATE(3235)] = 90780, - [SMALL_STATE(3236)] = 90797, - [SMALL_STATE(3237)] = 90814, - [SMALL_STATE(3238)] = 90831, - [SMALL_STATE(3239)] = 90846, - [SMALL_STATE(3240)] = 90863, - [SMALL_STATE(3241)] = 90880, - [SMALL_STATE(3242)] = 90897, - [SMALL_STATE(3243)] = 90914, - [SMALL_STATE(3244)] = 90928, - [SMALL_STATE(3245)] = 90942, - [SMALL_STATE(3246)] = 90956, - [SMALL_STATE(3247)] = 90970, - [SMALL_STATE(3248)] = 90984, - [SMALL_STATE(3249)] = 90998, - [SMALL_STATE(3250)] = 91012, - [SMALL_STATE(3251)] = 91026, - [SMALL_STATE(3252)] = 91040, - [SMALL_STATE(3253)] = 91054, - [SMALL_STATE(3254)] = 91068, - [SMALL_STATE(3255)] = 91082, - [SMALL_STATE(3256)] = 91096, - [SMALL_STATE(3257)] = 91110, - [SMALL_STATE(3258)] = 91124, - [SMALL_STATE(3259)] = 91138, - [SMALL_STATE(3260)] = 91152, - [SMALL_STATE(3261)] = 91166, - [SMALL_STATE(3262)] = 91180, - [SMALL_STATE(3263)] = 91194, - [SMALL_STATE(3264)] = 91208, - [SMALL_STATE(3265)] = 91222, - [SMALL_STATE(3266)] = 91236, - [SMALL_STATE(3267)] = 91250, - [SMALL_STATE(3268)] = 91264, - [SMALL_STATE(3269)] = 91278, - [SMALL_STATE(3270)] = 91292, - [SMALL_STATE(3271)] = 91306, - [SMALL_STATE(3272)] = 91320, - [SMALL_STATE(3273)] = 91334, - [SMALL_STATE(3274)] = 91348, - [SMALL_STATE(3275)] = 91362, - [SMALL_STATE(3276)] = 91376, - [SMALL_STATE(3277)] = 91390, - [SMALL_STATE(3278)] = 91404, - [SMALL_STATE(3279)] = 91418, - [SMALL_STATE(3280)] = 91432, - [SMALL_STATE(3281)] = 91446, - [SMALL_STATE(3282)] = 91460, - [SMALL_STATE(3283)] = 91474, - [SMALL_STATE(3284)] = 91488, - [SMALL_STATE(3285)] = 91502, - [SMALL_STATE(3286)] = 91516, - [SMALL_STATE(3287)] = 91530, - [SMALL_STATE(3288)] = 91544, - [SMALL_STATE(3289)] = 91558, - [SMALL_STATE(3290)] = 91572, - [SMALL_STATE(3291)] = 91586, - [SMALL_STATE(3292)] = 91600, - [SMALL_STATE(3293)] = 91614, - [SMALL_STATE(3294)] = 91628, - [SMALL_STATE(3295)] = 91642, - [SMALL_STATE(3296)] = 91656, - [SMALL_STATE(3297)] = 91670, - [SMALL_STATE(3298)] = 91684, - [SMALL_STATE(3299)] = 91698, - [SMALL_STATE(3300)] = 91712, - [SMALL_STATE(3301)] = 91726, - [SMALL_STATE(3302)] = 91740, - [SMALL_STATE(3303)] = 91754, - [SMALL_STATE(3304)] = 91768, - [SMALL_STATE(3305)] = 91782, - [SMALL_STATE(3306)] = 91796, - [SMALL_STATE(3307)] = 91810, - [SMALL_STATE(3308)] = 91824, - [SMALL_STATE(3309)] = 91838, - [SMALL_STATE(3310)] = 91852, - [SMALL_STATE(3311)] = 91866, - [SMALL_STATE(3312)] = 91880, - [SMALL_STATE(3313)] = 91894, - [SMALL_STATE(3314)] = 91908, - [SMALL_STATE(3315)] = 91922, - [SMALL_STATE(3316)] = 91936, - [SMALL_STATE(3317)] = 91950, - [SMALL_STATE(3318)] = 91964, - [SMALL_STATE(3319)] = 91978, - [SMALL_STATE(3320)] = 91992, - [SMALL_STATE(3321)] = 92006, - [SMALL_STATE(3322)] = 92020, - [SMALL_STATE(3323)] = 92034, - [SMALL_STATE(3324)] = 92048, - [SMALL_STATE(3325)] = 92062, - [SMALL_STATE(3326)] = 92076, - [SMALL_STATE(3327)] = 92090, - [SMALL_STATE(3328)] = 92104, - [SMALL_STATE(3329)] = 92118, - [SMALL_STATE(3330)] = 92132, - [SMALL_STATE(3331)] = 92146, - [SMALL_STATE(3332)] = 92160, - [SMALL_STATE(3333)] = 92174, - [SMALL_STATE(3334)] = 92188, - [SMALL_STATE(3335)] = 92202, - [SMALL_STATE(3336)] = 92216, - [SMALL_STATE(3337)] = 92230, - [SMALL_STATE(3338)] = 92244, - [SMALL_STATE(3339)] = 92258, - [SMALL_STATE(3340)] = 92272, - [SMALL_STATE(3341)] = 92286, - [SMALL_STATE(3342)] = 92300, - [SMALL_STATE(3343)] = 92314, - [SMALL_STATE(3344)] = 92328, - [SMALL_STATE(3345)] = 92342, - [SMALL_STATE(3346)] = 92356, - [SMALL_STATE(3347)] = 92370, - [SMALL_STATE(3348)] = 92384, - [SMALL_STATE(3349)] = 92398, - [SMALL_STATE(3350)] = 92412, - [SMALL_STATE(3351)] = 92426, - [SMALL_STATE(3352)] = 92440, - [SMALL_STATE(3353)] = 92454, - [SMALL_STATE(3354)] = 92468, - [SMALL_STATE(3355)] = 92482, - [SMALL_STATE(3356)] = 92496, - [SMALL_STATE(3357)] = 92510, - [SMALL_STATE(3358)] = 92524, - [SMALL_STATE(3359)] = 92538, - [SMALL_STATE(3360)] = 92552, - [SMALL_STATE(3361)] = 92566, - [SMALL_STATE(3362)] = 92580, - [SMALL_STATE(3363)] = 92594, - [SMALL_STATE(3364)] = 92608, - [SMALL_STATE(3365)] = 92622, - [SMALL_STATE(3366)] = 92636, - [SMALL_STATE(3367)] = 92650, - [SMALL_STATE(3368)] = 92664, - [SMALL_STATE(3369)] = 92678, - [SMALL_STATE(3370)] = 92692, - [SMALL_STATE(3371)] = 92706, - [SMALL_STATE(3372)] = 92720, - [SMALL_STATE(3373)] = 92734, - [SMALL_STATE(3374)] = 92748, - [SMALL_STATE(3375)] = 92762, - [SMALL_STATE(3376)] = 92776, - [SMALL_STATE(3377)] = 92790, - [SMALL_STATE(3378)] = 92804, - [SMALL_STATE(3379)] = 92818, - [SMALL_STATE(3380)] = 92832, - [SMALL_STATE(3381)] = 92846, - [SMALL_STATE(3382)] = 92860, - [SMALL_STATE(3383)] = 92874, - [SMALL_STATE(3384)] = 92888, - [SMALL_STATE(3385)] = 92902, - [SMALL_STATE(3386)] = 92916, - [SMALL_STATE(3387)] = 92930, - [SMALL_STATE(3388)] = 92944, - [SMALL_STATE(3389)] = 92958, - [SMALL_STATE(3390)] = 92972, - [SMALL_STATE(3391)] = 92986, - [SMALL_STATE(3392)] = 93000, - [SMALL_STATE(3393)] = 93014, - [SMALL_STATE(3394)] = 93028, - [SMALL_STATE(3395)] = 93042, - [SMALL_STATE(3396)] = 93056, - [SMALL_STATE(3397)] = 93070, - [SMALL_STATE(3398)] = 93084, - [SMALL_STATE(3399)] = 93098, - [SMALL_STATE(3400)] = 93112, - [SMALL_STATE(3401)] = 93126, - [SMALL_STATE(3402)] = 93140, - [SMALL_STATE(3403)] = 93154, - [SMALL_STATE(3404)] = 93168, - [SMALL_STATE(3405)] = 93182, - [SMALL_STATE(3406)] = 93196, - [SMALL_STATE(3407)] = 93210, - [SMALL_STATE(3408)] = 93224, - [SMALL_STATE(3409)] = 93238, - [SMALL_STATE(3410)] = 93252, - [SMALL_STATE(3411)] = 93266, - [SMALL_STATE(3412)] = 93280, - [SMALL_STATE(3413)] = 93294, - [SMALL_STATE(3414)] = 93308, - [SMALL_STATE(3415)] = 93322, - [SMALL_STATE(3416)] = 93336, - [SMALL_STATE(3417)] = 93350, - [SMALL_STATE(3418)] = 93364, - [SMALL_STATE(3419)] = 93378, - [SMALL_STATE(3420)] = 93392, - [SMALL_STATE(3421)] = 93406, - [SMALL_STATE(3422)] = 93420, - [SMALL_STATE(3423)] = 93434, - [SMALL_STATE(3424)] = 93448, - [SMALL_STATE(3425)] = 93462, - [SMALL_STATE(3426)] = 93476, - [SMALL_STATE(3427)] = 93490, - [SMALL_STATE(3428)] = 93504, - [SMALL_STATE(3429)] = 93518, - [SMALL_STATE(3430)] = 93532, - [SMALL_STATE(3431)] = 93546, - [SMALL_STATE(3432)] = 93560, - [SMALL_STATE(3433)] = 93574, - [SMALL_STATE(3434)] = 93588, - [SMALL_STATE(3435)] = 93602, - [SMALL_STATE(3436)] = 93616, - [SMALL_STATE(3437)] = 93630, - [SMALL_STATE(3438)] = 93644, - [SMALL_STATE(3439)] = 93658, - [SMALL_STATE(3440)] = 93672, - [SMALL_STATE(3441)] = 93686, - [SMALL_STATE(3442)] = 93700, - [SMALL_STATE(3443)] = 93714, - [SMALL_STATE(3444)] = 93728, - [SMALL_STATE(3445)] = 93742, - [SMALL_STATE(3446)] = 93756, - [SMALL_STATE(3447)] = 93770, - [SMALL_STATE(3448)] = 93784, - [SMALL_STATE(3449)] = 93798, - [SMALL_STATE(3450)] = 93812, - [SMALL_STATE(3451)] = 93826, - [SMALL_STATE(3452)] = 93840, - [SMALL_STATE(3453)] = 93854, - [SMALL_STATE(3454)] = 93868, - [SMALL_STATE(3455)] = 93882, - [SMALL_STATE(3456)] = 93896, - [SMALL_STATE(3457)] = 93910, - [SMALL_STATE(3458)] = 93924, - [SMALL_STATE(3459)] = 93938, - [SMALL_STATE(3460)] = 93952, - [SMALL_STATE(3461)] = 93966, - [SMALL_STATE(3462)] = 93980, - [SMALL_STATE(3463)] = 93994, - [SMALL_STATE(3464)] = 94008, - [SMALL_STATE(3465)] = 94022, - [SMALL_STATE(3466)] = 94036, - [SMALL_STATE(3467)] = 94050, - [SMALL_STATE(3468)] = 94064, - [SMALL_STATE(3469)] = 94078, - [SMALL_STATE(3470)] = 94092, - [SMALL_STATE(3471)] = 94106, - [SMALL_STATE(3472)] = 94120, - [SMALL_STATE(3473)] = 94134, - [SMALL_STATE(3474)] = 94148, - [SMALL_STATE(3475)] = 94162, - [SMALL_STATE(3476)] = 94176, - [SMALL_STATE(3477)] = 94190, - [SMALL_STATE(3478)] = 94204, - [SMALL_STATE(3479)] = 94218, - [SMALL_STATE(3480)] = 94232, - [SMALL_STATE(3481)] = 94246, - [SMALL_STATE(3482)] = 94260, - [SMALL_STATE(3483)] = 94274, - [SMALL_STATE(3484)] = 94288, - [SMALL_STATE(3485)] = 94302, - [SMALL_STATE(3486)] = 94316, - [SMALL_STATE(3487)] = 94330, - [SMALL_STATE(3488)] = 94344, - [SMALL_STATE(3489)] = 94358, - [SMALL_STATE(3490)] = 94372, - [SMALL_STATE(3491)] = 94386, - [SMALL_STATE(3492)] = 94400, - [SMALL_STATE(3493)] = 94414, - [SMALL_STATE(3494)] = 94428, - [SMALL_STATE(3495)] = 94442, - [SMALL_STATE(3496)] = 94456, - [SMALL_STATE(3497)] = 94470, - [SMALL_STATE(3498)] = 94484, - [SMALL_STATE(3499)] = 94498, - [SMALL_STATE(3500)] = 94512, - [SMALL_STATE(3501)] = 94526, - [SMALL_STATE(3502)] = 94540, - [SMALL_STATE(3503)] = 94554, - [SMALL_STATE(3504)] = 94568, - [SMALL_STATE(3505)] = 94582, - [SMALL_STATE(3506)] = 94596, - [SMALL_STATE(3507)] = 94610, - [SMALL_STATE(3508)] = 94624, - [SMALL_STATE(3509)] = 94638, - [SMALL_STATE(3510)] = 94652, - [SMALL_STATE(3511)] = 94666, - [SMALL_STATE(3512)] = 94680, - [SMALL_STATE(3513)] = 94694, - [SMALL_STATE(3514)] = 94708, - [SMALL_STATE(3515)] = 94722, - [SMALL_STATE(3516)] = 94736, - [SMALL_STATE(3517)] = 94750, - [SMALL_STATE(3518)] = 94764, - [SMALL_STATE(3519)] = 94778, - [SMALL_STATE(3520)] = 94792, - [SMALL_STATE(3521)] = 94806, - [SMALL_STATE(3522)] = 94820, - [SMALL_STATE(3523)] = 94834, - [SMALL_STATE(3524)] = 94848, - [SMALL_STATE(3525)] = 94852, - [SMALL_STATE(3526)] = 94856, - [SMALL_STATE(3527)] = 94860, - [SMALL_STATE(3528)] = 94864, - [SMALL_STATE(3529)] = 94868, - [SMALL_STATE(3530)] = 94872, + [SMALL_STATE(998)] = 0, + [SMALL_STATE(999)] = 75, + [SMALL_STATE(1000)] = 150, + [SMALL_STATE(1001)] = 224, + [SMALL_STATE(1002)] = 294, + [SMALL_STATE(1003)] = 363, + [SMALL_STATE(1004)] = 459, + [SMALL_STATE(1005)] = 555, + [SMALL_STATE(1006)] = 632, + [SMALL_STATE(1007)] = 706, + [SMALL_STATE(1008)] = 780, + [SMALL_STATE(1009)] = 854, + [SMALL_STATE(1010)] = 921, + [SMALL_STATE(1011)] = 988, + [SMALL_STATE(1012)] = 1059, + [SMALL_STATE(1013)] = 1130, + [SMALL_STATE(1014)] = 1197, + [SMALL_STATE(1015)] = 1260, + [SMALL_STATE(1016)] = 1323, + [SMALL_STATE(1017)] = 1386, + [SMALL_STATE(1018)] = 1457, + [SMALL_STATE(1019)] = 1520, + [SMALL_STATE(1020)] = 1583, + [SMALL_STATE(1021)] = 1646, + [SMALL_STATE(1022)] = 1709, + [SMALL_STATE(1023)] = 1776, + [SMALL_STATE(1024)] = 1839, + [SMALL_STATE(1025)] = 1902, + [SMALL_STATE(1026)] = 1973, + [SMALL_STATE(1027)] = 2039, + [SMALL_STATE(1028)] = 2101, + [SMALL_STATE(1029)] = 2163, + [SMALL_STATE(1030)] = 2225, + [SMALL_STATE(1031)] = 2295, + [SMALL_STATE(1032)] = 2357, + [SMALL_STATE(1033)] = 2419, + [SMALL_STATE(1034)] = 2481, + [SMALL_STATE(1035)] = 2543, + [SMALL_STATE(1036)] = 2611, + [SMALL_STATE(1037)] = 2673, + [SMALL_STATE(1038)] = 2735, + [SMALL_STATE(1039)] = 2798, + [SMALL_STATE(1040)] = 2861, + [SMALL_STATE(1041)] = 2966, + [SMALL_STATE(1042)] = 3031, + [SMALL_STATE(1043)] = 3096, + [SMALL_STATE(1044)] = 3161, + [SMALL_STATE(1045)] = 3224, + [SMALL_STATE(1046)] = 3287, + [SMALL_STATE(1047)] = 3392, + [SMALL_STATE(1048)] = 3455, + [SMALL_STATE(1049)] = 3518, + [SMALL_STATE(1050)] = 3579, + [SMALL_STATE(1051)] = 3640, + [SMALL_STATE(1052)] = 3701, + [SMALL_STATE(1053)] = 3806, + [SMALL_STATE(1054)] = 3911, + [SMALL_STATE(1055)] = 3974, + [SMALL_STATE(1056)] = 4035, + [SMALL_STATE(1057)] = 4096, + [SMALL_STATE(1058)] = 4195, + [SMALL_STATE(1059)] = 4256, + [SMALL_STATE(1060)] = 4317, + [SMALL_STATE(1061)] = 4416, + [SMALL_STATE(1062)] = 4521, + [SMALL_STATE(1063)] = 4584, + [SMALL_STATE(1064)] = 4645, + [SMALL_STATE(1065)] = 4708, + [SMALL_STATE(1066)] = 4771, + [SMALL_STATE(1067)] = 4832, + [SMALL_STATE(1068)] = 4895, + [SMALL_STATE(1069)] = 4958, + [SMALL_STATE(1070)] = 5021, + [SMALL_STATE(1071)] = 5082, + [SMALL_STATE(1072)] = 5143, + [SMALL_STATE(1073)] = 5206, + [SMALL_STATE(1074)] = 5267, + [SMALL_STATE(1075)] = 5330, + [SMALL_STATE(1076)] = 5391, + [SMALL_STATE(1077)] = 5454, + [SMALL_STATE(1078)] = 5519, + [SMALL_STATE(1079)] = 5582, + [SMALL_STATE(1080)] = 5645, + [SMALL_STATE(1081)] = 5706, + [SMALL_STATE(1082)] = 5767, + [SMALL_STATE(1083)] = 5828, + [SMALL_STATE(1084)] = 5933, + [SMALL_STATE(1085)] = 5994, + [SMALL_STATE(1086)] = 6054, + [SMALL_STATE(1087)] = 6114, + [SMALL_STATE(1088)] = 6174, + [SMALL_STATE(1089)] = 6234, + [SMALL_STATE(1090)] = 6294, + [SMALL_STATE(1091)] = 6354, + [SMALL_STATE(1092)] = 6414, + [SMALL_STATE(1093)] = 6476, + [SMALL_STATE(1094)] = 6536, + [SMALL_STATE(1095)] = 6596, + [SMALL_STATE(1096)] = 6656, + [SMALL_STATE(1097)] = 6716, + [SMALL_STATE(1098)] = 6776, + [SMALL_STATE(1099)] = 6836, + [SMALL_STATE(1100)] = 6896, + [SMALL_STATE(1101)] = 6956, + [SMALL_STATE(1102)] = 7016, + [SMALL_STATE(1103)] = 7076, + [SMALL_STATE(1104)] = 7136, + [SMALL_STATE(1105)] = 7196, + [SMALL_STATE(1106)] = 7256, + [SMALL_STATE(1107)] = 7316, + [SMALL_STATE(1108)] = 7376, + [SMALL_STATE(1109)] = 7436, + [SMALL_STATE(1110)] = 7496, + [SMALL_STATE(1111)] = 7556, + [SMALL_STATE(1112)] = 7616, + [SMALL_STATE(1113)] = 7676, + [SMALL_STATE(1114)] = 7736, + [SMALL_STATE(1115)] = 7796, + [SMALL_STATE(1116)] = 7856, + [SMALL_STATE(1117)] = 7916, + [SMALL_STATE(1118)] = 7976, + [SMALL_STATE(1119)] = 8036, + [SMALL_STATE(1120)] = 8096, + [SMALL_STATE(1121)] = 8156, + [SMALL_STATE(1122)] = 8216, + [SMALL_STATE(1123)] = 8276, + [SMALL_STATE(1124)] = 8336, + [SMALL_STATE(1125)] = 8396, + [SMALL_STATE(1126)] = 8456, + [SMALL_STATE(1127)] = 8524, + [SMALL_STATE(1128)] = 8584, + [SMALL_STATE(1129)] = 8644, + [SMALL_STATE(1130)] = 8704, + [SMALL_STATE(1131)] = 8764, + [SMALL_STATE(1132)] = 8824, + [SMALL_STATE(1133)] = 8884, + [SMALL_STATE(1134)] = 8944, + [SMALL_STATE(1135)] = 9004, + [SMALL_STATE(1136)] = 9064, + [SMALL_STATE(1137)] = 9124, + [SMALL_STATE(1138)] = 9184, + [SMALL_STATE(1139)] = 9244, + [SMALL_STATE(1140)] = 9304, + [SMALL_STATE(1141)] = 9364, + [SMALL_STATE(1142)] = 9424, + [SMALL_STATE(1143)] = 9484, + [SMALL_STATE(1144)] = 9544, + [SMALL_STATE(1145)] = 9604, + [SMALL_STATE(1146)] = 9664, + [SMALL_STATE(1147)] = 9724, + [SMALL_STATE(1148)] = 9784, + [SMALL_STATE(1149)] = 9844, + [SMALL_STATE(1150)] = 9906, + [SMALL_STATE(1151)] = 9966, + [SMALL_STATE(1152)] = 10026, + [SMALL_STATE(1153)] = 10086, + [SMALL_STATE(1154)] = 10146, + [SMALL_STATE(1155)] = 10206, + [SMALL_STATE(1156)] = 10266, + [SMALL_STATE(1157)] = 10326, + [SMALL_STATE(1158)] = 10386, + [SMALL_STATE(1159)] = 10446, + [SMALL_STATE(1160)] = 10506, + [SMALL_STATE(1161)] = 10566, + [SMALL_STATE(1162)] = 10626, + [SMALL_STATE(1163)] = 10686, + [SMALL_STATE(1164)] = 10746, + [SMALL_STATE(1165)] = 10806, + [SMALL_STATE(1166)] = 10866, + [SMALL_STATE(1167)] = 10926, + [SMALL_STATE(1168)] = 10986, + [SMALL_STATE(1169)] = 11046, + [SMALL_STATE(1170)] = 11106, + [SMALL_STATE(1171)] = 11166, + [SMALL_STATE(1172)] = 11226, + [SMALL_STATE(1173)] = 11286, + [SMALL_STATE(1174)] = 11346, + [SMALL_STATE(1175)] = 11406, + [SMALL_STATE(1176)] = 11466, + [SMALL_STATE(1177)] = 11526, + [SMALL_STATE(1178)] = 11586, + [SMALL_STATE(1179)] = 11646, + [SMALL_STATE(1180)] = 11706, + [SMALL_STATE(1181)] = 11766, + [SMALL_STATE(1182)] = 11826, + [SMALL_STATE(1183)] = 11886, + [SMALL_STATE(1184)] = 11946, + [SMALL_STATE(1185)] = 12006, + [SMALL_STATE(1186)] = 12066, + [SMALL_STATE(1187)] = 12126, + [SMALL_STATE(1188)] = 12186, + [SMALL_STATE(1189)] = 12246, + [SMALL_STATE(1190)] = 12306, + [SMALL_STATE(1191)] = 12366, + [SMALL_STATE(1192)] = 12426, + [SMALL_STATE(1193)] = 12486, + [SMALL_STATE(1194)] = 12546, + [SMALL_STATE(1195)] = 12606, + [SMALL_STATE(1196)] = 12666, + [SMALL_STATE(1197)] = 12726, + [SMALL_STATE(1198)] = 12786, + [SMALL_STATE(1199)] = 12846, + [SMALL_STATE(1200)] = 12906, + [SMALL_STATE(1201)] = 12966, + [SMALL_STATE(1202)] = 13026, + [SMALL_STATE(1203)] = 13086, + [SMALL_STATE(1204)] = 13146, + [SMALL_STATE(1205)] = 13206, + [SMALL_STATE(1206)] = 13266, + [SMALL_STATE(1207)] = 13326, + [SMALL_STATE(1208)] = 13390, + [SMALL_STATE(1209)] = 13450, + [SMALL_STATE(1210)] = 13510, + [SMALL_STATE(1211)] = 13570, + [SMALL_STATE(1212)] = 13630, + [SMALL_STATE(1213)] = 13690, + [SMALL_STATE(1214)] = 13750, + [SMALL_STATE(1215)] = 13810, + [SMALL_STATE(1216)] = 13870, + [SMALL_STATE(1217)] = 13930, + [SMALL_STATE(1218)] = 13990, + [SMALL_STATE(1219)] = 14050, + [SMALL_STATE(1220)] = 14110, + [SMALL_STATE(1221)] = 14170, + [SMALL_STATE(1222)] = 14230, + [SMALL_STATE(1223)] = 14290, + [SMALL_STATE(1224)] = 14350, + [SMALL_STATE(1225)] = 14410, + [SMALL_STATE(1226)] = 14470, + [SMALL_STATE(1227)] = 14530, + [SMALL_STATE(1228)] = 14590, + [SMALL_STATE(1229)] = 14650, + [SMALL_STATE(1230)] = 14712, + [SMALL_STATE(1231)] = 14772, + [SMALL_STATE(1232)] = 14832, + [SMALL_STATE(1233)] = 14892, + [SMALL_STATE(1234)] = 14952, + [SMALL_STATE(1235)] = 15012, + [SMALL_STATE(1236)] = 15072, + [SMALL_STATE(1237)] = 15132, + [SMALL_STATE(1238)] = 15192, + [SMALL_STATE(1239)] = 15252, + [SMALL_STATE(1240)] = 15312, + [SMALL_STATE(1241)] = 15372, + [SMALL_STATE(1242)] = 15432, + [SMALL_STATE(1243)] = 15492, + [SMALL_STATE(1244)] = 15552, + [SMALL_STATE(1245)] = 15612, + [SMALL_STATE(1246)] = 15672, + [SMALL_STATE(1247)] = 15732, + [SMALL_STATE(1248)] = 15792, + [SMALL_STATE(1249)] = 15852, + [SMALL_STATE(1250)] = 15912, + [SMALL_STATE(1251)] = 15972, + [SMALL_STATE(1252)] = 16032, + [SMALL_STATE(1253)] = 16092, + [SMALL_STATE(1254)] = 16152, + [SMALL_STATE(1255)] = 16212, + [SMALL_STATE(1256)] = 16272, + [SMALL_STATE(1257)] = 16332, + [SMALL_STATE(1258)] = 16392, + [SMALL_STATE(1259)] = 16452, + [SMALL_STATE(1260)] = 16512, + [SMALL_STATE(1261)] = 16572, + [SMALL_STATE(1262)] = 16632, + [SMALL_STATE(1263)] = 16692, + [SMALL_STATE(1264)] = 16752, + [SMALL_STATE(1265)] = 16812, + [SMALL_STATE(1266)] = 16872, + [SMALL_STATE(1267)] = 16932, + [SMALL_STATE(1268)] = 16992, + [SMALL_STATE(1269)] = 17052, + [SMALL_STATE(1270)] = 17112, + [SMALL_STATE(1271)] = 17172, + [SMALL_STATE(1272)] = 17236, + [SMALL_STATE(1273)] = 17296, + [SMALL_STATE(1274)] = 17356, + [SMALL_STATE(1275)] = 17416, + [SMALL_STATE(1276)] = 17476, + [SMALL_STATE(1277)] = 17536, + [SMALL_STATE(1278)] = 17596, + [SMALL_STATE(1279)] = 17656, + [SMALL_STATE(1280)] = 17716, + [SMALL_STATE(1281)] = 17776, + [SMALL_STATE(1282)] = 17836, + [SMALL_STATE(1283)] = 17896, + [SMALL_STATE(1284)] = 17956, + [SMALL_STATE(1285)] = 18016, + [SMALL_STATE(1286)] = 18076, + [SMALL_STATE(1287)] = 18136, + [SMALL_STATE(1288)] = 18196, + [SMALL_STATE(1289)] = 18256, + [SMALL_STATE(1290)] = 18316, + [SMALL_STATE(1291)] = 18376, + [SMALL_STATE(1292)] = 18436, + [SMALL_STATE(1293)] = 18496, + [SMALL_STATE(1294)] = 18556, + [SMALL_STATE(1295)] = 18616, + [SMALL_STATE(1296)] = 18676, + [SMALL_STATE(1297)] = 18736, + [SMALL_STATE(1298)] = 18796, + [SMALL_STATE(1299)] = 18856, + [SMALL_STATE(1300)] = 18916, + [SMALL_STATE(1301)] = 18976, + [SMALL_STATE(1302)] = 19036, + [SMALL_STATE(1303)] = 19096, + [SMALL_STATE(1304)] = 19156, + [SMALL_STATE(1305)] = 19216, + [SMALL_STATE(1306)] = 19276, + [SMALL_STATE(1307)] = 19336, + [SMALL_STATE(1308)] = 19396, + [SMALL_STATE(1309)] = 19456, + [SMALL_STATE(1310)] = 19516, + [SMALL_STATE(1311)] = 19576, + [SMALL_STATE(1312)] = 19636, + [SMALL_STATE(1313)] = 19696, + [SMALL_STATE(1314)] = 19756, + [SMALL_STATE(1315)] = 19816, + [SMALL_STATE(1316)] = 19876, + [SMALL_STATE(1317)] = 19936, + [SMALL_STATE(1318)] = 19996, + [SMALL_STATE(1319)] = 20056, + [SMALL_STATE(1320)] = 20116, + [SMALL_STATE(1321)] = 20176, + [SMALL_STATE(1322)] = 20236, + [SMALL_STATE(1323)] = 20296, + [SMALL_STATE(1324)] = 20356, + [SMALL_STATE(1325)] = 20416, + [SMALL_STATE(1326)] = 20476, + [SMALL_STATE(1327)] = 20536, + [SMALL_STATE(1328)] = 20596, + [SMALL_STATE(1329)] = 20656, + [SMALL_STATE(1330)] = 20716, + [SMALL_STATE(1331)] = 20776, + [SMALL_STATE(1332)] = 20836, + [SMALL_STATE(1333)] = 20896, + [SMALL_STATE(1334)] = 20956, + [SMALL_STATE(1335)] = 21016, + [SMALL_STATE(1336)] = 21076, + [SMALL_STATE(1337)] = 21136, + [SMALL_STATE(1338)] = 21196, + [SMALL_STATE(1339)] = 21256, + [SMALL_STATE(1340)] = 21316, + [SMALL_STATE(1341)] = 21376, + [SMALL_STATE(1342)] = 21436, + [SMALL_STATE(1343)] = 21496, + [SMALL_STATE(1344)] = 21556, + [SMALL_STATE(1345)] = 21616, + [SMALL_STATE(1346)] = 21676, + [SMALL_STATE(1347)] = 21736, + [SMALL_STATE(1348)] = 21796, + [SMALL_STATE(1349)] = 21856, + [SMALL_STATE(1350)] = 21916, + [SMALL_STATE(1351)] = 21976, + [SMALL_STATE(1352)] = 22036, + [SMALL_STATE(1353)] = 22096, + [SMALL_STATE(1354)] = 22156, + [SMALL_STATE(1355)] = 22222, + [SMALL_STATE(1356)] = 22282, + [SMALL_STATE(1357)] = 22342, + [SMALL_STATE(1358)] = 22402, + [SMALL_STATE(1359)] = 22462, + [SMALL_STATE(1360)] = 22522, + [SMALL_STATE(1361)] = 22582, + [SMALL_STATE(1362)] = 22642, + [SMALL_STATE(1363)] = 22702, + [SMALL_STATE(1364)] = 22762, + [SMALL_STATE(1365)] = 22822, + [SMALL_STATE(1366)] = 22882, + [SMALL_STATE(1367)] = 22942, + [SMALL_STATE(1368)] = 23002, + [SMALL_STATE(1369)] = 23062, + [SMALL_STATE(1370)] = 23122, + [SMALL_STATE(1371)] = 23182, + [SMALL_STATE(1372)] = 23248, + [SMALL_STATE(1373)] = 23308, + [SMALL_STATE(1374)] = 23368, + [SMALL_STATE(1375)] = 23428, + [SMALL_STATE(1376)] = 23488, + [SMALL_STATE(1377)] = 23548, + [SMALL_STATE(1378)] = 23610, + [SMALL_STATE(1379)] = 23670, + [SMALL_STATE(1380)] = 23730, + [SMALL_STATE(1381)] = 23790, + [SMALL_STATE(1382)] = 23850, + [SMALL_STATE(1383)] = 23910, + [SMALL_STATE(1384)] = 23970, + [SMALL_STATE(1385)] = 24030, + [SMALL_STATE(1386)] = 24096, + [SMALL_STATE(1387)] = 24156, + [SMALL_STATE(1388)] = 24216, + [SMALL_STATE(1389)] = 24276, + [SMALL_STATE(1390)] = 24336, + [SMALL_STATE(1391)] = 24396, + [SMALL_STATE(1392)] = 24456, + [SMALL_STATE(1393)] = 24516, + [SMALL_STATE(1394)] = 24576, + [SMALL_STATE(1395)] = 24636, + [SMALL_STATE(1396)] = 24696, + [SMALL_STATE(1397)] = 24756, + [SMALL_STATE(1398)] = 24816, + [SMALL_STATE(1399)] = 24876, + [SMALL_STATE(1400)] = 24936, + [SMALL_STATE(1401)] = 24996, + [SMALL_STATE(1402)] = 25056, + [SMALL_STATE(1403)] = 25116, + [SMALL_STATE(1404)] = 25176, + [SMALL_STATE(1405)] = 25236, + [SMALL_STATE(1406)] = 25296, + [SMALL_STATE(1407)] = 25356, + [SMALL_STATE(1408)] = 25416, + [SMALL_STATE(1409)] = 25476, + [SMALL_STATE(1410)] = 25536, + [SMALL_STATE(1411)] = 25596, + [SMALL_STATE(1412)] = 25656, + [SMALL_STATE(1413)] = 25716, + [SMALL_STATE(1414)] = 25776, + [SMALL_STATE(1415)] = 25836, + [SMALL_STATE(1416)] = 25896, + [SMALL_STATE(1417)] = 25956, + [SMALL_STATE(1418)] = 26016, + [SMALL_STATE(1419)] = 26076, + [SMALL_STATE(1420)] = 26136, + [SMALL_STATE(1421)] = 26196, + [SMALL_STATE(1422)] = 26256, + [SMALL_STATE(1423)] = 26316, + [SMALL_STATE(1424)] = 26376, + [SMALL_STATE(1425)] = 26436, + [SMALL_STATE(1426)] = 26496, + [SMALL_STATE(1427)] = 26556, + [SMALL_STATE(1428)] = 26616, + [SMALL_STATE(1429)] = 26676, + [SMALL_STATE(1430)] = 26736, + [SMALL_STATE(1431)] = 26796, + [SMALL_STATE(1432)] = 26856, + [SMALL_STATE(1433)] = 26916, + [SMALL_STATE(1434)] = 26976, + [SMALL_STATE(1435)] = 27036, + [SMALL_STATE(1436)] = 27096, + [SMALL_STATE(1437)] = 27156, + [SMALL_STATE(1438)] = 27216, + [SMALL_STATE(1439)] = 27276, + [SMALL_STATE(1440)] = 27336, + [SMALL_STATE(1441)] = 27396, + [SMALL_STATE(1442)] = 27456, + [SMALL_STATE(1443)] = 27516, + [SMALL_STATE(1444)] = 27576, + [SMALL_STATE(1445)] = 27636, + [SMALL_STATE(1446)] = 27696, + [SMALL_STATE(1447)] = 27756, + [SMALL_STATE(1448)] = 27816, + [SMALL_STATE(1449)] = 27876, + [SMALL_STATE(1450)] = 27936, + [SMALL_STATE(1451)] = 27996, + [SMALL_STATE(1452)] = 28056, + [SMALL_STATE(1453)] = 28116, + [SMALL_STATE(1454)] = 28176, + [SMALL_STATE(1455)] = 28236, + [SMALL_STATE(1456)] = 28296, + [SMALL_STATE(1457)] = 28356, + [SMALL_STATE(1458)] = 28416, + [SMALL_STATE(1459)] = 28511, + [SMALL_STATE(1460)] = 28570, + [SMALL_STATE(1461)] = 28631, + [SMALL_STATE(1462)] = 28690, + [SMALL_STATE(1463)] = 28749, + [SMALL_STATE(1464)] = 28844, + [SMALL_STATE(1465)] = 28903, + [SMALL_STATE(1466)] = 28992, + [SMALL_STATE(1467)] = 29053, + [SMALL_STATE(1468)] = 29112, + [SMALL_STATE(1469)] = 29171, + [SMALL_STATE(1470)] = 29230, + [SMALL_STATE(1471)] = 29319, + [SMALL_STATE(1472)] = 29417, + [SMALL_STATE(1473)] = 29509, + [SMALL_STATE(1474)] = 29599, + [SMALL_STATE(1475)] = 29689, + [SMALL_STATE(1476)] = 29779, + [SMALL_STATE(1477)] = 29869, + [SMALL_STATE(1478)] = 29939, + [SMALL_STATE(1479)] = 30023, + [SMALL_STATE(1480)] = 30105, + [SMALL_STATE(1481)] = 30191, + [SMALL_STATE(1482)] = 30261, + [SMALL_STATE(1483)] = 30337, + [SMALL_STATE(1484)] = 30435, + [SMALL_STATE(1485)] = 30521, + [SMALL_STATE(1486)] = 30613, + [SMALL_STATE(1487)] = 30691, + [SMALL_STATE(1488)] = 30781, + [SMALL_STATE(1489)] = 30855, + [SMALL_STATE(1490)] = 30927, + [SMALL_STATE(1491)] = 31017, + [SMALL_STATE(1492)] = 31085, + [SMALL_STATE(1493)] = 31177, + [SMALL_STATE(1494)] = 31275, + [SMALL_STATE(1495)] = 31341, + [SMALL_STATE(1496)] = 31406, + [SMALL_STATE(1497)] = 31473, + [SMALL_STATE(1498)] = 31540, + [SMALL_STATE(1499)] = 31607, + [SMALL_STATE(1500)] = 31670, + [SMALL_STATE(1501)] = 31733, + [SMALL_STATE(1502)] = 31789, + [SMALL_STATE(1503)] = 31845, + [SMALL_STATE(1504)] = 31901, + [SMALL_STATE(1505)] = 31961, + [SMALL_STATE(1506)] = 32019, + [SMALL_STATE(1507)] = 32101, + [SMALL_STATE(1508)] = 32159, + [SMALL_STATE(1509)] = 32219, + [SMALL_STATE(1510)] = 32275, + [SMALL_STATE(1511)] = 32331, + [SMALL_STATE(1512)] = 32387, + [SMALL_STATE(1513)] = 32445, + [SMALL_STATE(1514)] = 32527, + [SMALL_STATE(1515)] = 32583, + [SMALL_STATE(1516)] = 32665, + [SMALL_STATE(1517)] = 32729, + [SMALL_STATE(1518)] = 32789, + [SMALL_STATE(1519)] = 32853, + [SMALL_STATE(1520)] = 32913, + [SMALL_STATE(1521)] = 32969, + [SMALL_STATE(1522)] = 33051, + [SMALL_STATE(1523)] = 33109, + [SMALL_STATE(1524)] = 33169, + [SMALL_STATE(1525)] = 33233, + [SMALL_STATE(1526)] = 33297, + [SMALL_STATE(1527)] = 33355, + [SMALL_STATE(1528)] = 33415, + [SMALL_STATE(1529)] = 33473, + [SMALL_STATE(1530)] = 33529, + [SMALL_STATE(1531)] = 33589, + [SMALL_STATE(1532)] = 33646, + [SMALL_STATE(1533)] = 33701, + [SMALL_STATE(1534)] = 33758, + [SMALL_STATE(1535)] = 33815, + [SMALL_STATE(1536)] = 33910, + [SMALL_STATE(1537)] = 34005, + [SMALL_STATE(1538)] = 34100, + [SMALL_STATE(1539)] = 34195, + [SMALL_STATE(1540)] = 34290, + [SMALL_STATE(1541)] = 34385, + [SMALL_STATE(1542)] = 34480, + [SMALL_STATE(1543)] = 34539, + [SMALL_STATE(1544)] = 34594, + [SMALL_STATE(1545)] = 34689, + [SMALL_STATE(1546)] = 34744, + [SMALL_STATE(1547)] = 34799, + [SMALL_STATE(1548)] = 34856, + [SMALL_STATE(1549)] = 34913, + [SMALL_STATE(1550)] = 34968, + [SMALL_STATE(1551)] = 35025, + [SMALL_STATE(1552)] = 35120, + [SMALL_STATE(1553)] = 35175, + [SMALL_STATE(1554)] = 35270, + [SMALL_STATE(1555)] = 35329, + [SMALL_STATE(1556)] = 35388, + [SMALL_STATE(1557)] = 35445, + [SMALL_STATE(1558)] = 35500, + [SMALL_STATE(1559)] = 35559, + [SMALL_STATE(1560)] = 35654, + [SMALL_STATE(1561)] = 35749, + [SMALL_STATE(1562)] = 35804, + [SMALL_STATE(1563)] = 35872, + [SMALL_STATE(1564)] = 35960, + [SMALL_STATE(1565)] = 36052, + [SMALL_STATE(1566)] = 36140, + [SMALL_STATE(1567)] = 36194, + [SMALL_STATE(1568)] = 36286, + [SMALL_STATE(1569)] = 36372, + [SMALL_STATE(1570)] = 36428, + [SMALL_STATE(1571)] = 36484, + [SMALL_STATE(1572)] = 36572, + [SMALL_STATE(1573)] = 36658, + [SMALL_STATE(1574)] = 36746, + [SMALL_STATE(1575)] = 36802, + [SMALL_STATE(1576)] = 36890, + [SMALL_STATE(1577)] = 36944, + [SMALL_STATE(1578)] = 37000, + [SMALL_STATE(1579)] = 37054, + [SMALL_STATE(1580)] = 37108, + [SMALL_STATE(1581)] = 37178, + [SMALL_STATE(1582)] = 37234, + [SMALL_STATE(1583)] = 37322, + [SMALL_STATE(1584)] = 37378, + [SMALL_STATE(1585)] = 37452, + [SMALL_STATE(1586)] = 37524, + [SMALL_STATE(1587)] = 37580, + [SMALL_STATE(1588)] = 37634, + [SMALL_STATE(1589)] = 37716, + [SMALL_STATE(1590)] = 37794, + [SMALL_STATE(1591)] = 37874, + [SMALL_STATE(1592)] = 37940, + [SMALL_STATE(1593)] = 38026, + [SMALL_STATE(1594)] = 38118, + [SMALL_STATE(1595)] = 38210, + [SMALL_STATE(1596)] = 38266, + [SMALL_STATE(1597)] = 38320, + [SMALL_STATE(1598)] = 38374, + [SMALL_STATE(1599)] = 38430, + [SMALL_STATE(1600)] = 38484, + [SMALL_STATE(1601)] = 38538, + [SMALL_STATE(1602)] = 38630, + [SMALL_STATE(1603)] = 38686, + [SMALL_STATE(1604)] = 38744, + [SMALL_STATE(1605)] = 38832, + [SMALL_STATE(1606)] = 38896, + [SMALL_STATE(1607)] = 38950, + [SMALL_STATE(1608)] = 39004, + [SMALL_STATE(1609)] = 39096, + [SMALL_STATE(1610)] = 39152, + [SMALL_STATE(1611)] = 39208, + [SMALL_STATE(1612)] = 39264, + [SMALL_STATE(1613)] = 39346, + [SMALL_STATE(1614)] = 39400, + [SMALL_STATE(1615)] = 39454, + [SMALL_STATE(1616)] = 39540, + [SMALL_STATE(1617)] = 39626, + [SMALL_STATE(1618)] = 39680, + [SMALL_STATE(1619)] = 39736, + [SMALL_STATE(1620)] = 39790, + [SMALL_STATE(1621)] = 39878, + [SMALL_STATE(1622)] = 39934, + [SMALL_STATE(1623)] = 39990, + [SMALL_STATE(1624)] = 40044, + [SMALL_STATE(1625)] = 40130, + [SMALL_STATE(1626)] = 40193, + [SMALL_STATE(1627)] = 40282, + [SMALL_STATE(1628)] = 40371, + [SMALL_STATE(1629)] = 40424, + [SMALL_STATE(1630)] = 40513, + [SMALL_STATE(1631)] = 40566, + [SMALL_STATE(1632)] = 40619, + [SMALL_STATE(1633)] = 40704, + [SMALL_STATE(1634)] = 40757, + [SMALL_STATE(1635)] = 40810, + [SMALL_STATE(1636)] = 40863, + [SMALL_STATE(1637)] = 40952, + [SMALL_STATE(1638)] = 41041, + [SMALL_STATE(1639)] = 41094, + [SMALL_STATE(1640)] = 41147, + [SMALL_STATE(1641)] = 41234, + [SMALL_STATE(1642)] = 41323, + [SMALL_STATE(1643)] = 41412, + [SMALL_STATE(1644)] = 41465, + [SMALL_STATE(1645)] = 41518, + [SMALL_STATE(1646)] = 41607, + [SMALL_STATE(1647)] = 41660, + [SMALL_STATE(1648)] = 41713, + [SMALL_STATE(1649)] = 41802, + [SMALL_STATE(1650)] = 41891, + [SMALL_STATE(1651)] = 41980, + [SMALL_STATE(1652)] = 42033, + [SMALL_STATE(1653)] = 42086, + [SMALL_STATE(1654)] = 42175, + [SMALL_STATE(1655)] = 42228, + [SMALL_STATE(1656)] = 42317, + [SMALL_STATE(1657)] = 42406, + [SMALL_STATE(1658)] = 42459, + [SMALL_STATE(1659)] = 42512, + [SMALL_STATE(1660)] = 42565, + [SMALL_STATE(1661)] = 42618, + [SMALL_STATE(1662)] = 42703, + [SMALL_STATE(1663)] = 42792, + [SMALL_STATE(1664)] = 42879, + [SMALL_STATE(1665)] = 42932, + [SMALL_STATE(1666)] = 43021, + [SMALL_STATE(1667)] = 43074, + [SMALL_STATE(1668)] = 43127, + [SMALL_STATE(1669)] = 43180, + [SMALL_STATE(1670)] = 43233, + [SMALL_STATE(1671)] = 43286, + [SMALL_STATE(1672)] = 43373, + [SMALL_STATE(1673)] = 43462, + [SMALL_STATE(1674)] = 43515, + [SMALL_STATE(1675)] = 43568, + [SMALL_STATE(1676)] = 43621, + [SMALL_STATE(1677)] = 43674, + [SMALL_STATE(1678)] = 43761, + [SMALL_STATE(1679)] = 43848, + [SMALL_STATE(1680)] = 43927, + [SMALL_STATE(1681)] = 43992, + [SMALL_STATE(1682)] = 44045, + [SMALL_STATE(1683)] = 44098, + [SMALL_STATE(1684)] = 44185, + [SMALL_STATE(1685)] = 44272, + [SMALL_STATE(1686)] = 44325, + [SMALL_STATE(1687)] = 44378, + [SMALL_STATE(1688)] = 44431, + [SMALL_STATE(1689)] = 44484, + [SMALL_STATE(1690)] = 44537, + [SMALL_STATE(1691)] = 44590, + [SMALL_STATE(1692)] = 44643, + [SMALL_STATE(1693)] = 44696, + [SMALL_STATE(1694)] = 44749, + [SMALL_STATE(1695)] = 44838, + [SMALL_STATE(1696)] = 44897, + [SMALL_STATE(1697)] = 44950, + [SMALL_STATE(1698)] = 45037, + [SMALL_STATE(1699)] = 45126, + [SMALL_STATE(1700)] = 45185, + [SMALL_STATE(1701)] = 45274, + [SMALL_STATE(1702)] = 45343, + [SMALL_STATE(1703)] = 45428, + [SMALL_STATE(1704)] = 45481, + [SMALL_STATE(1705)] = 45568, + [SMALL_STATE(1706)] = 45657, + [SMALL_STATE(1707)] = 45742, + [SMALL_STATE(1708)] = 45795, + [SMALL_STATE(1709)] = 45882, + [SMALL_STATE(1710)] = 45935, + [SMALL_STATE(1711)] = 45988, + [SMALL_STATE(1712)] = 46041, + [SMALL_STATE(1713)] = 46122, + [SMALL_STATE(1714)] = 46207, + [SMALL_STATE(1715)] = 46296, + [SMALL_STATE(1716)] = 46383, + [SMALL_STATE(1717)] = 46472, + [SMALL_STATE(1718)] = 46525, + [SMALL_STATE(1719)] = 46578, + [SMALL_STATE(1720)] = 46631, + [SMALL_STATE(1721)] = 46716, + [SMALL_STATE(1722)] = 46801, + [SMALL_STATE(1723)] = 46872, + [SMALL_STATE(1724)] = 46925, + [SMALL_STATE(1725)] = 46978, + [SMALL_STATE(1726)] = 47031, + [SMALL_STATE(1727)] = 47120, + [SMALL_STATE(1728)] = 47173, + [SMALL_STATE(1729)] = 47226, + [SMALL_STATE(1730)] = 47311, + [SMALL_STATE(1731)] = 47364, + [SMALL_STATE(1732)] = 47437, + [SMALL_STATE(1733)] = 47518, + [SMALL_STATE(1734)] = 47603, + [SMALL_STATE(1735)] = 47690, + [SMALL_STATE(1736)] = 47777, + [SMALL_STATE(1737)] = 47830, + [SMALL_STATE(1738)] = 47883, + [SMALL_STATE(1739)] = 47970, + [SMALL_STATE(1740)] = 48023, + [SMALL_STATE(1741)] = 48076, + [SMALL_STATE(1742)] = 48129, + [SMALL_STATE(1743)] = 48218, + [SMALL_STATE(1744)] = 48271, + [SMALL_STATE(1745)] = 48360, + [SMALL_STATE(1746)] = 48449, + [SMALL_STATE(1747)] = 48538, + [SMALL_STATE(1748)] = 48627, + [SMALL_STATE(1749)] = 48716, + [SMALL_STATE(1750)] = 48769, + [SMALL_STATE(1751)] = 48856, + [SMALL_STATE(1752)] = 48909, + [SMALL_STATE(1753)] = 48998, + [SMALL_STATE(1754)] = 49085, + [SMALL_STATE(1755)] = 49138, + [SMALL_STATE(1756)] = 49191, + [SMALL_STATE(1757)] = 49258, + [SMALL_STATE(1758)] = 49311, + [SMALL_STATE(1759)] = 49364, + [SMALL_STATE(1760)] = 49417, + [SMALL_STATE(1761)] = 49470, + [SMALL_STATE(1762)] = 49559, + [SMALL_STATE(1763)] = 49612, + [SMALL_STATE(1764)] = 49701, + [SMALL_STATE(1765)] = 49760, + [SMALL_STATE(1766)] = 49849, + [SMALL_STATE(1767)] = 49938, + [SMALL_STATE(1768)] = 50027, + [SMALL_STATE(1769)] = 50080, + [SMALL_STATE(1770)] = 50165, + [SMALL_STATE(1771)] = 50218, + [SMALL_STATE(1772)] = 50271, + [SMALL_STATE(1773)] = 50358, + [SMALL_STATE(1774)] = 50411, + [SMALL_STATE(1775)] = 50464, + [SMALL_STATE(1776)] = 50517, + [SMALL_STATE(1777)] = 50570, + [SMALL_STATE(1778)] = 50623, + [SMALL_STATE(1779)] = 50676, + [SMALL_STATE(1780)] = 50765, + [SMALL_STATE(1781)] = 50854, + [SMALL_STATE(1782)] = 50935, + [SMALL_STATE(1783)] = 51020, + [SMALL_STATE(1784)] = 51097, + [SMALL_STATE(1785)] = 51150, + [SMALL_STATE(1786)] = 51239, + [SMALL_STATE(1787)] = 51328, + [SMALL_STATE(1788)] = 51381, + [SMALL_STATE(1789)] = 51442, + [SMALL_STATE(1790)] = 51531, + [SMALL_STATE(1791)] = 51584, + [SMALL_STATE(1792)] = 51637, + [SMALL_STATE(1793)] = 51722, + [SMALL_STATE(1794)] = 51787, + [SMALL_STATE(1795)] = 51840, + [SMALL_STATE(1796)] = 51929, + [SMALL_STATE(1797)] = 52008, + [SMALL_STATE(1798)] = 52061, + [SMALL_STATE(1799)] = 52138, + [SMALL_STATE(1800)] = 52191, + [SMALL_STATE(1801)] = 52244, + [SMALL_STATE(1802)] = 52325, + [SMALL_STATE(1803)] = 52414, + [SMALL_STATE(1804)] = 52467, + [SMALL_STATE(1805)] = 52538, + [SMALL_STATE(1806)] = 52627, + [SMALL_STATE(1807)] = 52700, + [SMALL_STATE(1808)] = 52769, + [SMALL_STATE(1809)] = 52854, + [SMALL_STATE(1810)] = 52921, + [SMALL_STATE(1811)] = 53006, + [SMALL_STATE(1812)] = 53069, + [SMALL_STATE(1813)] = 53122, + [SMALL_STATE(1814)] = 53175, + [SMALL_STATE(1815)] = 53264, + [SMALL_STATE(1816)] = 53317, + [SMALL_STATE(1817)] = 53406, + [SMALL_STATE(1818)] = 53459, + [SMALL_STATE(1819)] = 53538, + [SMALL_STATE(1820)] = 53627, + [SMALL_STATE(1821)] = 53680, + [SMALL_STATE(1822)] = 53733, + [SMALL_STATE(1823)] = 53786, + [SMALL_STATE(1824)] = 53839, + [SMALL_STATE(1825)] = 53928, + [SMALL_STATE(1826)] = 54017, + [SMALL_STATE(1827)] = 54104, + [SMALL_STATE(1828)] = 54191, + [SMALL_STATE(1829)] = 54280, + [SMALL_STATE(1830)] = 54333, + [SMALL_STATE(1831)] = 54419, + [SMALL_STATE(1832)] = 54505, + [SMALL_STATE(1833)] = 54581, + [SMALL_STATE(1834)] = 54667, + [SMALL_STATE(1835)] = 54753, + [SMALL_STATE(1836)] = 54839, + [SMALL_STATE(1837)] = 54925, + [SMALL_STATE(1838)] = 55011, + [SMALL_STATE(1839)] = 55095, + [SMALL_STATE(1840)] = 55181, + [SMALL_STATE(1841)] = 55267, + [SMALL_STATE(1842)] = 55353, + [SMALL_STATE(1843)] = 55439, + [SMALL_STATE(1844)] = 55525, + [SMALL_STATE(1845)] = 55611, + [SMALL_STATE(1846)] = 55697, + [SMALL_STATE(1847)] = 55783, + [SMALL_STATE(1848)] = 55869, + [SMALL_STATE(1849)] = 55955, + [SMALL_STATE(1850)] = 56031, + [SMALL_STATE(1851)] = 56115, + [SMALL_STATE(1852)] = 56201, + [SMALL_STATE(1853)] = 56287, + [SMALL_STATE(1854)] = 56373, + [SMALL_STATE(1855)] = 56459, + [SMALL_STATE(1856)] = 56545, + [SMALL_STATE(1857)] = 56631, + [SMALL_STATE(1858)] = 56717, + [SMALL_STATE(1859)] = 56803, + [SMALL_STATE(1860)] = 56889, + [SMALL_STATE(1861)] = 56975, + [SMALL_STATE(1862)] = 57061, + [SMALL_STATE(1863)] = 57147, + [SMALL_STATE(1864)] = 57233, + [SMALL_STATE(1865)] = 57306, + [SMALL_STATE(1866)] = 57379, + [SMALL_STATE(1867)] = 57452, + [SMALL_STATE(1868)] = 57525, + [SMALL_STATE(1869)] = 57598, + [SMALL_STATE(1870)] = 57672, + [SMALL_STATE(1871)] = 57746, + [SMALL_STATE(1872)] = 57820, + [SMALL_STATE(1873)] = 57894, + [SMALL_STATE(1874)] = 57968, + [SMALL_STATE(1875)] = 58042, + [SMALL_STATE(1876)] = 58116, + [SMALL_STATE(1877)] = 58190, + [SMALL_STATE(1878)] = 58236, + [SMALL_STATE(1879)] = 58282, + [SMALL_STATE(1880)] = 58328, + [SMALL_STATE(1881)] = 58389, + [SMALL_STATE(1882)] = 58450, + [SMALL_STATE(1883)] = 58511, + [SMALL_STATE(1884)] = 58572, + [SMALL_STATE(1885)] = 58633, + [SMALL_STATE(1886)] = 58694, + [SMALL_STATE(1887)] = 58755, + [SMALL_STATE(1888)] = 58816, + [SMALL_STATE(1889)] = 58874, + [SMALL_STATE(1890)] = 58932, + [SMALL_STATE(1891)] = 58980, + [SMALL_STATE(1892)] = 59016, + [SMALL_STATE(1893)] = 59052, + [SMALL_STATE(1894)] = 59089, + [SMALL_STATE(1895)] = 59134, + [SMALL_STATE(1896)] = 59187, + [SMALL_STATE(1897)] = 59224, + [SMALL_STATE(1898)] = 59269, + [SMALL_STATE(1899)] = 59314, + [SMALL_STATE(1900)] = 59351, + [SMALL_STATE(1901)] = 59388, + [SMALL_STATE(1902)] = 59428, + [SMALL_STATE(1903)] = 59468, + [SMALL_STATE(1904)] = 59508, + [SMALL_STATE(1905)] = 59548, + [SMALL_STATE(1906)] = 59583, + [SMALL_STATE(1907)] = 59618, + [SMALL_STATE(1908)] = 59651, + [SMALL_STATE(1909)] = 59684, + [SMALL_STATE(1910)] = 59719, + [SMALL_STATE(1911)] = 59752, + [SMALL_STATE(1912)] = 59785, + [SMALL_STATE(1913)] = 59816, + [SMALL_STATE(1914)] = 59849, + [SMALL_STATE(1915)] = 59884, + [SMALL_STATE(1916)] = 59917, + [SMALL_STATE(1917)] = 59950, + [SMALL_STATE(1918)] = 59983, + [SMALL_STATE(1919)] = 60015, + [SMALL_STATE(1920)] = 60059, + [SMALL_STATE(1921)] = 60105, + [SMALL_STATE(1922)] = 60137, + [SMALL_STATE(1923)] = 60169, + [SMALL_STATE(1924)] = 60229, + [SMALL_STATE(1925)] = 60289, + [SMALL_STATE(1926)] = 60320, + [SMALL_STATE(1927)] = 60353, + [SMALL_STATE(1928)] = 60386, + [SMALL_STATE(1929)] = 60415, + [SMALL_STATE(1930)] = 60456, + [SMALL_STATE(1931)] = 60489, + [SMALL_STATE(1932)] = 60518, + [SMALL_STATE(1933)] = 60547, + [SMALL_STATE(1934)] = 60578, + [SMALL_STATE(1935)] = 60607, + [SMALL_STATE(1936)] = 60660, + [SMALL_STATE(1937)] = 60689, + [SMALL_STATE(1938)] = 60718, + [SMALL_STATE(1939)] = 60749, + [SMALL_STATE(1940)] = 60804, + [SMALL_STATE(1941)] = 60837, + [SMALL_STATE(1942)] = 60868, + [SMALL_STATE(1943)] = 60899, + [SMALL_STATE(1944)] = 60932, + [SMALL_STATE(1945)] = 60965, + [SMALL_STATE(1946)] = 60996, + [SMALL_STATE(1947)] = 61049, + [SMALL_STATE(1948)] = 61092, + [SMALL_STATE(1949)] = 61123, + [SMALL_STATE(1950)] = 61152, + [SMALL_STATE(1951)] = 61181, + [SMALL_STATE(1952)] = 61210, + [SMALL_STATE(1953)] = 61241, + [SMALL_STATE(1954)] = 61271, + [SMALL_STATE(1955)] = 61299, + [SMALL_STATE(1956)] = 61327, + [SMALL_STATE(1957)] = 61355, + [SMALL_STATE(1958)] = 61383, + [SMALL_STATE(1959)] = 61411, + [SMALL_STATE(1960)] = 61439, + [SMALL_STATE(1961)] = 61467, + [SMALL_STATE(1962)] = 61495, + [SMALL_STATE(1963)] = 61523, + [SMALL_STATE(1964)] = 61551, + [SMALL_STATE(1965)] = 61579, + [SMALL_STATE(1966)] = 61607, + [SMALL_STATE(1967)] = 61635, + [SMALL_STATE(1968)] = 61663, + [SMALL_STATE(1969)] = 61707, + [SMALL_STATE(1970)] = 61735, + [SMALL_STATE(1971)] = 61763, + [SMALL_STATE(1972)] = 61791, + [SMALL_STATE(1973)] = 61819, + [SMALL_STATE(1974)] = 61849, + [SMALL_STATE(1975)] = 61877, + [SMALL_STATE(1976)] = 61905, + [SMALL_STATE(1977)] = 61933, + [SMALL_STATE(1978)] = 61961, + [SMALL_STATE(1979)] = 61989, + [SMALL_STATE(1980)] = 62017, + [SMALL_STATE(1981)] = 62045, + [SMALL_STATE(1982)] = 62073, + [SMALL_STATE(1983)] = 62101, + [SMALL_STATE(1984)] = 62129, + [SMALL_STATE(1985)] = 62157, + [SMALL_STATE(1986)] = 62188, + [SMALL_STATE(1987)] = 62223, + [SMALL_STATE(1988)] = 62252, + [SMALL_STATE(1989)] = 62303, + [SMALL_STATE(1990)] = 62335, + [SMALL_STATE(1991)] = 62367, + [SMALL_STATE(1992)] = 62399, + [SMALL_STATE(1993)] = 62431, + [SMALL_STATE(1994)] = 62461, + [SMALL_STATE(1995)] = 62493, + [SMALL_STATE(1996)] = 62521, + [SMALL_STATE(1997)] = 62553, + [SMALL_STATE(1998)] = 62581, + [SMALL_STATE(1999)] = 62625, + [SMALL_STATE(2000)] = 62657, + [SMALL_STATE(2001)] = 62689, + [SMALL_STATE(2002)] = 62721, + [SMALL_STATE(2003)] = 62753, + [SMALL_STATE(2004)] = 62785, + [SMALL_STATE(2005)] = 62817, + [SMALL_STATE(2006)] = 62862, + [SMALL_STATE(2007)] = 62907, + [SMALL_STATE(2008)] = 62952, + [SMALL_STATE(2009)] = 62997, + [SMALL_STATE(2010)] = 63042, + [SMALL_STATE(2011)] = 63087, + [SMALL_STATE(2012)] = 63124, + [SMALL_STATE(2013)] = 63169, + [SMALL_STATE(2014)] = 63214, + [SMALL_STATE(2015)] = 63259, + [SMALL_STATE(2016)] = 63304, + [SMALL_STATE(2017)] = 63349, + [SMALL_STATE(2018)] = 63394, + [SMALL_STATE(2019)] = 63439, + [SMALL_STATE(2020)] = 63484, + [SMALL_STATE(2021)] = 63529, + [SMALL_STATE(2022)] = 63571, + [SMALL_STATE(2023)] = 63601, + [SMALL_STATE(2024)] = 63635, + [SMALL_STATE(2025)] = 63659, + [SMALL_STATE(2026)] = 63697, + [SMALL_STATE(2027)] = 63725, + [SMALL_STATE(2028)] = 63755, + [SMALL_STATE(2029)] = 63795, + [SMALL_STATE(2030)] = 63835, + [SMALL_STATE(2031)] = 63873, + [SMALL_STATE(2032)] = 63901, + [SMALL_STATE(2033)] = 63939, + [SMALL_STATE(2034)] = 63967, + [SMALL_STATE(2035)] = 64007, + [SMALL_STATE(2036)] = 64049, + [SMALL_STATE(2037)] = 64091, + [SMALL_STATE(2038)] = 64133, + [SMALL_STATE(2039)] = 64161, + [SMALL_STATE(2040)] = 64185, + [SMALL_STATE(2041)] = 64227, + [SMALL_STATE(2042)] = 64257, + [SMALL_STATE(2043)] = 64295, + [SMALL_STATE(2044)] = 64325, + [SMALL_STATE(2045)] = 64367, + [SMALL_STATE(2046)] = 64409, + [SMALL_STATE(2047)] = 64447, + [SMALL_STATE(2048)] = 64485, + [SMALL_STATE(2049)] = 64509, + [SMALL_STATE(2050)] = 64547, + [SMALL_STATE(2051)] = 64575, + [SMALL_STATE(2052)] = 64603, + [SMALL_STATE(2053)] = 64641, + [SMALL_STATE(2054)] = 64669, + [SMALL_STATE(2055)] = 64697, + [SMALL_STATE(2056)] = 64725, + [SMALL_STATE(2057)] = 64759, + [SMALL_STATE(2058)] = 64787, + [SMALL_STATE(2059)] = 64825, + [SMALL_STATE(2060)] = 64853, + [SMALL_STATE(2061)] = 64877, + [SMALL_STATE(2062)] = 64901, + [SMALL_STATE(2063)] = 64929, + [SMALL_STATE(2064)] = 64952, + [SMALL_STATE(2065)] = 64975, + [SMALL_STATE(2066)] = 64998, + [SMALL_STATE(2067)] = 65021, + [SMALL_STATE(2068)] = 65044, + [SMALL_STATE(2069)] = 65067, + [SMALL_STATE(2070)] = 65090, + [SMALL_STATE(2071)] = 65113, + [SMALL_STATE(2072)] = 65136, + [SMALL_STATE(2073)] = 65159, + [SMALL_STATE(2074)] = 65200, + [SMALL_STATE(2075)] = 65237, + [SMALL_STATE(2076)] = 65260, + [SMALL_STATE(2077)] = 65295, + [SMALL_STATE(2078)] = 65318, + [SMALL_STATE(2079)] = 65341, + [SMALL_STATE(2080)] = 65364, + [SMALL_STATE(2081)] = 65387, + [SMALL_STATE(2082)] = 65410, + [SMALL_STATE(2083)] = 65433, + [SMALL_STATE(2084)] = 65456, + [SMALL_STATE(2085)] = 65479, + [SMALL_STATE(2086)] = 65502, + [SMALL_STATE(2087)] = 65525, + [SMALL_STATE(2088)] = 65548, + [SMALL_STATE(2089)] = 65571, + [SMALL_STATE(2090)] = 65594, + [SMALL_STATE(2091)] = 65617, + [SMALL_STATE(2092)] = 65654, + [SMALL_STATE(2093)] = 65677, + [SMALL_STATE(2094)] = 65708, + [SMALL_STATE(2095)] = 65745, + [SMALL_STATE(2096)] = 65778, + [SMALL_STATE(2097)] = 65819, + [SMALL_STATE(2098)] = 65854, + [SMALL_STATE(2099)] = 65895, + [SMALL_STATE(2100)] = 65918, + [SMALL_STATE(2101)] = 65941, + [SMALL_STATE(2102)] = 65982, + [SMALL_STATE(2103)] = 66013, + [SMALL_STATE(2104)] = 66036, + [SMALL_STATE(2105)] = 66071, + [SMALL_STATE(2106)] = 66094, + [SMALL_STATE(2107)] = 66117, + [SMALL_STATE(2108)] = 66140, + [SMALL_STATE(2109)] = 66171, + [SMALL_STATE(2110)] = 66194, + [SMALL_STATE(2111)] = 66217, + [SMALL_STATE(2112)] = 66240, + [SMALL_STATE(2113)] = 66263, + [SMALL_STATE(2114)] = 66294, + [SMALL_STATE(2115)] = 66331, + [SMALL_STATE(2116)] = 66355, + [SMALL_STATE(2117)] = 66387, + [SMALL_STATE(2118)] = 66419, + [SMALL_STATE(2119)] = 66457, + [SMALL_STATE(2120)] = 66481, + [SMALL_STATE(2121)] = 66509, + [SMALL_STATE(2122)] = 66541, + [SMALL_STATE(2123)] = 66565, + [SMALL_STATE(2124)] = 66597, + [SMALL_STATE(2125)] = 66635, + [SMALL_STATE(2126)] = 66671, + [SMALL_STATE(2127)] = 66697, + [SMALL_STATE(2128)] = 66725, + [SMALL_STATE(2129)] = 66763, + [SMALL_STATE(2130)] = 66791, + [SMALL_STATE(2131)] = 66829, + [SMALL_STATE(2132)] = 66867, + [SMALL_STATE(2133)] = 66899, + [SMALL_STATE(2134)] = 66925, + [SMALL_STATE(2135)] = 66957, + [SMALL_STATE(2136)] = 66981, + [SMALL_STATE(2137)] = 67013, + [SMALL_STATE(2138)] = 67039, + [SMALL_STATE(2139)] = 67071, + [SMALL_STATE(2140)] = 67099, + [SMALL_STATE(2141)] = 67137, + [SMALL_STATE(2142)] = 67163, + [SMALL_STATE(2143)] = 67195, + [SMALL_STATE(2144)] = 67233, + [SMALL_STATE(2145)] = 67271, + [SMALL_STATE(2146)] = 67305, + [SMALL_STATE(2147)] = 67337, + [SMALL_STATE(2148)] = 67361, + [SMALL_STATE(2149)] = 67399, + [SMALL_STATE(2150)] = 67437, + [SMALL_STATE(2151)] = 67475, + [SMALL_STATE(2152)] = 67509, + [SMALL_STATE(2153)] = 67547, + [SMALL_STATE(2154)] = 67585, + [SMALL_STATE(2155)] = 67623, + [SMALL_STATE(2156)] = 67651, + [SMALL_STATE(2157)] = 67679, + [SMALL_STATE(2158)] = 67711, + [SMALL_STATE(2159)] = 67749, + [SMALL_STATE(2160)] = 67777, + [SMALL_STATE(2161)] = 67809, + [SMALL_STATE(2162)] = 67841, + [SMALL_STATE(2163)] = 67879, + [SMALL_STATE(2164)] = 67914, + [SMALL_STATE(2165)] = 67949, + [SMALL_STATE(2166)] = 67984, + [SMALL_STATE(2167)] = 68019, + [SMALL_STATE(2168)] = 68054, + [SMALL_STATE(2169)] = 68089, + [SMALL_STATE(2170)] = 68124, + [SMALL_STATE(2171)] = 68159, + [SMALL_STATE(2172)] = 68194, + [SMALL_STATE(2173)] = 68219, + [SMALL_STATE(2174)] = 68254, + [SMALL_STATE(2175)] = 68289, + [SMALL_STATE(2176)] = 68324, + [SMALL_STATE(2177)] = 68349, + [SMALL_STATE(2178)] = 68376, + [SMALL_STATE(2179)] = 68405, + [SMALL_STATE(2180)] = 68440, + [SMALL_STATE(2181)] = 68475, + [SMALL_STATE(2182)] = 68510, + [SMALL_STATE(2183)] = 68545, + [SMALL_STATE(2184)] = 68566, + [SMALL_STATE(2185)] = 68601, + [SMALL_STATE(2186)] = 68636, + [SMALL_STATE(2187)] = 68671, + [SMALL_STATE(2188)] = 68706, + [SMALL_STATE(2189)] = 68741, + [SMALL_STATE(2190)] = 68776, + [SMALL_STATE(2191)] = 68811, + [SMALL_STATE(2192)] = 68846, + [SMALL_STATE(2193)] = 68881, + [SMALL_STATE(2194)] = 68916, + [SMALL_STATE(2195)] = 68951, + [SMALL_STATE(2196)] = 68972, + [SMALL_STATE(2197)] = 69007, + [SMALL_STATE(2198)] = 69028, + [SMALL_STATE(2199)] = 69063, + [SMALL_STATE(2200)] = 69096, + [SMALL_STATE(2201)] = 69131, + [SMALL_STATE(2202)] = 69166, + [SMALL_STATE(2203)] = 69187, + [SMALL_STATE(2204)] = 69222, + [SMALL_STATE(2205)] = 69255, + [SMALL_STATE(2206)] = 69280, + [SMALL_STATE(2207)] = 69313, + [SMALL_STATE(2208)] = 69348, + [SMALL_STATE(2209)] = 69369, + [SMALL_STATE(2210)] = 69404, + [SMALL_STATE(2211)] = 69439, + [SMALL_STATE(2212)] = 69474, + [SMALL_STATE(2213)] = 69495, + [SMALL_STATE(2214)] = 69528, + [SMALL_STATE(2215)] = 69563, + [SMALL_STATE(2216)] = 69598, + [SMALL_STATE(2217)] = 69631, + [SMALL_STATE(2218)] = 69661, + [SMALL_STATE(2219)] = 69693, + [SMALL_STATE(2220)] = 69725, + [SMALL_STATE(2221)] = 69755, + [SMALL_STATE(2222)] = 69787, + [SMALL_STATE(2223)] = 69819, + [SMALL_STATE(2224)] = 69851, + [SMALL_STATE(2225)] = 69873, + [SMALL_STATE(2226)] = 69903, + [SMALL_STATE(2227)] = 69931, + [SMALL_STATE(2228)] = 69959, + [SMALL_STATE(2229)] = 69989, + [SMALL_STATE(2230)] = 70015, + [SMALL_STATE(2231)] = 70043, + [SMALL_STATE(2232)] = 70075, + [SMALL_STATE(2233)] = 70105, + [SMALL_STATE(2234)] = 70127, + [SMALL_STATE(2235)] = 70159, + [SMALL_STATE(2236)] = 70189, + [SMALL_STATE(2237)] = 70219, + [SMALL_STATE(2238)] = 70249, + [SMALL_STATE(2239)] = 70281, + [SMALL_STATE(2240)] = 70313, + [SMALL_STATE(2241)] = 70345, + [SMALL_STATE(2242)] = 70367, + [SMALL_STATE(2243)] = 70395, + [SMALL_STATE(2244)] = 70421, + [SMALL_STATE(2245)] = 70453, + [SMALL_STATE(2246)] = 70485, + [SMALL_STATE(2247)] = 70517, + [SMALL_STATE(2248)] = 70549, + [SMALL_STATE(2249)] = 70581, + [SMALL_STATE(2250)] = 70613, + [SMALL_STATE(2251)] = 70645, + [SMALL_STATE(2252)] = 70677, + [SMALL_STATE(2253)] = 70709, + [SMALL_STATE(2254)] = 70741, + [SMALL_STATE(2255)] = 70773, + [SMALL_STATE(2256)] = 70805, + [SMALL_STATE(2257)] = 70831, + [SMALL_STATE(2258)] = 70863, + [SMALL_STATE(2259)] = 70895, + [SMALL_STATE(2260)] = 70927, + [SMALL_STATE(2261)] = 70959, + [SMALL_STATE(2262)] = 70991, + [SMALL_STATE(2263)] = 71023, + [SMALL_STATE(2264)] = 71055, + [SMALL_STATE(2265)] = 71087, + [SMALL_STATE(2266)] = 71109, + [SMALL_STATE(2267)] = 71137, + [SMALL_STATE(2268)] = 71167, + [SMALL_STATE(2269)] = 71199, + [SMALL_STATE(2270)] = 71225, + [SMALL_STATE(2271)] = 71257, + [SMALL_STATE(2272)] = 71279, + [SMALL_STATE(2273)] = 71301, + [SMALL_STATE(2274)] = 71331, + [SMALL_STATE(2275)] = 71354, + [SMALL_STATE(2276)] = 71383, + [SMALL_STATE(2277)] = 71412, + [SMALL_STATE(2278)] = 71435, + [SMALL_STATE(2279)] = 71464, + [SMALL_STATE(2280)] = 71487, + [SMALL_STATE(2281)] = 71516, + [SMALL_STATE(2282)] = 71545, + [SMALL_STATE(2283)] = 71566, + [SMALL_STATE(2284)] = 71591, + [SMALL_STATE(2285)] = 71620, + [SMALL_STATE(2286)] = 71649, + [SMALL_STATE(2287)] = 71678, + [SMALL_STATE(2288)] = 71701, + [SMALL_STATE(2289)] = 71724, + [SMALL_STATE(2290)] = 71753, + [SMALL_STATE(2291)] = 71782, + [SMALL_STATE(2292)] = 71811, + [SMALL_STATE(2293)] = 71840, + [SMALL_STATE(2294)] = 71869, + [SMALL_STATE(2295)] = 71898, + [SMALL_STATE(2296)] = 71919, + [SMALL_STATE(2297)] = 71948, + [SMALL_STATE(2298)] = 71971, + [SMALL_STATE(2299)] = 72000, + [SMALL_STATE(2300)] = 72029, + [SMALL_STATE(2301)] = 72058, + [SMALL_STATE(2302)] = 72087, + [SMALL_STATE(2303)] = 72116, + [SMALL_STATE(2304)] = 72145, + [SMALL_STATE(2305)] = 72172, + [SMALL_STATE(2306)] = 72201, + [SMALL_STATE(2307)] = 72224, + [SMALL_STATE(2308)] = 72249, + [SMALL_STATE(2309)] = 72278, + [SMALL_STATE(2310)] = 72307, + [SMALL_STATE(2311)] = 72336, + [SMALL_STATE(2312)] = 72365, + [SMALL_STATE(2313)] = 72384, + [SMALL_STATE(2314)] = 72413, + [SMALL_STATE(2315)] = 72436, + [SMALL_STATE(2316)] = 72465, + [SMALL_STATE(2317)] = 72492, + [SMALL_STATE(2318)] = 72515, + [SMALL_STATE(2319)] = 72544, + [SMALL_STATE(2320)] = 72573, + [SMALL_STATE(2321)] = 72594, + [SMALL_STATE(2322)] = 72619, + [SMALL_STATE(2323)] = 72648, + [SMALL_STATE(2324)] = 72677, + [SMALL_STATE(2325)] = 72700, + [SMALL_STATE(2326)] = 72729, + [SMALL_STATE(2327)] = 72758, + [SMALL_STATE(2328)] = 72783, + [SMALL_STATE(2329)] = 72812, + [SMALL_STATE(2330)] = 72833, + [SMALL_STATE(2331)] = 72862, + [SMALL_STATE(2332)] = 72891, + [SMALL_STATE(2333)] = 72920, + [SMALL_STATE(2334)] = 72949, + [SMALL_STATE(2335)] = 72978, + [SMALL_STATE(2336)] = 73007, + [SMALL_STATE(2337)] = 73036, + [SMALL_STATE(2338)] = 73065, + [SMALL_STATE(2339)] = 73086, + [SMALL_STATE(2340)] = 73113, + [SMALL_STATE(2341)] = 73140, + [SMALL_STATE(2342)] = 73169, + [SMALL_STATE(2343)] = 73198, + [SMALL_STATE(2344)] = 73221, + [SMALL_STATE(2345)] = 73242, + [SMALL_STATE(2346)] = 73271, + [SMALL_STATE(2347)] = 73300, + [SMALL_STATE(2348)] = 73323, + [SMALL_STATE(2349)] = 73346, + [SMALL_STATE(2350)] = 73375, + [SMALL_STATE(2351)] = 73404, + [SMALL_STATE(2352)] = 73425, + [SMALL_STATE(2353)] = 73454, + [SMALL_STATE(2354)] = 73483, + [SMALL_STATE(2355)] = 73512, + [SMALL_STATE(2356)] = 73541, + [SMALL_STATE(2357)] = 73570, + [SMALL_STATE(2358)] = 73599, + [SMALL_STATE(2359)] = 73628, + [SMALL_STATE(2360)] = 73655, + [SMALL_STATE(2361)] = 73684, + [SMALL_STATE(2362)] = 73713, + [SMALL_STATE(2363)] = 73742, + [SMALL_STATE(2364)] = 73771, + [SMALL_STATE(2365)] = 73798, + [SMALL_STATE(2366)] = 73827, + [SMALL_STATE(2367)] = 73846, + [SMALL_STATE(2368)] = 73869, + [SMALL_STATE(2369)] = 73898, + [SMALL_STATE(2370)] = 73927, + [SMALL_STATE(2371)] = 73956, + [SMALL_STATE(2372)] = 73985, + [SMALL_STATE(2373)] = 74011, + [SMALL_STATE(2374)] = 74029, + [SMALL_STATE(2375)] = 74055, + [SMALL_STATE(2376)] = 74081, + [SMALL_STATE(2377)] = 74103, + [SMALL_STATE(2378)] = 74129, + [SMALL_STATE(2379)] = 74147, + [SMALL_STATE(2380)] = 74173, + [SMALL_STATE(2381)] = 74191, + [SMALL_STATE(2382)] = 74217, + [SMALL_STATE(2383)] = 74243, + [SMALL_STATE(2384)] = 74269, + [SMALL_STATE(2385)] = 74293, + [SMALL_STATE(2386)] = 74319, + [SMALL_STATE(2387)] = 74341, + [SMALL_STATE(2388)] = 74367, + [SMALL_STATE(2389)] = 74393, + [SMALL_STATE(2390)] = 74417, + [SMALL_STATE(2391)] = 74443, + [SMALL_STATE(2392)] = 74465, + [SMALL_STATE(2393)] = 74489, + [SMALL_STATE(2394)] = 74513, + [SMALL_STATE(2395)] = 74537, + [SMALL_STATE(2396)] = 74559, + [SMALL_STATE(2397)] = 74585, + [SMALL_STATE(2398)] = 74611, + [SMALL_STATE(2399)] = 74635, + [SMALL_STATE(2400)] = 74655, + [SMALL_STATE(2401)] = 74681, + [SMALL_STATE(2402)] = 74707, + [SMALL_STATE(2403)] = 74733, + [SMALL_STATE(2404)] = 74757, + [SMALL_STATE(2405)] = 74775, + [SMALL_STATE(2406)] = 74801, + [SMALL_STATE(2407)] = 74827, + [SMALL_STATE(2408)] = 74845, + [SMALL_STATE(2409)] = 74871, + [SMALL_STATE(2410)] = 74897, + [SMALL_STATE(2411)] = 74923, + [SMALL_STATE(2412)] = 74947, + [SMALL_STATE(2413)] = 74967, + [SMALL_STATE(2414)] = 74993, + [SMALL_STATE(2415)] = 75015, + [SMALL_STATE(2416)] = 75041, + [SMALL_STATE(2417)] = 75065, + [SMALL_STATE(2418)] = 75087, + [SMALL_STATE(2419)] = 75109, + [SMALL_STATE(2420)] = 75131, + [SMALL_STATE(2421)] = 75149, + [SMALL_STATE(2422)] = 75171, + [SMALL_STATE(2423)] = 75197, + [SMALL_STATE(2424)] = 75223, + [SMALL_STATE(2425)] = 75249, + [SMALL_STATE(2426)] = 75275, + [SMALL_STATE(2427)] = 75293, + [SMALL_STATE(2428)] = 75319, + [SMALL_STATE(2429)] = 75345, + [SMALL_STATE(2430)] = 75371, + [SMALL_STATE(2431)] = 75389, + [SMALL_STATE(2432)] = 75407, + [SMALL_STATE(2433)] = 75425, + [SMALL_STATE(2434)] = 75443, + [SMALL_STATE(2435)] = 75461, + [SMALL_STATE(2436)] = 75479, + [SMALL_STATE(2437)] = 75505, + [SMALL_STATE(2438)] = 75531, + [SMALL_STATE(2439)] = 75557, + [SMALL_STATE(2440)] = 75583, + [SMALL_STATE(2441)] = 75609, + [SMALL_STATE(2442)] = 75635, + [SMALL_STATE(2443)] = 75657, + [SMALL_STATE(2444)] = 75683, + [SMALL_STATE(2445)] = 75709, + [SMALL_STATE(2446)] = 75735, + [SMALL_STATE(2447)] = 75753, + [SMALL_STATE(2448)] = 75779, + [SMALL_STATE(2449)] = 75803, + [SMALL_STATE(2450)] = 75829, + [SMALL_STATE(2451)] = 75847, + [SMALL_STATE(2452)] = 75865, + [SMALL_STATE(2453)] = 75889, + [SMALL_STATE(2454)] = 75907, + [SMALL_STATE(2455)] = 75925, + [SMALL_STATE(2456)] = 75943, + [SMALL_STATE(2457)] = 75961, + [SMALL_STATE(2458)] = 75981, + [SMALL_STATE(2459)] = 76007, + [SMALL_STATE(2460)] = 76031, + [SMALL_STATE(2461)] = 76055, + [SMALL_STATE(2462)] = 76073, + [SMALL_STATE(2463)] = 76099, + [SMALL_STATE(2464)] = 76125, + [SMALL_STATE(2465)] = 76151, + [SMALL_STATE(2466)] = 76177, + [SMALL_STATE(2467)] = 76203, + [SMALL_STATE(2468)] = 76229, + [SMALL_STATE(2469)] = 76255, + [SMALL_STATE(2470)] = 76273, + [SMALL_STATE(2471)] = 76291, + [SMALL_STATE(2472)] = 76317, + [SMALL_STATE(2473)] = 76343, + [SMALL_STATE(2474)] = 76361, + [SMALL_STATE(2475)] = 76379, + [SMALL_STATE(2476)] = 76405, + [SMALL_STATE(2477)] = 76429, + [SMALL_STATE(2478)] = 76453, + [SMALL_STATE(2479)] = 76476, + [SMALL_STATE(2480)] = 76499, + [SMALL_STATE(2481)] = 76522, + [SMALL_STATE(2482)] = 76545, + [SMALL_STATE(2483)] = 76566, + [SMALL_STATE(2484)] = 76589, + [SMALL_STATE(2485)] = 76612, + [SMALL_STATE(2486)] = 76635, + [SMALL_STATE(2487)] = 76658, + [SMALL_STATE(2488)] = 76681, + [SMALL_STATE(2489)] = 76704, + [SMALL_STATE(2490)] = 76727, + [SMALL_STATE(2491)] = 76750, + [SMALL_STATE(2492)] = 76773, + [SMALL_STATE(2493)] = 76796, + [SMALL_STATE(2494)] = 76819, + [SMALL_STATE(2495)] = 76842, + [SMALL_STATE(2496)] = 76863, + [SMALL_STATE(2497)] = 76886, + [SMALL_STATE(2498)] = 76909, + [SMALL_STATE(2499)] = 76932, + [SMALL_STATE(2500)] = 76955, + [SMALL_STATE(2501)] = 76978, + [SMALL_STATE(2502)] = 77001, + [SMALL_STATE(2503)] = 77024, + [SMALL_STATE(2504)] = 77047, + [SMALL_STATE(2505)] = 77068, + [SMALL_STATE(2506)] = 77091, + [SMALL_STATE(2507)] = 77114, + [SMALL_STATE(2508)] = 77133, + [SMALL_STATE(2509)] = 77152, + [SMALL_STATE(2510)] = 77171, + [SMALL_STATE(2511)] = 77190, + [SMALL_STATE(2512)] = 77213, + [SMALL_STATE(2513)] = 77230, + [SMALL_STATE(2514)] = 77253, + [SMALL_STATE(2515)] = 77276, + [SMALL_STATE(2516)] = 77299, + [SMALL_STATE(2517)] = 77318, + [SMALL_STATE(2518)] = 77337, + [SMALL_STATE(2519)] = 77356, + [SMALL_STATE(2520)] = 77375, + [SMALL_STATE(2521)] = 77398, + [SMALL_STATE(2522)] = 77421, + [SMALL_STATE(2523)] = 77442, + [SMALL_STATE(2524)] = 77463, + [SMALL_STATE(2525)] = 77486, + [SMALL_STATE(2526)] = 77509, + [SMALL_STATE(2527)] = 77532, + [SMALL_STATE(2528)] = 77555, + [SMALL_STATE(2529)] = 77578, + [SMALL_STATE(2530)] = 77601, + [SMALL_STATE(2531)] = 77624, + [SMALL_STATE(2532)] = 77647, + [SMALL_STATE(2533)] = 77670, + [SMALL_STATE(2534)] = 77693, + [SMALL_STATE(2535)] = 77716, + [SMALL_STATE(2536)] = 77739, + [SMALL_STATE(2537)] = 77758, + [SMALL_STATE(2538)] = 77781, + [SMALL_STATE(2539)] = 77800, + [SMALL_STATE(2540)] = 77823, + [SMALL_STATE(2541)] = 77846, + [SMALL_STATE(2542)] = 77869, + [SMALL_STATE(2543)] = 77888, + [SMALL_STATE(2544)] = 77905, + [SMALL_STATE(2545)] = 77924, + [SMALL_STATE(2546)] = 77947, + [SMALL_STATE(2547)] = 77970, + [SMALL_STATE(2548)] = 77989, + [SMALL_STATE(2549)] = 78012, + [SMALL_STATE(2550)] = 78031, + [SMALL_STATE(2551)] = 78048, + [SMALL_STATE(2552)] = 78067, + [SMALL_STATE(2553)] = 78086, + [SMALL_STATE(2554)] = 78109, + [SMALL_STATE(2555)] = 78132, + [SMALL_STATE(2556)] = 78155, + [SMALL_STATE(2557)] = 78178, + [SMALL_STATE(2558)] = 78195, + [SMALL_STATE(2559)] = 78218, + [SMALL_STATE(2560)] = 78239, + [SMALL_STATE(2561)] = 78260, + [SMALL_STATE(2562)] = 78283, + [SMALL_STATE(2563)] = 78306, + [SMALL_STATE(2564)] = 78329, + [SMALL_STATE(2565)] = 78352, + [SMALL_STATE(2566)] = 78375, + [SMALL_STATE(2567)] = 78398, + [SMALL_STATE(2568)] = 78419, + [SMALL_STATE(2569)] = 78442, + [SMALL_STATE(2570)] = 78465, + [SMALL_STATE(2571)] = 78488, + [SMALL_STATE(2572)] = 78511, + [SMALL_STATE(2573)] = 78532, + [SMALL_STATE(2574)] = 78555, + [SMALL_STATE(2575)] = 78578, + [SMALL_STATE(2576)] = 78601, + [SMALL_STATE(2577)] = 78624, + [SMALL_STATE(2578)] = 78647, + [SMALL_STATE(2579)] = 78670, + [SMALL_STATE(2580)] = 78693, + [SMALL_STATE(2581)] = 78716, + [SMALL_STATE(2582)] = 78737, + [SMALL_STATE(2583)] = 78760, + [SMALL_STATE(2584)] = 78781, + [SMALL_STATE(2585)] = 78800, + [SMALL_STATE(2586)] = 78821, + [SMALL_STATE(2587)] = 78842, + [SMALL_STATE(2588)] = 78865, + [SMALL_STATE(2589)] = 78888, + [SMALL_STATE(2590)] = 78911, + [SMALL_STATE(2591)] = 78934, + [SMALL_STATE(2592)] = 78953, + [SMALL_STATE(2593)] = 78976, + [SMALL_STATE(2594)] = 78999, + [SMALL_STATE(2595)] = 79016, + [SMALL_STATE(2596)] = 79035, + [SMALL_STATE(2597)] = 79058, + [SMALL_STATE(2598)] = 79081, + [SMALL_STATE(2599)] = 79104, + [SMALL_STATE(2600)] = 79127, + [SMALL_STATE(2601)] = 79150, + [SMALL_STATE(2602)] = 79173, + [SMALL_STATE(2603)] = 79196, + [SMALL_STATE(2604)] = 79217, + [SMALL_STATE(2605)] = 79240, + [SMALL_STATE(2606)] = 79263, + [SMALL_STATE(2607)] = 79286, + [SMALL_STATE(2608)] = 79309, + [SMALL_STATE(2609)] = 79332, + [SMALL_STATE(2610)] = 79355, + [SMALL_STATE(2611)] = 79376, + [SMALL_STATE(2612)] = 79395, + [SMALL_STATE(2613)] = 79414, + [SMALL_STATE(2614)] = 79435, + [SMALL_STATE(2615)] = 79458, + [SMALL_STATE(2616)] = 79475, + [SMALL_STATE(2617)] = 79498, + [SMALL_STATE(2618)] = 79521, + [SMALL_STATE(2619)] = 79542, + [SMALL_STATE(2620)] = 79565, + [SMALL_STATE(2621)] = 79588, + [SMALL_STATE(2622)] = 79611, + [SMALL_STATE(2623)] = 79634, + [SMALL_STATE(2624)] = 79657, + [SMALL_STATE(2625)] = 79680, + [SMALL_STATE(2626)] = 79703, + [SMALL_STATE(2627)] = 79726, + [SMALL_STATE(2628)] = 79747, + [SMALL_STATE(2629)] = 79770, + [SMALL_STATE(2630)] = 79793, + [SMALL_STATE(2631)] = 79816, + [SMALL_STATE(2632)] = 79839, + [SMALL_STATE(2633)] = 79862, + [SMALL_STATE(2634)] = 79883, + [SMALL_STATE(2635)] = 79904, + [SMALL_STATE(2636)] = 79925, + [SMALL_STATE(2637)] = 79948, + [SMALL_STATE(2638)] = 79971, + [SMALL_STATE(2639)] = 79994, + [SMALL_STATE(2640)] = 80017, + [SMALL_STATE(2641)] = 80040, + [SMALL_STATE(2642)] = 80063, + [SMALL_STATE(2643)] = 80086, + [SMALL_STATE(2644)] = 80109, + [SMALL_STATE(2645)] = 80132, + [SMALL_STATE(2646)] = 80155, + [SMALL_STATE(2647)] = 80178, + [SMALL_STATE(2648)] = 80201, + [SMALL_STATE(2649)] = 80224, + [SMALL_STATE(2650)] = 80247, + [SMALL_STATE(2651)] = 80268, + [SMALL_STATE(2652)] = 80291, + [SMALL_STATE(2653)] = 80314, + [SMALL_STATE(2654)] = 80337, + [SMALL_STATE(2655)] = 80360, + [SMALL_STATE(2656)] = 80383, + [SMALL_STATE(2657)] = 80404, + [SMALL_STATE(2658)] = 80425, + [SMALL_STATE(2659)] = 80448, + [SMALL_STATE(2660)] = 80471, + [SMALL_STATE(2661)] = 80494, + [SMALL_STATE(2662)] = 80517, + [SMALL_STATE(2663)] = 80534, + [SMALL_STATE(2664)] = 80557, + [SMALL_STATE(2665)] = 80580, + [SMALL_STATE(2666)] = 80603, + [SMALL_STATE(2667)] = 80626, + [SMALL_STATE(2668)] = 80647, + [SMALL_STATE(2669)] = 80670, + [SMALL_STATE(2670)] = 80691, + [SMALL_STATE(2671)] = 80710, + [SMALL_STATE(2672)] = 80733, + [SMALL_STATE(2673)] = 80756, + [SMALL_STATE(2674)] = 80779, + [SMALL_STATE(2675)] = 80802, + [SMALL_STATE(2676)] = 80825, + [SMALL_STATE(2677)] = 80848, + [SMALL_STATE(2678)] = 80871, + [SMALL_STATE(2679)] = 80894, + [SMALL_STATE(2680)] = 80917, + [SMALL_STATE(2681)] = 80940, + [SMALL_STATE(2682)] = 80963, + [SMALL_STATE(2683)] = 80986, + [SMALL_STATE(2684)] = 81009, + [SMALL_STATE(2685)] = 81032, + [SMALL_STATE(2686)] = 81055, + [SMALL_STATE(2687)] = 81078, + [SMALL_STATE(2688)] = 81101, + [SMALL_STATE(2689)] = 81124, + [SMALL_STATE(2690)] = 81143, + [SMALL_STATE(2691)] = 81166, + [SMALL_STATE(2692)] = 81189, + [SMALL_STATE(2693)] = 81212, + [SMALL_STATE(2694)] = 81231, + [SMALL_STATE(2695)] = 81254, + [SMALL_STATE(2696)] = 81277, + [SMALL_STATE(2697)] = 81300, + [SMALL_STATE(2698)] = 81323, + [SMALL_STATE(2699)] = 81346, + [SMALL_STATE(2700)] = 81369, + [SMALL_STATE(2701)] = 81392, + [SMALL_STATE(2702)] = 81415, + [SMALL_STATE(2703)] = 81438, + [SMALL_STATE(2704)] = 81461, + [SMALL_STATE(2705)] = 81484, + [SMALL_STATE(2706)] = 81503, + [SMALL_STATE(2707)] = 81520, + [SMALL_STATE(2708)] = 81541, + [SMALL_STATE(2709)] = 81564, + [SMALL_STATE(2710)] = 81583, + [SMALL_STATE(2711)] = 81606, + [SMALL_STATE(2712)] = 81627, + [SMALL_STATE(2713)] = 81650, + [SMALL_STATE(2714)] = 81673, + [SMALL_STATE(2715)] = 81696, + [SMALL_STATE(2716)] = 81716, + [SMALL_STATE(2717)] = 81736, + [SMALL_STATE(2718)] = 81756, + [SMALL_STATE(2719)] = 81776, + [SMALL_STATE(2720)] = 81796, + [SMALL_STATE(2721)] = 81816, + [SMALL_STATE(2722)] = 81836, + [SMALL_STATE(2723)] = 81854, + [SMALL_STATE(2724)] = 81874, + [SMALL_STATE(2725)] = 81894, + [SMALL_STATE(2726)] = 81914, + [SMALL_STATE(2727)] = 81934, + [SMALL_STATE(2728)] = 81954, + [SMALL_STATE(2729)] = 81972, + [SMALL_STATE(2730)] = 81992, + [SMALL_STATE(2731)] = 82012, + [SMALL_STATE(2732)] = 82030, + [SMALL_STATE(2733)] = 82050, + [SMALL_STATE(2734)] = 82068, + [SMALL_STATE(2735)] = 82088, + [SMALL_STATE(2736)] = 82108, + [SMALL_STATE(2737)] = 82128, + [SMALL_STATE(2738)] = 82148, + [SMALL_STATE(2739)] = 82166, + [SMALL_STATE(2740)] = 82186, + [SMALL_STATE(2741)] = 82206, + [SMALL_STATE(2742)] = 82226, + [SMALL_STATE(2743)] = 82242, + [SMALL_STATE(2744)] = 82262, + [SMALL_STATE(2745)] = 82282, + [SMALL_STATE(2746)] = 82300, + [SMALL_STATE(2747)] = 82320, + [SMALL_STATE(2748)] = 82336, + [SMALL_STATE(2749)] = 82356, + [SMALL_STATE(2750)] = 82374, + [SMALL_STATE(2751)] = 82394, + [SMALL_STATE(2752)] = 82412, + [SMALL_STATE(2753)] = 82432, + [SMALL_STATE(2754)] = 82450, + [SMALL_STATE(2755)] = 82470, + [SMALL_STATE(2756)] = 82490, + [SMALL_STATE(2757)] = 82508, + [SMALL_STATE(2758)] = 82526, + [SMALL_STATE(2759)] = 82546, + [SMALL_STATE(2760)] = 82562, + [SMALL_STATE(2761)] = 82580, + [SMALL_STATE(2762)] = 82600, + [SMALL_STATE(2763)] = 82620, + [SMALL_STATE(2764)] = 82640, + [SMALL_STATE(2765)] = 82660, + [SMALL_STATE(2766)] = 82680, + [SMALL_STATE(2767)] = 82700, + [SMALL_STATE(2768)] = 82718, + [SMALL_STATE(2769)] = 82738, + [SMALL_STATE(2770)] = 82758, + [SMALL_STATE(2771)] = 82778, + [SMALL_STATE(2772)] = 82798, + [SMALL_STATE(2773)] = 82818, + [SMALL_STATE(2774)] = 82838, + [SMALL_STATE(2775)] = 82858, + [SMALL_STATE(2776)] = 82878, + [SMALL_STATE(2777)] = 82896, + [SMALL_STATE(2778)] = 82914, + [SMALL_STATE(2779)] = 82934, + [SMALL_STATE(2780)] = 82954, + [SMALL_STATE(2781)] = 82974, + [SMALL_STATE(2782)] = 82994, + [SMALL_STATE(2783)] = 83014, + [SMALL_STATE(2784)] = 83034, + [SMALL_STATE(2785)] = 83054, + [SMALL_STATE(2786)] = 83074, + [SMALL_STATE(2787)] = 83090, + [SMALL_STATE(2788)] = 83110, + [SMALL_STATE(2789)] = 83130, + [SMALL_STATE(2790)] = 83150, + [SMALL_STATE(2791)] = 83170, + [SMALL_STATE(2792)] = 83190, + [SMALL_STATE(2793)] = 83210, + [SMALL_STATE(2794)] = 83228, + [SMALL_STATE(2795)] = 83248, + [SMALL_STATE(2796)] = 83268, + [SMALL_STATE(2797)] = 83288, + [SMALL_STATE(2798)] = 83306, + [SMALL_STATE(2799)] = 83326, + [SMALL_STATE(2800)] = 83342, + [SMALL_STATE(2801)] = 83362, + [SMALL_STATE(2802)] = 83380, + [SMALL_STATE(2803)] = 83400, + [SMALL_STATE(2804)] = 83418, + [SMALL_STATE(2805)] = 83438, + [SMALL_STATE(2806)] = 83454, + [SMALL_STATE(2807)] = 83474, + [SMALL_STATE(2808)] = 83494, + [SMALL_STATE(2809)] = 83510, + [SMALL_STATE(2810)] = 83528, + [SMALL_STATE(2811)] = 83546, + [SMALL_STATE(2812)] = 83566, + [SMALL_STATE(2813)] = 83586, + [SMALL_STATE(2814)] = 83606, + [SMALL_STATE(2815)] = 83626, + [SMALL_STATE(2816)] = 83646, + [SMALL_STATE(2817)] = 83666, + [SMALL_STATE(2818)] = 83686, + [SMALL_STATE(2819)] = 83706, + [SMALL_STATE(2820)] = 83726, + [SMALL_STATE(2821)] = 83744, + [SMALL_STATE(2822)] = 83762, + [SMALL_STATE(2823)] = 83780, + [SMALL_STATE(2824)] = 83800, + [SMALL_STATE(2825)] = 83818, + [SMALL_STATE(2826)] = 83838, + [SMALL_STATE(2827)] = 83858, + [SMALL_STATE(2828)] = 83878, + [SMALL_STATE(2829)] = 83898, + [SMALL_STATE(2830)] = 83918, + [SMALL_STATE(2831)] = 83938, + [SMALL_STATE(2832)] = 83958, + [SMALL_STATE(2833)] = 83978, + [SMALL_STATE(2834)] = 83998, + [SMALL_STATE(2835)] = 84018, + [SMALL_STATE(2836)] = 84038, + [SMALL_STATE(2837)] = 84056, + [SMALL_STATE(2838)] = 84074, + [SMALL_STATE(2839)] = 84094, + [SMALL_STATE(2840)] = 84114, + [SMALL_STATE(2841)] = 84132, + [SMALL_STATE(2842)] = 84152, + [SMALL_STATE(2843)] = 84170, + [SMALL_STATE(2844)] = 84190, + [SMALL_STATE(2845)] = 84208, + [SMALL_STATE(2846)] = 84228, + [SMALL_STATE(2847)] = 84246, + [SMALL_STATE(2848)] = 84266, + [SMALL_STATE(2849)] = 84286, + [SMALL_STATE(2850)] = 84304, + [SMALL_STATE(2851)] = 84324, + [SMALL_STATE(2852)] = 84344, + [SMALL_STATE(2853)] = 84364, + [SMALL_STATE(2854)] = 84384, + [SMALL_STATE(2855)] = 84404, + [SMALL_STATE(2856)] = 84424, + [SMALL_STATE(2857)] = 84442, + [SMALL_STATE(2858)] = 84462, + [SMALL_STATE(2859)] = 84482, + [SMALL_STATE(2860)] = 84502, + [SMALL_STATE(2861)] = 84522, + [SMALL_STATE(2862)] = 84540, + [SMALL_STATE(2863)] = 84560, + [SMALL_STATE(2864)] = 84580, + [SMALL_STATE(2865)] = 84600, + [SMALL_STATE(2866)] = 84620, + [SMALL_STATE(2867)] = 84636, + [SMALL_STATE(2868)] = 84656, + [SMALL_STATE(2869)] = 84676, + [SMALL_STATE(2870)] = 84696, + [SMALL_STATE(2871)] = 84716, + [SMALL_STATE(2872)] = 84734, + [SMALL_STATE(2873)] = 84752, + [SMALL_STATE(2874)] = 84770, + [SMALL_STATE(2875)] = 84790, + [SMALL_STATE(2876)] = 84810, + [SMALL_STATE(2877)] = 84830, + [SMALL_STATE(2878)] = 84850, + [SMALL_STATE(2879)] = 84870, + [SMALL_STATE(2880)] = 84890, + [SMALL_STATE(2881)] = 84910, + [SMALL_STATE(2882)] = 84930, + [SMALL_STATE(2883)] = 84950, + [SMALL_STATE(2884)] = 84970, + [SMALL_STATE(2885)] = 84990, + [SMALL_STATE(2886)] = 85010, + [SMALL_STATE(2887)] = 85030, + [SMALL_STATE(2888)] = 85050, + [SMALL_STATE(2889)] = 85070, + [SMALL_STATE(2890)] = 85090, + [SMALL_STATE(2891)] = 85110, + [SMALL_STATE(2892)] = 85130, + [SMALL_STATE(2893)] = 85150, + [SMALL_STATE(2894)] = 85170, + [SMALL_STATE(2895)] = 85190, + [SMALL_STATE(2896)] = 85206, + [SMALL_STATE(2897)] = 85224, + [SMALL_STATE(2898)] = 85244, + [SMALL_STATE(2899)] = 85264, + [SMALL_STATE(2900)] = 85282, + [SMALL_STATE(2901)] = 85302, + [SMALL_STATE(2902)] = 85322, + [SMALL_STATE(2903)] = 85342, + [SMALL_STATE(2904)] = 85362, + [SMALL_STATE(2905)] = 85378, + [SMALL_STATE(2906)] = 85398, + [SMALL_STATE(2907)] = 85418, + [SMALL_STATE(2908)] = 85434, + [SMALL_STATE(2909)] = 85452, + [SMALL_STATE(2910)] = 85472, + [SMALL_STATE(2911)] = 85488, + [SMALL_STATE(2912)] = 85508, + [SMALL_STATE(2913)] = 85524, + [SMALL_STATE(2914)] = 85542, + [SMALL_STATE(2915)] = 85560, + [SMALL_STATE(2916)] = 85578, + [SMALL_STATE(2917)] = 85594, + [SMALL_STATE(2918)] = 85614, + [SMALL_STATE(2919)] = 85630, + [SMALL_STATE(2920)] = 85650, + [SMALL_STATE(2921)] = 85670, + [SMALL_STATE(2922)] = 85690, + [SMALL_STATE(2923)] = 85710, + [SMALL_STATE(2924)] = 85730, + [SMALL_STATE(2925)] = 85750, + [SMALL_STATE(2926)] = 85766, + [SMALL_STATE(2927)] = 85786, + [SMALL_STATE(2928)] = 85802, + [SMALL_STATE(2929)] = 85822, + [SMALL_STATE(2930)] = 85838, + [SMALL_STATE(2931)] = 85854, + [SMALL_STATE(2932)] = 85874, + [SMALL_STATE(2933)] = 85890, + [SMALL_STATE(2934)] = 85910, + [SMALL_STATE(2935)] = 85930, + [SMALL_STATE(2936)] = 85950, + [SMALL_STATE(2937)] = 85966, + [SMALL_STATE(2938)] = 85986, + [SMALL_STATE(2939)] = 86002, + [SMALL_STATE(2940)] = 86018, + [SMALL_STATE(2941)] = 86038, + [SMALL_STATE(2942)] = 86058, + [SMALL_STATE(2943)] = 86074, + [SMALL_STATE(2944)] = 86090, + [SMALL_STATE(2945)] = 86106, + [SMALL_STATE(2946)] = 86126, + [SMALL_STATE(2947)] = 86142, + [SMALL_STATE(2948)] = 86158, + [SMALL_STATE(2949)] = 86174, + [SMALL_STATE(2950)] = 86194, + [SMALL_STATE(2951)] = 86210, + [SMALL_STATE(2952)] = 86226, + [SMALL_STATE(2953)] = 86246, + [SMALL_STATE(2954)] = 86262, + [SMALL_STATE(2955)] = 86278, + [SMALL_STATE(2956)] = 86298, + [SMALL_STATE(2957)] = 86318, + [SMALL_STATE(2958)] = 86336, + [SMALL_STATE(2959)] = 86356, + [SMALL_STATE(2960)] = 86376, + [SMALL_STATE(2961)] = 86396, + [SMALL_STATE(2962)] = 86416, + [SMALL_STATE(2963)] = 86436, + [SMALL_STATE(2964)] = 86452, + [SMALL_STATE(2965)] = 86468, + [SMALL_STATE(2966)] = 86484, + [SMALL_STATE(2967)] = 86504, + [SMALL_STATE(2968)] = 86520, + [SMALL_STATE(2969)] = 86536, + [SMALL_STATE(2970)] = 86556, + [SMALL_STATE(2971)] = 86572, + [SMALL_STATE(2972)] = 86588, + [SMALL_STATE(2973)] = 86604, + [SMALL_STATE(2974)] = 86620, + [SMALL_STATE(2975)] = 86640, + [SMALL_STATE(2976)] = 86656, + [SMALL_STATE(2977)] = 86672, + [SMALL_STATE(2978)] = 86688, + [SMALL_STATE(2979)] = 86708, + [SMALL_STATE(2980)] = 86724, + [SMALL_STATE(2981)] = 86740, + [SMALL_STATE(2982)] = 86756, + [SMALL_STATE(2983)] = 86772, + [SMALL_STATE(2984)] = 86788, + [SMALL_STATE(2985)] = 86808, + [SMALL_STATE(2986)] = 86828, + [SMALL_STATE(2987)] = 86848, + [SMALL_STATE(2988)] = 86868, + [SMALL_STATE(2989)] = 86888, + [SMALL_STATE(2990)] = 86904, + [SMALL_STATE(2991)] = 86920, + [SMALL_STATE(2992)] = 86940, + [SMALL_STATE(2993)] = 86956, + [SMALL_STATE(2994)] = 86972, + [SMALL_STATE(2995)] = 86992, + [SMALL_STATE(2996)] = 87012, + [SMALL_STATE(2997)] = 87032, + [SMALL_STATE(2998)] = 87052, + [SMALL_STATE(2999)] = 87072, + [SMALL_STATE(3000)] = 87092, + [SMALL_STATE(3001)] = 87112, + [SMALL_STATE(3002)] = 87132, + [SMALL_STATE(3003)] = 87148, + [SMALL_STATE(3004)] = 87168, + [SMALL_STATE(3005)] = 87188, + [SMALL_STATE(3006)] = 87208, + [SMALL_STATE(3007)] = 87228, + [SMALL_STATE(3008)] = 87248, + [SMALL_STATE(3009)] = 87264, + [SMALL_STATE(3010)] = 87280, + [SMALL_STATE(3011)] = 87300, + [SMALL_STATE(3012)] = 87320, + [SMALL_STATE(3013)] = 87337, + [SMALL_STATE(3014)] = 87352, + [SMALL_STATE(3015)] = 87369, + [SMALL_STATE(3016)] = 87386, + [SMALL_STATE(3017)] = 87403, + [SMALL_STATE(3018)] = 87420, + [SMALL_STATE(3019)] = 87435, + [SMALL_STATE(3020)] = 87452, + [SMALL_STATE(3021)] = 87469, + [SMALL_STATE(3022)] = 87486, + [SMALL_STATE(3023)] = 87503, + [SMALL_STATE(3024)] = 87520, + [SMALL_STATE(3025)] = 87537, + [SMALL_STATE(3026)] = 87554, + [SMALL_STATE(3027)] = 87571, + [SMALL_STATE(3028)] = 87588, + [SMALL_STATE(3029)] = 87605, + [SMALL_STATE(3030)] = 87622, + [SMALL_STATE(3031)] = 87639, + [SMALL_STATE(3032)] = 87656, + [SMALL_STATE(3033)] = 87673, + [SMALL_STATE(3034)] = 87690, + [SMALL_STATE(3035)] = 87707, + [SMALL_STATE(3036)] = 87724, + [SMALL_STATE(3037)] = 87741, + [SMALL_STATE(3038)] = 87758, + [SMALL_STATE(3039)] = 87775, + [SMALL_STATE(3040)] = 87792, + [SMALL_STATE(3041)] = 87809, + [SMALL_STATE(3042)] = 87826, + [SMALL_STATE(3043)] = 87843, + [SMALL_STATE(3044)] = 87860, + [SMALL_STATE(3045)] = 87877, + [SMALL_STATE(3046)] = 87894, + [SMALL_STATE(3047)] = 87909, + [SMALL_STATE(3048)] = 87926, + [SMALL_STATE(3049)] = 87943, + [SMALL_STATE(3050)] = 87960, + [SMALL_STATE(3051)] = 87977, + [SMALL_STATE(3052)] = 87994, + [SMALL_STATE(3053)] = 88011, + [SMALL_STATE(3054)] = 88028, + [SMALL_STATE(3055)] = 88043, + [SMALL_STATE(3056)] = 88060, + [SMALL_STATE(3057)] = 88075, + [SMALL_STATE(3058)] = 88092, + [SMALL_STATE(3059)] = 88109, + [SMALL_STATE(3060)] = 88126, + [SMALL_STATE(3061)] = 88141, + [SMALL_STATE(3062)] = 88158, + [SMALL_STATE(3063)] = 88175, + [SMALL_STATE(3064)] = 88190, + [SMALL_STATE(3065)] = 88207, + [SMALL_STATE(3066)] = 88224, + [SMALL_STATE(3067)] = 88241, + [SMALL_STATE(3068)] = 88258, + [SMALL_STATE(3069)] = 88275, + [SMALL_STATE(3070)] = 88292, + [SMALL_STATE(3071)] = 88307, + [SMALL_STATE(3072)] = 88324, + [SMALL_STATE(3073)] = 88341, + [SMALL_STATE(3074)] = 88358, + [SMALL_STATE(3075)] = 88375, + [SMALL_STATE(3076)] = 88390, + [SMALL_STATE(3077)] = 88407, + [SMALL_STATE(3078)] = 88424, + [SMALL_STATE(3079)] = 88441, + [SMALL_STATE(3080)] = 88458, + [SMALL_STATE(3081)] = 88473, + [SMALL_STATE(3082)] = 88488, + [SMALL_STATE(3083)] = 88503, + [SMALL_STATE(3084)] = 88520, + [SMALL_STATE(3085)] = 88537, + [SMALL_STATE(3086)] = 88554, + [SMALL_STATE(3087)] = 88571, + [SMALL_STATE(3088)] = 88588, + [SMALL_STATE(3089)] = 88605, + [SMALL_STATE(3090)] = 88620, + [SMALL_STATE(3091)] = 88637, + [SMALL_STATE(3092)] = 88654, + [SMALL_STATE(3093)] = 88671, + [SMALL_STATE(3094)] = 88688, + [SMALL_STATE(3095)] = 88705, + [SMALL_STATE(3096)] = 88722, + [SMALL_STATE(3097)] = 88737, + [SMALL_STATE(3098)] = 88754, + [SMALL_STATE(3099)] = 88771, + [SMALL_STATE(3100)] = 88788, + [SMALL_STATE(3101)] = 88803, + [SMALL_STATE(3102)] = 88820, + [SMALL_STATE(3103)] = 88837, + [SMALL_STATE(3104)] = 88854, + [SMALL_STATE(3105)] = 88869, + [SMALL_STATE(3106)] = 88886, + [SMALL_STATE(3107)] = 88903, + [SMALL_STATE(3108)] = 88920, + [SMALL_STATE(3109)] = 88935, + [SMALL_STATE(3110)] = 88952, + [SMALL_STATE(3111)] = 88969, + [SMALL_STATE(3112)] = 88986, + [SMALL_STATE(3113)] = 89003, + [SMALL_STATE(3114)] = 89020, + [SMALL_STATE(3115)] = 89035, + [SMALL_STATE(3116)] = 89052, + [SMALL_STATE(3117)] = 89069, + [SMALL_STATE(3118)] = 89084, + [SMALL_STATE(3119)] = 89101, + [SMALL_STATE(3120)] = 89118, + [SMALL_STATE(3121)] = 89135, + [SMALL_STATE(3122)] = 89152, + [SMALL_STATE(3123)] = 89169, + [SMALL_STATE(3124)] = 89186, + [SMALL_STATE(3125)] = 89203, + [SMALL_STATE(3126)] = 89220, + [SMALL_STATE(3127)] = 89237, + [SMALL_STATE(3128)] = 89252, + [SMALL_STATE(3129)] = 89267, + [SMALL_STATE(3130)] = 89282, + [SMALL_STATE(3131)] = 89297, + [SMALL_STATE(3132)] = 89314, + [SMALL_STATE(3133)] = 89331, + [SMALL_STATE(3134)] = 89346, + [SMALL_STATE(3135)] = 89363, + [SMALL_STATE(3136)] = 89378, + [SMALL_STATE(3137)] = 89395, + [SMALL_STATE(3138)] = 89412, + [SMALL_STATE(3139)] = 89429, + [SMALL_STATE(3140)] = 89444, + [SMALL_STATE(3141)] = 89461, + [SMALL_STATE(3142)] = 89478, + [SMALL_STATE(3143)] = 89495, + [SMALL_STATE(3144)] = 89512, + [SMALL_STATE(3145)] = 89529, + [SMALL_STATE(3146)] = 89546, + [SMALL_STATE(3147)] = 89563, + [SMALL_STATE(3148)] = 89580, + [SMALL_STATE(3149)] = 89595, + [SMALL_STATE(3150)] = 89612, + [SMALL_STATE(3151)] = 89629, + [SMALL_STATE(3152)] = 89646, + [SMALL_STATE(3153)] = 89663, + [SMALL_STATE(3154)] = 89680, + [SMALL_STATE(3155)] = 89697, + [SMALL_STATE(3156)] = 89714, + [SMALL_STATE(3157)] = 89731, + [SMALL_STATE(3158)] = 89746, + [SMALL_STATE(3159)] = 89763, + [SMALL_STATE(3160)] = 89778, + [SMALL_STATE(3161)] = 89795, + [SMALL_STATE(3162)] = 89812, + [SMALL_STATE(3163)] = 89827, + [SMALL_STATE(3164)] = 89844, + [SMALL_STATE(3165)] = 89861, + [SMALL_STATE(3166)] = 89878, + [SMALL_STATE(3167)] = 89895, + [SMALL_STATE(3168)] = 89912, + [SMALL_STATE(3169)] = 89929, + [SMALL_STATE(3170)] = 89946, + [SMALL_STATE(3171)] = 89963, + [SMALL_STATE(3172)] = 89980, + [SMALL_STATE(3173)] = 89995, + [SMALL_STATE(3174)] = 90012, + [SMALL_STATE(3175)] = 90029, + [SMALL_STATE(3176)] = 90046, + [SMALL_STATE(3177)] = 90063, + [SMALL_STATE(3178)] = 90080, + [SMALL_STATE(3179)] = 90095, + [SMALL_STATE(3180)] = 90112, + [SMALL_STATE(3181)] = 90129, + [SMALL_STATE(3182)] = 90146, + [SMALL_STATE(3183)] = 90163, + [SMALL_STATE(3184)] = 90180, + [SMALL_STATE(3185)] = 90197, + [SMALL_STATE(3186)] = 90214, + [SMALL_STATE(3187)] = 90231, + [SMALL_STATE(3188)] = 90248, + [SMALL_STATE(3189)] = 90265, + [SMALL_STATE(3190)] = 90282, + [SMALL_STATE(3191)] = 90297, + [SMALL_STATE(3192)] = 90314, + [SMALL_STATE(3193)] = 90331, + [SMALL_STATE(3194)] = 90348, + [SMALL_STATE(3195)] = 90363, + [SMALL_STATE(3196)] = 90380, + [SMALL_STATE(3197)] = 90397, + [SMALL_STATE(3198)] = 90414, + [SMALL_STATE(3199)] = 90431, + [SMALL_STATE(3200)] = 90448, + [SMALL_STATE(3201)] = 90465, + [SMALL_STATE(3202)] = 90482, + [SMALL_STATE(3203)] = 90499, + [SMALL_STATE(3204)] = 90514, + [SMALL_STATE(3205)] = 90531, + [SMALL_STATE(3206)] = 90548, + [SMALL_STATE(3207)] = 90565, + [SMALL_STATE(3208)] = 90580, + [SMALL_STATE(3209)] = 90595, + [SMALL_STATE(3210)] = 90612, + [SMALL_STATE(3211)] = 90629, + [SMALL_STATE(3212)] = 90644, + [SMALL_STATE(3213)] = 90661, + [SMALL_STATE(3214)] = 90678, + [SMALL_STATE(3215)] = 90693, + [SMALL_STATE(3216)] = 90710, + [SMALL_STATE(3217)] = 90727, + [SMALL_STATE(3218)] = 90744, + [SMALL_STATE(3219)] = 90759, + [SMALL_STATE(3220)] = 90776, + [SMALL_STATE(3221)] = 90793, + [SMALL_STATE(3222)] = 90810, + [SMALL_STATE(3223)] = 90827, + [SMALL_STATE(3224)] = 90844, + [SMALL_STATE(3225)] = 90861, + [SMALL_STATE(3226)] = 90878, + [SMALL_STATE(3227)] = 90895, + [SMALL_STATE(3228)] = 90912, + [SMALL_STATE(3229)] = 90929, + [SMALL_STATE(3230)] = 90946, + [SMALL_STATE(3231)] = 90963, + [SMALL_STATE(3232)] = 90980, + [SMALL_STATE(3233)] = 90995, + [SMALL_STATE(3234)] = 91012, + [SMALL_STATE(3235)] = 91027, + [SMALL_STATE(3236)] = 91044, + [SMALL_STATE(3237)] = 91061, + [SMALL_STATE(3238)] = 91078, + [SMALL_STATE(3239)] = 91095, + [SMALL_STATE(3240)] = 91110, + [SMALL_STATE(3241)] = 91127, + [SMALL_STATE(3242)] = 91142, + [SMALL_STATE(3243)] = 91159, + [SMALL_STATE(3244)] = 91176, + [SMALL_STATE(3245)] = 91193, + [SMALL_STATE(3246)] = 91210, + [SMALL_STATE(3247)] = 91227, + [SMALL_STATE(3248)] = 91244, + [SMALL_STATE(3249)] = 91261, + [SMALL_STATE(3250)] = 91276, + [SMALL_STATE(3251)] = 91293, + [SMALL_STATE(3252)] = 91310, + [SMALL_STATE(3253)] = 91327, + [SMALL_STATE(3254)] = 91344, + [SMALL_STATE(3255)] = 91361, + [SMALL_STATE(3256)] = 91378, + [SMALL_STATE(3257)] = 91395, + [SMALL_STATE(3258)] = 91412, + [SMALL_STATE(3259)] = 91427, + [SMALL_STATE(3260)] = 91444, + [SMALL_STATE(3261)] = 91461, + [SMALL_STATE(3262)] = 91478, + [SMALL_STATE(3263)] = 91495, + [SMALL_STATE(3264)] = 91510, + [SMALL_STATE(3265)] = 91527, + [SMALL_STATE(3266)] = 91544, + [SMALL_STATE(3267)] = 91559, + [SMALL_STATE(3268)] = 91576, + [SMALL_STATE(3269)] = 91593, + [SMALL_STATE(3270)] = 91610, + [SMALL_STATE(3271)] = 91627, + [SMALL_STATE(3272)] = 91644, + [SMALL_STATE(3273)] = 91661, + [SMALL_STATE(3274)] = 91678, + [SMALL_STATE(3275)] = 91695, + [SMALL_STATE(3276)] = 91712, + [SMALL_STATE(3277)] = 91729, + [SMALL_STATE(3278)] = 91744, + [SMALL_STATE(3279)] = 91761, + [SMALL_STATE(3280)] = 91778, + [SMALL_STATE(3281)] = 91795, + [SMALL_STATE(3282)] = 91812, + [SMALL_STATE(3283)] = 91829, + [SMALL_STATE(3284)] = 91846, + [SMALL_STATE(3285)] = 91861, + [SMALL_STATE(3286)] = 91878, + [SMALL_STATE(3287)] = 91895, + [SMALL_STATE(3288)] = 91909, + [SMALL_STATE(3289)] = 91923, + [SMALL_STATE(3290)] = 91937, + [SMALL_STATE(3291)] = 91951, + [SMALL_STATE(3292)] = 91965, + [SMALL_STATE(3293)] = 91979, + [SMALL_STATE(3294)] = 91993, + [SMALL_STATE(3295)] = 92007, + [SMALL_STATE(3296)] = 92021, + [SMALL_STATE(3297)] = 92035, + [SMALL_STATE(3298)] = 92049, + [SMALL_STATE(3299)] = 92063, + [SMALL_STATE(3300)] = 92077, + [SMALL_STATE(3301)] = 92091, + [SMALL_STATE(3302)] = 92105, + [SMALL_STATE(3303)] = 92119, + [SMALL_STATE(3304)] = 92133, + [SMALL_STATE(3305)] = 92147, + [SMALL_STATE(3306)] = 92161, + [SMALL_STATE(3307)] = 92175, + [SMALL_STATE(3308)] = 92189, + [SMALL_STATE(3309)] = 92203, + [SMALL_STATE(3310)] = 92217, + [SMALL_STATE(3311)] = 92231, + [SMALL_STATE(3312)] = 92245, + [SMALL_STATE(3313)] = 92259, + [SMALL_STATE(3314)] = 92273, + [SMALL_STATE(3315)] = 92287, + [SMALL_STATE(3316)] = 92301, + [SMALL_STATE(3317)] = 92315, + [SMALL_STATE(3318)] = 92329, + [SMALL_STATE(3319)] = 92343, + [SMALL_STATE(3320)] = 92357, + [SMALL_STATE(3321)] = 92371, + [SMALL_STATE(3322)] = 92385, + [SMALL_STATE(3323)] = 92399, + [SMALL_STATE(3324)] = 92413, + [SMALL_STATE(3325)] = 92427, + [SMALL_STATE(3326)] = 92441, + [SMALL_STATE(3327)] = 92455, + [SMALL_STATE(3328)] = 92469, + [SMALL_STATE(3329)] = 92483, + [SMALL_STATE(3330)] = 92497, + [SMALL_STATE(3331)] = 92511, + [SMALL_STATE(3332)] = 92525, + [SMALL_STATE(3333)] = 92539, + [SMALL_STATE(3334)] = 92553, + [SMALL_STATE(3335)] = 92567, + [SMALL_STATE(3336)] = 92581, + [SMALL_STATE(3337)] = 92595, + [SMALL_STATE(3338)] = 92609, + [SMALL_STATE(3339)] = 92623, + [SMALL_STATE(3340)] = 92637, + [SMALL_STATE(3341)] = 92651, + [SMALL_STATE(3342)] = 92665, + [SMALL_STATE(3343)] = 92679, + [SMALL_STATE(3344)] = 92693, + [SMALL_STATE(3345)] = 92707, + [SMALL_STATE(3346)] = 92721, + [SMALL_STATE(3347)] = 92735, + [SMALL_STATE(3348)] = 92749, + [SMALL_STATE(3349)] = 92763, + [SMALL_STATE(3350)] = 92777, + [SMALL_STATE(3351)] = 92791, + [SMALL_STATE(3352)] = 92805, + [SMALL_STATE(3353)] = 92819, + [SMALL_STATE(3354)] = 92833, + [SMALL_STATE(3355)] = 92847, + [SMALL_STATE(3356)] = 92861, + [SMALL_STATE(3357)] = 92875, + [SMALL_STATE(3358)] = 92889, + [SMALL_STATE(3359)] = 92903, + [SMALL_STATE(3360)] = 92917, + [SMALL_STATE(3361)] = 92931, + [SMALL_STATE(3362)] = 92945, + [SMALL_STATE(3363)] = 92959, + [SMALL_STATE(3364)] = 92973, + [SMALL_STATE(3365)] = 92987, + [SMALL_STATE(3366)] = 93001, + [SMALL_STATE(3367)] = 93015, + [SMALL_STATE(3368)] = 93029, + [SMALL_STATE(3369)] = 93043, + [SMALL_STATE(3370)] = 93057, + [SMALL_STATE(3371)] = 93071, + [SMALL_STATE(3372)] = 93085, + [SMALL_STATE(3373)] = 93099, + [SMALL_STATE(3374)] = 93113, + [SMALL_STATE(3375)] = 93127, + [SMALL_STATE(3376)] = 93141, + [SMALL_STATE(3377)] = 93155, + [SMALL_STATE(3378)] = 93169, + [SMALL_STATE(3379)] = 93183, + [SMALL_STATE(3380)] = 93197, + [SMALL_STATE(3381)] = 93211, + [SMALL_STATE(3382)] = 93225, + [SMALL_STATE(3383)] = 93239, + [SMALL_STATE(3384)] = 93253, + [SMALL_STATE(3385)] = 93267, + [SMALL_STATE(3386)] = 93281, + [SMALL_STATE(3387)] = 93295, + [SMALL_STATE(3388)] = 93309, + [SMALL_STATE(3389)] = 93323, + [SMALL_STATE(3390)] = 93337, + [SMALL_STATE(3391)] = 93351, + [SMALL_STATE(3392)] = 93365, + [SMALL_STATE(3393)] = 93379, + [SMALL_STATE(3394)] = 93393, + [SMALL_STATE(3395)] = 93407, + [SMALL_STATE(3396)] = 93421, + [SMALL_STATE(3397)] = 93435, + [SMALL_STATE(3398)] = 93449, + [SMALL_STATE(3399)] = 93463, + [SMALL_STATE(3400)] = 93477, + [SMALL_STATE(3401)] = 93491, + [SMALL_STATE(3402)] = 93505, + [SMALL_STATE(3403)] = 93519, + [SMALL_STATE(3404)] = 93533, + [SMALL_STATE(3405)] = 93547, + [SMALL_STATE(3406)] = 93561, + [SMALL_STATE(3407)] = 93575, + [SMALL_STATE(3408)] = 93589, + [SMALL_STATE(3409)] = 93603, + [SMALL_STATE(3410)] = 93617, + [SMALL_STATE(3411)] = 93631, + [SMALL_STATE(3412)] = 93645, + [SMALL_STATE(3413)] = 93659, + [SMALL_STATE(3414)] = 93673, + [SMALL_STATE(3415)] = 93687, + [SMALL_STATE(3416)] = 93701, + [SMALL_STATE(3417)] = 93715, + [SMALL_STATE(3418)] = 93729, + [SMALL_STATE(3419)] = 93743, + [SMALL_STATE(3420)] = 93757, + [SMALL_STATE(3421)] = 93771, + [SMALL_STATE(3422)] = 93785, + [SMALL_STATE(3423)] = 93799, + [SMALL_STATE(3424)] = 93813, + [SMALL_STATE(3425)] = 93827, + [SMALL_STATE(3426)] = 93841, + [SMALL_STATE(3427)] = 93855, + [SMALL_STATE(3428)] = 93869, + [SMALL_STATE(3429)] = 93883, + [SMALL_STATE(3430)] = 93897, + [SMALL_STATE(3431)] = 93911, + [SMALL_STATE(3432)] = 93925, + [SMALL_STATE(3433)] = 93939, + [SMALL_STATE(3434)] = 93953, + [SMALL_STATE(3435)] = 93967, + [SMALL_STATE(3436)] = 93981, + [SMALL_STATE(3437)] = 93995, + [SMALL_STATE(3438)] = 94009, + [SMALL_STATE(3439)] = 94023, + [SMALL_STATE(3440)] = 94037, + [SMALL_STATE(3441)] = 94051, + [SMALL_STATE(3442)] = 94065, + [SMALL_STATE(3443)] = 94079, + [SMALL_STATE(3444)] = 94093, + [SMALL_STATE(3445)] = 94107, + [SMALL_STATE(3446)] = 94121, + [SMALL_STATE(3447)] = 94135, + [SMALL_STATE(3448)] = 94149, + [SMALL_STATE(3449)] = 94163, + [SMALL_STATE(3450)] = 94177, + [SMALL_STATE(3451)] = 94191, + [SMALL_STATE(3452)] = 94205, + [SMALL_STATE(3453)] = 94219, + [SMALL_STATE(3454)] = 94233, + [SMALL_STATE(3455)] = 94247, + [SMALL_STATE(3456)] = 94261, + [SMALL_STATE(3457)] = 94275, + [SMALL_STATE(3458)] = 94289, + [SMALL_STATE(3459)] = 94303, + [SMALL_STATE(3460)] = 94317, + [SMALL_STATE(3461)] = 94331, + [SMALL_STATE(3462)] = 94345, + [SMALL_STATE(3463)] = 94359, + [SMALL_STATE(3464)] = 94373, + [SMALL_STATE(3465)] = 94387, + [SMALL_STATE(3466)] = 94401, + [SMALL_STATE(3467)] = 94415, + [SMALL_STATE(3468)] = 94429, + [SMALL_STATE(3469)] = 94443, + [SMALL_STATE(3470)] = 94457, + [SMALL_STATE(3471)] = 94471, + [SMALL_STATE(3472)] = 94485, + [SMALL_STATE(3473)] = 94499, + [SMALL_STATE(3474)] = 94513, + [SMALL_STATE(3475)] = 94527, + [SMALL_STATE(3476)] = 94541, + [SMALL_STATE(3477)] = 94555, + [SMALL_STATE(3478)] = 94569, + [SMALL_STATE(3479)] = 94583, + [SMALL_STATE(3480)] = 94597, + [SMALL_STATE(3481)] = 94611, + [SMALL_STATE(3482)] = 94625, + [SMALL_STATE(3483)] = 94639, + [SMALL_STATE(3484)] = 94653, + [SMALL_STATE(3485)] = 94667, + [SMALL_STATE(3486)] = 94681, + [SMALL_STATE(3487)] = 94695, + [SMALL_STATE(3488)] = 94709, + [SMALL_STATE(3489)] = 94723, + [SMALL_STATE(3490)] = 94737, + [SMALL_STATE(3491)] = 94751, + [SMALL_STATE(3492)] = 94765, + [SMALL_STATE(3493)] = 94779, + [SMALL_STATE(3494)] = 94793, + [SMALL_STATE(3495)] = 94807, + [SMALL_STATE(3496)] = 94821, + [SMALL_STATE(3497)] = 94835, + [SMALL_STATE(3498)] = 94849, + [SMALL_STATE(3499)] = 94863, + [SMALL_STATE(3500)] = 94877, + [SMALL_STATE(3501)] = 94891, + [SMALL_STATE(3502)] = 94905, + [SMALL_STATE(3503)] = 94919, + [SMALL_STATE(3504)] = 94933, + [SMALL_STATE(3505)] = 94947, + [SMALL_STATE(3506)] = 94961, + [SMALL_STATE(3507)] = 94975, + [SMALL_STATE(3508)] = 94989, + [SMALL_STATE(3509)] = 95003, + [SMALL_STATE(3510)] = 95017, + [SMALL_STATE(3511)] = 95031, + [SMALL_STATE(3512)] = 95045, + [SMALL_STATE(3513)] = 95059, + [SMALL_STATE(3514)] = 95073, + [SMALL_STATE(3515)] = 95087, + [SMALL_STATE(3516)] = 95101, + [SMALL_STATE(3517)] = 95115, + [SMALL_STATE(3518)] = 95129, + [SMALL_STATE(3519)] = 95143, + [SMALL_STATE(3520)] = 95157, + [SMALL_STATE(3521)] = 95171, + [SMALL_STATE(3522)] = 95185, + [SMALL_STATE(3523)] = 95199, + [SMALL_STATE(3524)] = 95213, + [SMALL_STATE(3525)] = 95227, + [SMALL_STATE(3526)] = 95241, + [SMALL_STATE(3527)] = 95255, + [SMALL_STATE(3528)] = 95269, + [SMALL_STATE(3529)] = 95283, + [SMALL_STATE(3530)] = 95297, + [SMALL_STATE(3531)] = 95311, + [SMALL_STATE(3532)] = 95325, + [SMALL_STATE(3533)] = 95339, + [SMALL_STATE(3534)] = 95353, + [SMALL_STATE(3535)] = 95367, + [SMALL_STATE(3536)] = 95381, + [SMALL_STATE(3537)] = 95395, + [SMALL_STATE(3538)] = 95409, + [SMALL_STATE(3539)] = 95423, + [SMALL_STATE(3540)] = 95437, + [SMALL_STATE(3541)] = 95451, + [SMALL_STATE(3542)] = 95465, + [SMALL_STATE(3543)] = 95479, + [SMALL_STATE(3544)] = 95493, + [SMALL_STATE(3545)] = 95507, + [SMALL_STATE(3546)] = 95521, + [SMALL_STATE(3547)] = 95535, + [SMALL_STATE(3548)] = 95549, + [SMALL_STATE(3549)] = 95563, + [SMALL_STATE(3550)] = 95577, + [SMALL_STATE(3551)] = 95591, + [SMALL_STATE(3552)] = 95605, + [SMALL_STATE(3553)] = 95619, + [SMALL_STATE(3554)] = 95633, + [SMALL_STATE(3555)] = 95647, + [SMALL_STATE(3556)] = 95661, + [SMALL_STATE(3557)] = 95675, + [SMALL_STATE(3558)] = 95689, + [SMALL_STATE(3559)] = 95703, + [SMALL_STATE(3560)] = 95717, + [SMALL_STATE(3561)] = 95731, + [SMALL_STATE(3562)] = 95745, + [SMALL_STATE(3563)] = 95759, + [SMALL_STATE(3564)] = 95773, + [SMALL_STATE(3565)] = 95787, + [SMALL_STATE(3566)] = 95801, + [SMALL_STATE(3567)] = 95805, + [SMALL_STATE(3568)] = 95809, + [SMALL_STATE(3569)] = 95813, + [SMALL_STATE(3570)] = 95817, + [SMALL_STATE(3571)] = 95821, + [SMALL_STATE(3572)] = 95825, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_source_file, .child_count = 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1480), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(571), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2693), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(107), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(82), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(9), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(178), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1449), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2978), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(158), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2981), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(856), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(794), - [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3522), - [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2027), - [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(36), - [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2045), - [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1087), - [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1042), - [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3433), - [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3060), - [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(826), - [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(87), - [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(860), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(823), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2466), - [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(213), - [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3430), - [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1953), - [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(38), - [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2300), - [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3418), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3417), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3416), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1507), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2013), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1876), - [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(83), - [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2021), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(41), - [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(42), - [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3067), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2497), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1273), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2474), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1090), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1453), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3392), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1989), - [288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1453), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2), - [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1), - [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1), - [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1045), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(107), - [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(82), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(20), - [551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(178), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1449), - [557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2978), - [560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(158), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(3357), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(856), - [569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(794), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(3522), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2407), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(36), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2486), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1087), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1216), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(835), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(99), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2551), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(230), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(38), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2755), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2487), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(100), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(41), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(42), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(3067), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2553), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1273), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(2474), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1090), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1453), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(3392), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT(1453), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 30), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 30), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1045), - [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(107), - [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(82), - [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(20), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(178), - [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1449), - [766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2978), - [769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(158), - [772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(856), - [775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(794), - [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3522), - [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2407), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(36), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2486), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1087), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1216), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(835), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(99), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2551), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(230), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(38), - [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2755), - [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2487), - [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(100), - [820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(41), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(42), - [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3067), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2553), - [832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1273), - [835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(2474), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1090), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1453), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(3392), - [847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), SHIFT_REPEAT(1453), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6), - [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), - [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5), - [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2), - [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2), - [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, .production_id = 8), - [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, .production_id = 8), - [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 43), - [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 43), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), - [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3), - [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3), - [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 38), - [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 38), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, .production_id = 8), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, .production_id = 8), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 238), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 238), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 74), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 74), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, .production_id = 115), - [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, .production_id = 115), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, .production_id = 33), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, .production_id = 33), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, .production_id = 143), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, .production_id = 143), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, .production_id = 28), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, .production_id = 28), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, .production_id = 98), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, .production_id = 98), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [1038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [1074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [1094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(447), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(432), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(349), - [1139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), - [1141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(348), - [1144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(345), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(432), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(3317), - [1153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(429), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(2556), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(433), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2), SHIFT_REPEAT(435), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(424), - [1208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(432), - [1211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(398), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), - [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(397), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(396), - [1222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(432), - [1225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(3377), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(429), - [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(2556), - [1234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(433), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2), SHIFT_REPEAT(424), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(454), - [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(448), - [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(388), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), - [1277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(387), - [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(386), - [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(448), - [1286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(454), - [1289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(451), - [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(2620), - [1295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2), SHIFT_REPEAT(456), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_source_file, .child_count = 1), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(1494), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(583), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(2820), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(79), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(72), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(9), + [171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), + [173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(168), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(1460), + [179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(3015), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(140), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(3017), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(830), + [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(780), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(3366), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(2023), + [200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(36), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(2056), + [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(1041), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(1035), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(3367), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(3018), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(795), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(91), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(845), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(798), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(2480), + [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(279), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(3564), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(1948), + [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(41), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(2325), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(3562), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(3558), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(3555), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(1500), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(2011), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(1865), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(83), + [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(2022), + [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(39), + [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(40), + [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(3029), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(2484), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(1094), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(2495), + [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(1191), + [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(1466), + [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(3530), + [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(1953), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 2), SHIFT_REPEAT(1466), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_source_file, .child_count = 2), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_break_expression, .child_count = 2), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_break_expression, .child_count = 2), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_break_expression, .child_count = 1), + [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_break_expression, .child_count = 1), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_range_expression, .child_count = 2), + [371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_range_expression, .child_count = 2), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_range_expression, .child_count = 1), + [375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_range_expression, .child_count = 1), + [377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_yield_expression, .child_count = 1), + [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_yield_expression, .child_count = 1), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_return_expression, .child_count = 1), + [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_return_expression, .child_count = 1), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(1030), + [524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(79), + [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(72), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), + [532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(29), + [535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(168), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(1460), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(3015), + [544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(140), + [547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT_REPEAT(3471), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(830), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(780), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(3366), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(2402), + [562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(36), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(2570), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(1041), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(1271), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(799), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(93), + [580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(2580), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(159), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(41), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(2823), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(2574), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(86), + [598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(39), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(40), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(3029), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(2582), + [610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(1094), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(2495), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(1191), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(1466), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(3530), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT(1466), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_if_expression, .child_count = 3, .production_id = 30), + [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_if_expression, .child_count = 3, .production_id = 30), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(1030), + [731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(79), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), + [736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(72), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(29), + [742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(168), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(1460), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(3015), + [751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(140), + [754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(830), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(780), + [760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(3366), + [763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(2402), + [766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(36), + [769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(2570), + [772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(1041), + [775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(1271), + [778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(799), + [781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(93), + [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(2580), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(159), + [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(41), + [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(2823), + [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(2574), + [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(86), + [802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(39), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(40), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(3029), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(2582), + [814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(1094), + [817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(2495), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(1191), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(1466), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(3530), + [829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), SHIFT_REPEAT(1466), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_block, .child_count = 6), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_block, .child_count = 6), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_block, .child_count = 5), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_block, .child_count = 5), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_block, .child_count = 4), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_block, .child_count = 4), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_block, .child_count = 3), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_block, .child_count = 3), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_block, .child_count = 2), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_block, .child_count = 2), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_loop_expression, .child_count = 4, .production_id = 98), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_loop_expression, .child_count = 4, .production_id = 98), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_macro_invocation, .child_count = 3, .production_id = 28), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_macro_invocation, .child_count = 3, .production_id = 28), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_async_block, .child_count = 3), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_async_block, .child_count = 3), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_macro_invocation, .child_count = 3, .production_id = 43), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_macro_invocation, .child_count = 3, .production_id = 43), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_for_expression, .child_count = 7, .production_id = 241), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_for_expression, .child_count = 7, .production_id = 241), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_while_expression, .child_count = 5, .production_id = 145), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_while_expression, .child_count = 5, .production_id = 145), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__statement, .child_count = 1), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__statement, .child_count = 1), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__expression_except_range, .child_count = 1), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__expression_except_range, .child_count = 1), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_async_block, .child_count = 2), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_async_block, .child_count = 2), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_match_block, .child_count = 2), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_match_block, .child_count = 2), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_const_block, .child_count = 2, .production_id = 8), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_const_block, .child_count = 2, .production_id = 8), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_expression_statement, .child_count = 1), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_expression_statement, .child_count = 1), + [924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_match_expression, .child_count = 3, .production_id = 33), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_match_expression, .child_count = 3, .production_id = 33), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_match_block, .child_count = 3), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_match_block, .child_count = 3), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_if_expression, .child_count = 4, .production_id = 75), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_if_expression, .child_count = 4, .production_id = 75), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_loop_expression, .child_count = 2, .production_id = 8), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_loop_expression, .child_count = 2, .production_id = 8), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_while_expression, .child_count = 3, .production_id = 38), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_while_expression, .child_count = 3, .production_id = 38), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_unsafe_block, .child_count = 2), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_unsafe_block, .child_count = 2), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_try_block, .child_count = 2), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_try_block, .child_count = 2), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_match_block, .child_count = 4), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_match_block, .child_count = 4), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_else_clause, .child_count = 2), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_else_clause, .child_count = 2), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_for_expression, .child_count = 5, .production_id = 115), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_for_expression, .child_count = 5, .production_id = 115), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_delim_token_tree, .child_count = 2), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_delim_token_tree, .child_count = 2), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_delim_token_tree, .child_count = 3), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_delim_token_tree, .child_count = 3), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [1010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [1012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [1020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [1042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [1084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [1102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [1122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [1148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [1152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(410), + [1155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(416), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(319), + [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 2), + [1163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(318), + [1166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(317), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(416), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(3493), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(407), + [1178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(2627), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(402), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(411), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(414), + [1252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(416), + [1255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(388), + [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 2), + [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(361), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(350), + [1266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(416), + [1269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(3427), + [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(407), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(2627), + [1278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(402), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(414), + [1284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(419), + [1287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(425), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(381), + [1293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 2), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(369), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(357), + [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(425), + [1304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(419), + [1307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(422), + [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(2482), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 2), SHIFT_REPEAT(423), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), - [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(432), - [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), - [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(432), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1), - [1462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(448), - [1465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2), SHIFT_REPEAT(448), - [1468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 194), - [1470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, .production_id = 194), - [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1), - [1474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1), - [1476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1), - [1478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3), - [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3), - [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5), - [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5), - [1494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1), - [1496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4), - [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4), - [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3), - [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3), - [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1), - [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5), - [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5), - [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6), - [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6), - [1526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [1586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 116), - [1588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 116), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, .production_id = 169), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, .production_id = 169), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [1638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2005), - [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(776), - [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(796), - [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2223), - [1650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2719), - [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3081), - [1656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3150), - [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(819), - [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3357), - [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(856), - [1668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(794), - [1671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2619), - [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2049), - [1677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2863), - [1680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(818), - [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(830), - [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2720), - [1689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(3144), - [1692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2302), - [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2574), - [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2349), - [1701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2583), - [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2), SHIFT_REPEAT(2583), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 227), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 227), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 235), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 235), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 236), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 236), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, .production_id = 129), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, .production_id = 129), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 128), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 128), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 111), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 111), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 235), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 235), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 234), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, .production_id = 234), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [1793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 34), - [1795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 34), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 192), - [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 192), - [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 237), - [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 237), - [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 127), - [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 127), - [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, .production_id = 172), - [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, .production_id = 172), - [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), - [1815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 228), - [1817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, .production_id = 29), - [1819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, .production_id = 29), - [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3), - [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3), - [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 44), - [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, .production_id = 44), - [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 111), - [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 111), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 71), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 71), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 29), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 29), - [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, .production_id = 5), - [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 233), - [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 233), - [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, .production_id = 29), - [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, .production_id = 29), - [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 232), - [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 232), - [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 231), - [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 231), - [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 258), - [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 258), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 230), - [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 230), - [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3), - [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 111), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 111), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 188), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 188), - [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, .production_id = 136), - [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, .production_id = 136), - [1885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 229), - [1887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 229), - [1889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 29), - [1891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 29), - [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 228), - [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 228), - [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, .production_id = 130), - [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, .production_id = 130), - [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 185), - [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 185), - [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4), - [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4), - [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, .production_id = 226), - [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, .production_id = 226), - [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, .production_id = 5), - [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 225), - [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 225), - [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, .production_id = 96), - [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, .production_id = 96), - [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 131), - [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 131), - [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, .production_id = 261), - [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, .production_id = 261), - [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 88), - [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 88), - [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, .production_id = 110), - [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, .production_id = 110), - [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 224), - [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 224), - [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 132), - [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 132), - [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 71), - [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 71), - [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, .production_id = 4), - [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 58), - [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 58), - [1961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, .production_id = 32), - [1963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, .production_id = 32), - [1965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 133), - [1967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 133), - [1969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 263), - [1971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 263), - [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 134), - [1975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 134), - [1977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, .production_id = 275), - [1979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, .production_id = 275), - [1981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 54), - [1983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 54), - [1985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 31), - [1987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 31), - [1989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, .production_id = 19), - [1991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, .production_id = 19), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, .production_id = 270), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, .production_id = 270), - [1997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, .production_id = 274), - [1999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, .production_id = 274), - [2001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 135), - [2003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 135), - [2005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [2007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 88), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 88), - [2013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [2015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 4), - [2017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 95), - [2019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 95), - [2021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6), - [2023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6), - [2025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 223), - [2027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 223), - [2029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, .production_id = 29), - [2031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, .production_id = 29), - [2033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 201), - [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 201), - [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 94), - [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 94), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, .production_id = 93), - [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, .production_id = 93), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 222), - [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 222), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 241), - [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 241), - [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 177), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 177), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 206), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 206), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 242), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 242), - [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 124), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 124), - [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 129), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 129), - [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 136), - [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 136), - [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 88), - [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 88), - [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 208), - [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 208), - [2085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3072), - [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1427), - [2091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2714), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), - [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3465), - [2099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3238), - [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3056), - [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(856), - [2108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2318), - [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2217), - [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2157), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3255), - [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3052), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(852), - [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(840), - [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3250), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1953), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2729), - [2138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3249), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3247), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3386), - [2147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2727), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2158), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1880), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(2020), - [2159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3248), - [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(1975), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2), SHIFT_REPEAT(3248), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 178), - [2174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 178), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 116), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 116), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 131), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 131), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 243), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 243), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 179), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 179), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 244), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 244), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 93), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, .production_id = 93), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 180), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 181), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 181), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, .production_id = 108), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, .production_id = 108), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 182), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 182), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 183), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, .production_id = 183), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 138), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 138), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 123), - [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 123), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 221), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 221), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 220), - [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 220), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 122), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 122), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 139), - [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 139), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 185), - [2254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 185), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 219), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 219), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 218), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 218), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 121), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 121), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 78), - [2270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 78), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, .production_id = 178), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, .production_id = 178), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 134), - [2278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 134), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 120), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 88), - [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 88), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, .production_id = 119), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 186), - [2298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 186), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 87), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 87), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 58), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 58), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 259), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 259), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 136), - [2314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 136), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 88), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 88), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 134), - [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 134), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 140), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 140), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, .production_id = 136), - [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, .production_id = 136), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 138), - [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 138), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 168), - [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 168), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 198), - [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 198), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 134), - [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 134), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, .production_id = 136), - [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, .production_id = 136), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 167), - [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 167), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 114), - [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 114), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 72), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 72), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, .production_id = 141), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, .production_id = 141), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, .production_id = 113), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, .production_id = 113), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 245), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 245), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, .production_id = 215), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, .production_id = 215), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 187), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 187), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, .production_id = 172), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, .production_id = 172), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, .production_id = 112), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, .production_id = 112), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, .production_id = 111), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, .production_id = 111), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, .production_id = 247), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, .production_id = 247), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 214), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 214), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, .production_id = 181), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, .production_id = 181), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, .production_id = 166), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, .production_id = 166), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 142), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, .production_id = 142), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 71), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 71), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 213), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 213), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 271), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 271), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, .production_id = 212), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, .production_id = 212), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 264), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 264), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, .production_id = 70), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, .production_id = 70), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 88), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 88), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 270), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 270), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 211), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 211), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 163), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 210), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 210), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 161), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 161), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 209), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 209), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 208), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 208), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 165), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, .production_id = 110), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, .production_id = 110), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 263), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 263), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 207), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 207), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 206), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 206), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 84), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 84), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, .production_id = 86), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, .production_id = 86), - [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 136), - [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 136), - [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, .production_id = 181), - [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, .production_id = 181), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, .production_id = 246), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, .production_id = 246), - [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, .production_id = 262), - [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, .production_id = 262), - [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, .production_id = 251), - [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, .production_id = 251), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 54), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 54), - [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 54), - [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 54), - [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, .production_id = 188), - [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, .production_id = 188), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 71), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 71), - [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, .production_id = 4), - [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 272), - [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 272), - [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, .production_id = 266), - [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, .production_id = 266), - [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 247), - [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 247), - [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [2562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, .production_id = 4), - [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 85), - [2566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 85), - [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, .production_id = 70), - [2570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, .production_id = 70), - [2572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 122), - [2574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 122), - [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [2578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [2580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, .production_id = 267), - [2582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, .production_id = 267), - [2584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2), - [2586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2), - [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, .production_id = 253), - [2590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, .production_id = 253), - [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 164), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6), - [2598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6), - [2600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, .production_id = 181), - [2602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, .production_id = 181), - [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 218), - [2606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 218), - [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 8), - [2610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, .production_id = 8), - [2612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 205), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 158), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 158), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 204), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 189), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 189), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, .production_id = 156), - [2630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, .production_id = 156), - [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 163), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 203), - [2638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 203), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 154), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 154), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, .production_id = 202), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, .production_id = 202), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 70), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 70), - [2658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, .production_id = 71), - [2660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, .production_id = 71), - [2662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 249), - [2664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 249), - [2666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 220), - [2668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 220), - [2670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, .production_id = 72), - [2672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, .production_id = 72), - [2674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 190), - [2676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 190), - [2678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 162), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 162), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, .production_id = 73), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, .production_id = 73), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, .production_id = 201), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, .production_id = 201), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 250), - [2692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 250), - [2694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 251), - [2696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 251), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 252), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 252), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, .production_id = 268), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, .production_id = 268), - [2706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 253), - [2708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 253), - [2710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [2712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 71), - [2714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 84), - [2716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 84), - [2718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 70), - [2720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 70), - [2722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4), - [2724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4), - [2726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 254), - [2728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 254), - [2730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, .production_id = 191), - [2732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, .production_id = 191), - [2734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5), - [2736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, .production_id = 257), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, .production_id = 257), - [2742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, .production_id = 198), - [2744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, .production_id = 198), - [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, .production_id = 29), - [2748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, .production_id = 29), - [2750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 161), - [2752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 161), - [2754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, .production_id = 273), - [2756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, .production_id = 273), - [2758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, .production_id = 265), - [2760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, .production_id = 265), - [2762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, .production_id = 260), - [2764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, .production_id = 260), - [2766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 192), - [2768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 192), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2), - [2774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 222), - [2776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 222), - [2778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, .production_id = 37), - [2780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, .production_id = 37), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 78), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 78), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 79), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 79), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 255), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 255), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 160), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 160), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 19), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 19), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, .production_id = 80), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, .production_id = 80), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 224), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 224), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, .production_id = 81), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, .production_id = 81), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 119), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 119), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 112), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 112), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 159), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 159), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 193), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 193), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 153), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 153), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, .production_id = 256), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, .production_id = 256), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, .production_id = 257), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, .production_id = 257), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, .production_id = 154), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, .production_id = 154), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, .production_id = 269), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, .production_id = 269), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, .production_id = 155), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, .production_id = 155), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, .production_id = 230), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, .production_id = 230), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 158), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 158), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 4), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, .production_id = 54), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, .production_id = 54), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 157), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 157), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, .production_id = 156), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, .production_id = 156), - [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), - [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [3002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1), - [3004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2), - [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 7), - [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, .production_id = 7), - [3166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 22), - [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 22), - [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 22), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 22), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, .production_id = 103), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, .production_id = 103), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, .production_id = 23), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, .production_id = 23), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, .production_id = 23), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, .production_id = 23), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, .production_id = 104), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, .production_id = 104), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 17), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 17), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 16), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 16), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 46), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, .production_id = 46), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 45), - [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, .production_id = 45), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, .production_id = 116), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, .production_id = 116), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, .production_id = 116), - [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, .production_id = 169), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, .production_id = 169), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 169), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, .production_id = 1), - [3250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [3272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 20), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 20), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 21), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 21), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), - [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 59), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 59), - [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 61), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 61), - [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, .production_id = 5), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 62), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 62), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1), - [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 106), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 106), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 27), - [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 27), - [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 26), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 26), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 24), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 24), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 50), - [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 50), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 25), - [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 25), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 49), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, .production_id = 49), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 17), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 46), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, .production_id = 40), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1), - [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, .production_id = 126), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 107), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 107), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 105), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 105), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 102), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 102), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, .production_id = 145), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, .production_id = 145), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 147), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 147), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 148), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 148), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, .production_id = 101), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, .production_id = 101), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, .production_id = 149), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, .production_id = 149), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6), - [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 144), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, .production_id = 144), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3), - [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, .production_id = 58), - [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, .production_id = 58), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, .production_id = 58), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, .production_id = 58), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 57), - [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .production_id = 57), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, .production_id = 6), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, .production_id = 99), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, .production_id = 99), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5), - [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, .production_id = 196), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, .production_id = 196), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2), - [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, .production_id = 173), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, .production_id = 173), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 97), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 97), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4), - [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 10), - [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 10), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, .production_id = 11), - [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, .production_id = 11), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3), - [3570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 12), - [3574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 12), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, .production_id = 19), - [3582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, .production_id = 19), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2), - [3586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5), - [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2), - [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2), - [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, .production_id = 83), - [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, .production_id = 83), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, .production_id = 18), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, .production_id = 18), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, .production_id = 13), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, .production_id = 13), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, .production_id = 35), - [3626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, .production_id = 35), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6), - [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2), - [3634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, .production_id = 41), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 42), - [3640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, .production_id = 41), - [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 47), - [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 47), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, .production_id = 51), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, .production_id = 51), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, .production_id = 52), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4), - [3664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [3668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_type, 1), - [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_type, 1), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [3676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .production_id = 75), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .production_id = 75), - [3682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [3694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2), SHIFT_REPEAT(3457), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .production_id = 75), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .production_id = 75), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, .production_id = 75), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, .production_id = 75), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3), - [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2), - [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 47), - [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, .production_id = 47), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 48), - [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 48), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, .production_id = 125), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, .production_id = 125), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [3987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3045), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 199), - [4051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, .production_id = 184), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, .production_id = 169), - [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, .production_id = 240), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, .production_id = 116), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [4201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, .production_id = 116), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, .production_id = 200), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 152), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, .production_id = 137), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 18), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 100), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [4307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6), - [4313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5), - [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4), - [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, .production_id = 1), - [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, .production_id = 1), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, .production_id = 7), REDUCE(sym__pattern, 1), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [4492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 16), REDUCE(sym_scoped_type_identifier, 3, .production_id = 17), - [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 45), REDUCE(sym_scoped_type_identifier, 3, .production_id = 46), - [4498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, .production_id = 4), REDUCE(sym_scoped_type_identifier, 2, .production_id = 5), - [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, .production_id = 39), REDUCE(sym_scoped_type_identifier, 3, .production_id = 40), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1), - [4520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1), - [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2), - [4524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 63), - [4530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 63), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [4538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 1), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [4544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [4560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, .production_id = 67), - [4562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, .production_id = 67), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [4566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [4580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2), - [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 65), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, .production_id = 64), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 64), - [4628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2), - [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 65), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, .production_id = 64), - [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [4644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [4648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, .production_id = 1), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, .production_id = 64), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 65), - [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, .production_id = 64), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3), - [4662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, .production_id = 64), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2), - [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, .production_id = 64), - [4682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, .production_id = 64), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, .production_id = 65), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(354), - [4711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), - [4713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(346), - [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2), SHIFT_REPEAT(344), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), - [4767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2), SHIFT_REPEAT(814), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1, .production_id = 1), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [4905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(2318), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), - [4910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2), SHIFT_REPEAT(2171), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, .production_id = 78), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, .production_id = 69), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, .production_id = 1), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 4), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2), REDUCE(sym_tuple_struct_pattern, 3, .production_id = 64), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3), REDUCE(sym_tuple_struct_pattern, 4, .production_id = 64), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 174), - [5209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 58), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), - [5223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2), SHIFT_REPEAT(1456), - [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(1954), - [5229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1), SHIFT(333), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [5234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1), REDUCE(sym__pattern, 1), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, .production_id = 1), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [5295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2), REDUCE(sym_tuple_pattern, 2), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 216), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, .production_id = 19), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 58), - [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 216), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 174), - [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, .production_id = 101), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, .production_id = 19), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, .production_id = 75), - [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, .production_id = 248), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [5398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 248), - [5400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, .production_id = 101), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3), - [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), - [5457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(2891), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [5468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2), SHIFT_REPEAT(118), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [5501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [5559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 68), - [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, .production_id = 48), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [5641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 76), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, .production_id = 77), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2), - [5659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2), SHIFT_REPEAT(812), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 108), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, .production_id = 239), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, .production_id = 217), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, .production_id = 58), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, .production_id = 101), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, .production_id = 197), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [5844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 195), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, .production_id = 1), - [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 89), - [5878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, .production_id = 36), - [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 90), - [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, .production_id = 92), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [5898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2), - [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), - [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2), SHIFT_REPEAT(2162), - [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 176), - [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 175), - [5939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 175), SHIFT_REPEAT(791), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, .production_id = 19), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, .production_id = 110), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [5992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, .production_id = 34), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), - [6006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2), SHIFT_REPEAT(2163), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, .production_id = 91), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, .production_id = 9), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [6051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [6053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(974), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [6070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), - [6072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2), SHIFT_REPEAT(2306), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, .production_id = 66), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [6085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 150), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), SHIFT_REPEAT(3074), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2), SHIFT_REPEAT(338), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), - [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [6127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2), SHIFT_REPEAT(781), - [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2), SHIFT_REPEAT(799), - [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(500), - [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [6140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, .production_id = 109), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [6162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, .production_id = 11), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [6190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 146), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 117), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [6204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(2154), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, .production_id = 118), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, .production_id = 151), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4), - [6279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), - [6281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2), SHIFT_REPEAT(1878), - [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [6286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(2169), - [6289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 77), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, .production_id = 76), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [6307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [6375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [6411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, .production_id = 3), - [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, .production_id = 2), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [6449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 60), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, .production_id = 82), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [6515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 56), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, .production_id = 55), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [6589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 170), - [6591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, .production_id = 171), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, .production_id = 3), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, .production_id = 2), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6749] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [6957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3), - [6959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, .production_id = 14), - [6961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3), - [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, .production_id = 53), - [6965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, .production_id = 15), - [6967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2), - [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_label, .child_count = 2), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_label, .child_count = 2), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 1), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_repeat1, .child_count = 1), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__token_pattern, .child_count = 1), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__token_pattern, .child_count = 1), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym__non_special_token_repeat1, .child_count = 2), + [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym__non_special_token_repeat1, .child_count = 2), SHIFT_REPEAT(416), + [1421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym__non_special_token_repeat1, .child_count = 2), + [1423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym__non_special_token_repeat1, .child_count = 2), SHIFT_REPEAT(416), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_token_tree_pattern, .child_count = 3), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_token_tree_pattern, .child_count = 3), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_fragment_specifier, .child_count = 1), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_fragment_specifier, .child_count = 1), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_token_repetition, .child_count = 5), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_token_repetition, .child_count = 5), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_token_repetition, .child_count = 6), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_token_repetition, .child_count = 6), + [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_string_literal, .child_count = 2), + [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_string_literal, .child_count = 2), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_token_repetition_pattern, .child_count = 6), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_token_repetition_pattern, .child_count = 6), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_token_repetition, .child_count = 4), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_token_repetition, .child_count = 4), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_boolean_literal, .child_count = 1), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_boolean_literal, .child_count = 1), + [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_token_tree_pattern, .child_count = 2), + [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_token_tree_pattern, .child_count = 2), + [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_token_tree, .child_count = 3), + [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_token_tree, .child_count = 3), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_token_repetition_pattern, .child_count = 5), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_token_repetition_pattern, .child_count = 5), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_token_tree, .child_count = 2), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_token_tree, .child_count = 2), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__literal, .child_count = 1), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__literal, .child_count = 1), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__non_delim_token, .child_count = 1), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__non_delim_token, .child_count = 1), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_string_literal, .child_count = 3), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_string_literal, .child_count = 3), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 1), + [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_token_tree_pattern_repeat1, .child_count = 1), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym__non_special_token_repeat1, .child_count = 2), SHIFT_REPEAT(425), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym__non_special_token_repeat1, .child_count = 2), SHIFT_REPEAT(425), + [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym__non_special_token_repeat1, .child_count = 1), + [1500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym__non_special_token_repeat1, .child_count = 1), + [1502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_token_binding_pattern, .child_count = 3, .production_id = 197), + [1504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_token_binding_pattern, .child_count = 3, .production_id = 197), + [1506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_token_repetition_pattern, .child_count = 4), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_token_repetition_pattern, .child_count = 4), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 1), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_delim_token_tree_repeat1, .child_count = 1), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__delim_tokens, .child_count = 1), + [1516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__delim_tokens, .child_count = 1), + [1518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_closure_parameters, .child_count = 3), + [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_closure_parameters, .child_count = 3), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_closure_parameters, .child_count = 2), + [1524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_closure_parameters, .child_count = 2), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [1572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_match_arm, .child_count = 3, .production_id = 172), + [1574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_match_arm, .child_count = 3, .production_id = 172), + [1576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_match_arm, .child_count = 4, .production_id = 116), + [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_match_arm, .child_count = 4, .production_id = 116), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 9, .production_id = 266), + [1630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 9, .production_id = 266), + [1632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_item, .child_count = 6, .production_id = 130), + [1634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_item, .child_count = 6, .production_id = 130), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 135), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 135), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 3, .production_id = 19), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 3, .production_id = 19), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 88), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 88), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 3, .production_id = 31), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 3, .production_id = 31), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant_list, .child_count = 4), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_variant_list, .child_count = 4), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_item, .child_count = 5, .production_id = 137), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_item, .child_count = 5, .production_id = 137), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_item, .child_count = 5, .production_id = 135), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_item, .child_count = 5, .production_id = 135), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_item, .child_count = 3, .production_id = 29), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_item, .child_count = 3, .production_id = 29), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 5, .production_id = 141), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 5, .production_id = 141), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 3, .production_id = 32), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 3, .production_id = 32), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 10, .production_id = 276), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 10, .production_id = 276), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 5, .production_id = 140), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 5, .production_id = 140), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 4, .production_id = 80), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 4, .production_id = 80), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_extern_crate_declaration, .child_count = 5, .production_id = 144), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_extern_crate_declaration, .child_count = 5, .production_id = 144), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 3, .production_id = 5), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 3, .production_id = 5), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_item, .child_count = 7, .production_id = 180), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_item, .child_count = 7, .production_id = 180), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_use_declaration, .child_count = 3, .production_id = 37), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_use_declaration, .child_count = 3, .production_id = 37), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 10, .production_id = 278), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 10, .production_id = 278), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 3, .production_id = 29), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 3, .production_id = 29), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_macro_definition, .child_count = 6, .production_id = 54), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_macro_definition, .child_count = 6, .production_id = 54), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_static_item, .child_count = 10, .production_id = 277), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_static_item, .child_count = 10, .production_id = 277), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 143), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 143), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 10, .production_id = 273), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 10, .production_id = 273), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 3, .production_id = 29), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 3, .production_id = 29), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_union_item, .child_count = 5, .production_id = 137), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_union_item, .child_count = 5, .production_id = 137), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_union_item, .child_count = 5, .production_id = 135), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_union_item, .child_count = 5, .production_id = 135), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_mod_item, .child_count = 3, .production_id = 4), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_mod_item, .child_count = 3, .production_id = 4), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_associated_type, .child_count = 3, .production_id = 5), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_associated_type, .child_count = 3, .production_id = 5), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_mod_item, .child_count = 3, .production_id = 34), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_mod_item, .child_count = 3, .production_id = 34), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_macro_definition, .child_count = 6, .production_id = 4), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_macro_definition, .child_count = 6, .production_id = 4), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 137), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 137), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_union_item, .child_count = 3, .production_id = 29), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_union_item, .child_count = 3, .production_id = 29), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 222), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 222), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 9, .production_id = 275), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 9, .production_id = 275), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 4, .production_id = 79), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 4, .production_id = 79), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_declaration_list, .child_count = 2), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_declaration_list, .child_count = 2), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 181), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 181), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 9, .production_id = 274), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 9, .production_id = 274), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 9, .production_id = 273), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 9, .production_id = 273), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 9, .production_id = 272), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 9, .production_id = 272), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 137), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 137), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 136), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 136), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 6, .production_id = 112), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 6, .production_id = 112), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 135), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 135), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 134), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 134), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 58), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 58), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 6, .production_id = 156), + [1874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 6, .production_id = 156), + [1876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 133), + [1878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 133), + [1880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 132), + [1882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 132), + [1884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 6, .production_id = 157), + [1886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 6, .production_id = 157), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 4, .production_id = 19), + [1890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 4, .production_id = 19), + [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_union_item, .child_count = 5, .production_id = 111), + [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_union_item, .child_count = 5, .production_id = 111), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 9, .production_id = 260), + [1898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 9, .production_id = 260), + [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 6, .production_id = 158), + [1902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 6, .production_id = 158), + [1904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 159), + [1906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 159), + [1908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 160), + [1910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 160), + [1912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_foreign_mod_item, .child_count = 3), + [1914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_foreign_mod_item, .child_count = 3), + [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_foreign_mod_item, .child_count = 3, .production_id = 44), + [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_foreign_mod_item, .child_count = 3, .production_id = 44), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_associated_type, .child_count = 5, .production_id = 131), + [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_associated_type, .child_count = 5, .production_id = 131), + [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 9, .production_id = 271), + [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 9, .production_id = 271), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 161), + [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 161), + [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 162), + [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 162), + [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_item, .child_count = 5, .production_id = 130), + [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_item, .child_count = 5, .production_id = 130), + [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 9, .production_id = 256), + [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 9, .production_id = 256), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 9, .production_id = 270), + [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 9, .production_id = 270), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 129), + [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 129), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 111), + [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 111), + [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 128), + [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 5, .production_id = 128), + [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 111), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 111), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 72), + [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 72), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 29), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 29), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_declaration_list, .child_count = 3), + [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_field_declaration_list, .child_count = 3), + [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 4, .production_id = 81), + [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 4, .production_id = 81), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 9, .production_id = 254), + [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 9, .production_id = 254), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_static_item, .child_count = 5, .production_id = 110), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_static_item, .child_count = 5, .production_id = 110), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 4, .production_id = 82), + [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 4, .production_id = 82), + [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_static_item, .child_count = 9, .production_id = 269), + [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_static_item, .child_count = 9, .production_id = 269), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 9, .production_id = 268), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 9, .production_id = 268), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 120), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 120), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 5, .production_id = 125), + [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 5, .production_id = 125), + [2008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 5, .production_id = 116), + [2010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 5, .production_id = 116), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 163), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 163), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 5, .production_id = 108), + [2018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 5, .production_id = 108), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 164), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 164), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 124), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 124), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 165), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 165), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 166), + [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 166), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 123), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 123), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 167), + [2042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 167), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 123), + [2046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 123), + [2048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 122), + [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 122), + [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 168), + [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 168), + [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 6, .production_id = 169), + [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 6, .production_id = 169), + [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 6, .production_id = 170), + [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 6, .production_id = 170), + [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 79), + [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 79), + [2068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 121), + [2070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 121), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 6, .production_id = 171), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 6, .production_id = 171), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_macro_definition, .child_count = 4, .production_id = 54), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_macro_definition, .child_count = 4, .production_id = 54), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 120), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 5, .production_id = 120), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 8, .production_id = 267), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 8, .production_id = 267), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 8, .production_id = 266), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 8, .production_id = 266), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 8, .production_id = 265), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 8, .production_id = 265), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 8, .production_id = 238), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 8, .production_id = 238), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 8, .production_id = 264), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 8, .production_id = 264), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_empty_statement, .child_count = 1), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_empty_statement, .child_count = 1), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_macro_definition, .child_count = 4, .production_id = 4), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_macro_definition, .child_count = 4, .production_id = 4), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_item, .child_count = 8, .production_id = 233), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_item, .child_count = 8, .production_id = 233), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 5, .production_id = 114), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 5, .production_id = 114), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 5, .production_id = 73), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 5, .production_id = 73), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 5, .production_id = 113), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 5, .production_id = 113), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_static_item, .child_count = 6, .production_id = 174), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_static_item, .child_count = 6, .production_id = 174), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_static_item, .child_count = 8, .production_id = 263), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_static_item, .child_count = 8, .production_id = 263), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 5, .production_id = 112), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 5, .production_id = 112), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_item, .child_count = 5, .production_id = 111), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_item, .child_count = 5, .production_id = 111), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 224), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 224), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_const_item, .child_count = 8, .production_id = 250), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_const_item, .child_count = 8, .production_id = 250), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 8, .production_id = 262), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 8, .production_id = 262), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 8, .production_id = 231), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 8, .production_id = 231), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_declaration_list, .child_count = 5), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_field_declaration_list, .child_count = 5), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 8, .production_id = 261), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 8, .production_id = 261), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 223), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 223), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 8, .production_id = 260), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 8, .production_id = 260), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 259), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 259), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 227), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 227), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_declaration_list, .child_count = 4), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_field_declaration_list, .child_count = 4), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 258), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 258), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 225), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 225), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 257), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 257), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_attribute_item, .child_count = 4), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_attribute_item, .child_count = 4), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 256), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 256), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 255), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 255), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 6, .production_id = 72), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 6, .production_id = 72), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 254), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 254), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 253), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 253), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 223), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 223), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant_list, .child_count = 3), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_variant_list, .child_count = 3), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 252), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 252), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 221), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 221), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_declaration_list, .child_count = 6), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_field_declaration_list, .child_count = 6), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 179), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 179), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_const_item, .child_count = 5, .production_id = 110), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_const_item, .child_count = 5, .production_id = 110), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 142), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 5, .production_id = 142), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_item, .child_count = 6, .production_id = 180), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_item, .child_count = 6, .production_id = 180), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_static_item, .child_count = 8, .production_id = 250), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_static_item, .child_count = 8, .production_id = 250), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 132), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 6, .production_id = 132), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 6, .production_id = 188), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 6, .production_id = 188), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_expression_statement, .child_count = 2), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_expression_statement, .child_count = 2), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 182), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 182), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 183), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 183), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_declaration_list, .child_count = 2), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_field_declaration_list, .child_count = 2), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 184), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 184), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 4, .production_id = 29), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 4, .production_id = 29), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 4, .production_id = 71), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 4, .production_id = 71), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 8, .production_id = 249), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 8, .production_id = 249), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_extern_crate_declaration, .child_count = 6, .production_id = 185), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_extern_crate_declaration, .child_count = 6, .production_id = 185), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 8, .production_id = 248), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 8, .production_id = 248), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 8, .production_id = 247), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 8, .production_id = 247), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 246), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 246), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_item, .child_count = 7, .production_id = 191), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_item, .child_count = 7, .production_id = 191), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_foreign_mod_item, .child_count = 2, .production_id = 8), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_foreign_mod_item, .child_count = 2, .production_id = 8), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_foreign_mod_item, .child_count = 2), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_foreign_mod_item, .child_count = 2), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 211), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 211), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 6, .production_id = 189), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 6, .production_id = 189), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 245), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 245), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 6, .production_id = 140), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 6, .production_id = 140), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 6, .production_id = 190), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 6, .production_id = 190), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_const_item, .child_count = 6, .production_id = 174), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_const_item, .child_count = 6, .production_id = 174), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_item, .child_count = 6, .production_id = 183), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_item, .child_count = 6, .production_id = 183), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 6, .production_id = 88), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 6, .production_id = 88), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 6, .production_id = 137), + [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 6, .production_id = 137), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_inner_attribute_item, .child_count = 5), + [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_inner_attribute_item, .child_count = 5), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 6, .production_id = 183), + [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 6, .production_id = 183), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_item, .child_count = 6, .production_id = 191), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_item, .child_count = 6, .production_id = 191), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 209), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 8, .production_id = 209), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_union_item, .child_count = 6, .production_id = 183), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_union_item, .child_count = 6, .production_id = 183), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 192), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 192), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 193), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 193), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 194), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 6, .production_id = 194), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_macro_definition, .child_count = 5, .production_id = 4), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_macro_definition, .child_count = 5, .production_id = 4), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 8, .production_id = 244), + [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 8, .production_id = 244), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 8, .production_id = 204), + [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 8, .production_id = 204), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 6, .production_id = 195), + [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 6, .production_id = 195), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 4, .production_id = 84), + [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 4, .production_id = 84), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant_list, .child_count = 6), + [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_variant_list, .child_count = 6), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_macro_definition, .child_count = 5, .production_id = 54), + [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_macro_definition, .child_count = 5, .production_id = 54), + [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 6, .production_id = 196), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 6, .production_id = 196), + [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 4, .production_id = 72), + [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 4, .production_id = 72), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_macro_definition, .child_count = 7, .production_id = 54), + [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_macro_definition, .child_count = 7, .production_id = 54), + [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_macro_definition, .child_count = 7, .production_id = 4), + [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_macro_definition, .child_count = 7, .production_id = 4), + [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 7, .production_id = 240), + [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 7, .production_id = 240), + [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 7, .production_id = 195), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 7, .production_id = 195), + [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 4, .production_id = 71), + [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 4, .production_id = 71), + [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 7, .production_id = 239), + [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 7, .production_id = 239), + [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 7, .production_id = 238), + [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 7, .production_id = 238), + [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_extern_crate_declaration, .child_count = 7, .production_id = 237), + [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_extern_crate_declaration, .child_count = 7, .production_id = 237), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 7, .production_id = 236), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 7, .production_id = 236), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 7, .production_id = 235), + [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 7, .production_id = 235), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 7, .production_id = 234), + [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 7, .production_id = 234), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_item, .child_count = 7, .production_id = 233), + [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_item, .child_count = 7, .production_id = 233), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 221), + [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 221), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 7, .production_id = 137), + [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 7, .production_id = 137), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_const_item, .child_count = 7, .production_id = 201), + [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_const_item, .child_count = 7, .production_id = 201), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 7, .production_id = 232), + [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 7, .production_id = 232), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 7, .production_id = 231), + [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 7, .production_id = 231), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant_list, .child_count = 5), + [2510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_variant_list, .child_count = 5), + [2512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_use_declaration, .child_count = 4, .production_id = 96), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_use_declaration, .child_count = 4, .production_id = 96), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 7, .production_id = 230), + [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 7, .production_id = 230), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 7, .production_id = 188), + [2522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 7, .production_id = 188), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_union_item, .child_count = 4, .production_id = 88), + [2526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_union_item, .child_count = 4, .production_id = 88), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 7, .production_id = 229), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 7, .production_id = 229), + [2532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 7, .production_id = 204), + [2534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 7, .production_id = 204), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 4, .production_id = 88), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 4, .production_id = 88), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_item, .child_count = 4, .production_id = 95), + [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_item, .child_count = 4, .production_id = 95), + [2544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_mod_item, .child_count = 4, .production_id = 94), + [2546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_mod_item, .child_count = 4, .production_id = 94), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_mod_item, .child_count = 4, .production_id = 93), + [2550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_mod_item, .child_count = 4, .production_id = 93), + [2552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 7, .production_id = 205), + [2554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 7, .production_id = 205), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_item, .child_count = 4, .production_id = 88), + [2558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_item, .child_count = 4, .production_id = 88), + [2560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(3193), + [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(1256), + [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(2849), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), + [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(3345), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(3214), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(3084), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(830), + [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(2366), + [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(2241), + [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(2205), + [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(3310), + [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(3082), + [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(828), + [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(803), + [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(3306), + [2607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(1948), + [2610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(2758), + [2613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(3304), + [2616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(3303), + [2619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(3302), + [2622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(2761), + [2625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(2176), + [2628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(1866), + [2631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(2041), + [2634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(3383), + [2637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(1973), + [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(3383), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_declaration_list, .child_count = 3), + [2645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_declaration_list, .child_count = 3), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 7, .production_id = 157), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 7, .production_id = 157), + [2651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 7, .production_id = 206), + [2653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 7, .production_id = 206), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 159), + [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 159), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 207), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 207), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 161), + [2665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 161), + [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 208), + [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 208), + [2671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 209), + [2673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 209), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 210), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 210), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 211), + [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 211), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 212), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 212), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant_list, .child_count = 2), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_variant_list, .child_count = 2), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_extern_crate_declaration, .child_count = 4, .production_id = 93), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_extern_crate_declaration, .child_count = 4, .production_id = 93), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 164), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 164), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 213), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 213), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 166), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 166), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 214), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 214), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 4, .production_id = 88), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 4, .production_id = 88), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 228), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 228), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 4, .production_id = 87), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 4, .production_id = 87), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 4, .production_id = 58), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 4, .production_id = 58), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 1), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym_source_file_repeat1, .child_count = 1), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 7, .production_id = 215), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 7, .production_id = 215), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 7, .production_id = 216), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 7, .production_id = 216), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_union_item, .child_count = 4, .production_id = 72), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_union_item, .child_count = 4, .production_id = 72), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_declaration, .child_count = 7, .production_id = 217), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_let_declaration, .child_count = 7, .production_id = 217), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_item, .child_count = 4, .production_id = 71), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_item, .child_count = 4, .production_id = 71), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_item, .child_count = 4, .production_id = 72), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_enum_item, .child_count = 4, .production_id = 72), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_union_item, .child_count = 4, .production_id = 71), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_union_item, .child_count = 4, .production_id = 71), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 227), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 227), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 4, .production_id = 73), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_signature_item, .child_count = 4, .production_id = 73), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_associated_type, .child_count = 4, .production_id = 84), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_associated_type, .child_count = 4, .production_id = 84), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_associated_type, .child_count = 4, .production_id = 86), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_associated_type, .child_count = 4, .production_id = 86), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_item, .child_count = 4, .production_id = 74), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_item, .child_count = 4, .production_id = 74), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_static_item, .child_count = 7, .production_id = 218), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_static_item, .child_count = 7, .production_id = 218), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_static_item, .child_count = 7, .production_id = 201), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_static_item, .child_count = 7, .production_id = 201), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 226), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 226), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 4, .production_id = 72), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 4, .production_id = 72), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 225), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_impl_item, .child_count = 7, .production_id = 225), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_item, .child_count = 4, .production_id = 85), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_trait_item, .child_count = 4, .production_id = 85), + [2803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(1998), + [2806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(748), + [2809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(770), + [2812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(2243), + [2815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(2916), + [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(3159), + [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(3195), + [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(812), + [2827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(3037), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(830), + [2833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(790), + [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(2671), + [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(2104), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(811), + [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(806), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(2918), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(2338), + [2854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(2559), + [2857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(2295), + [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(2613), + [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 2), SHIFT_REPEAT(2613), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [3078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [3082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [3100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [3120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [3134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 1), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 1), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_closure_parameters, .child_count = 4), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_closure_parameters, .child_count = 4), + [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym_tuple_expression_repeat1, .child_count = 2), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_lifetime, .child_count = 2), + [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_lifetime, .child_count = 2), + [3164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_range_pattern, .child_count = 2, .production_id = 1), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_range_pattern, .child_count = 2, .production_id = 1), + [3170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_range_pattern, .child_count = 2), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_range_pattern, .child_count = 2), + [3182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [3184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [3186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__type, .child_count = 1, .production_id = 7), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__type, .child_count = 1, .production_id = 7), + [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [3196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_dynamic_type, .child_count = 2, .production_id = 22), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_dynamic_type, .child_count = 2, .production_id = 22), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_abstract_type, .child_count = 2, .production_id = 22), + [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_abstract_type, .child_count = 2, .production_id = 22), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_abstract_type, .child_count = 4, .production_id = 103), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_abstract_type, .child_count = 4, .production_id = 103), + [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_type_identifier, .child_count = 3, .production_id = 17), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_scoped_type_identifier, .child_count = 3, .production_id = 17), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_identifier, .child_count = 3, .production_id = 16), + [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_scoped_identifier, .child_count = 3, .production_id = 16), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_type_identifier, .child_count = 3, .production_id = 46), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_scoped_type_identifier, .child_count = 3, .production_id = 46), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_identifier, .child_count = 3, .production_id = 45), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_scoped_identifier, .child_count = 3, .production_id = 45), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_dynamic_type, .child_count = 2, .production_id = 23), + [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_dynamic_type, .child_count = 2, .production_id = 23), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__type, .child_count = 1), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__type, .child_count = 1), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_type_identifier, .child_count = 2, .production_id = 5), + [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_scoped_type_identifier, .child_count = 2, .production_id = 5), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_identifier, .child_count = 2, .production_id = 4), + [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_scoped_identifier, .child_count = 2, .production_id = 4), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_abstract_type, .child_count = 4, .production_id = 104), + [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_abstract_type, .child_count = 4, .production_id = 104), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_type_identifier, .child_count = 3, .production_id = 40), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_scoped_type_identifier, .child_count = 3, .production_id = 40), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_identifier, .child_count = 3, .production_id = 39), + [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_scoped_identifier, .child_count = 3, .production_id = 39), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_abstract_type, .child_count = 2, .production_id = 23), + [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_abstract_type, .child_count = 2, .production_id = 23), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym_match_arm_repeat1, .child_count = 2), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_match_arm_repeat1, .child_count = 2), + [3266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_match_arm_repeat1, .child_count = 2), SHIFT_REPEAT(3037), + [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__expression_except_range, .child_count = 1, .production_id = 1), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__expression_except_range, .child_count = 1, .production_id = 1), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_function_modifiers_repeat1, .child_count = 1), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 3, .production_id = 62), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 3, .production_id = 62), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 2, .production_id = 21), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 2, .production_id = 21), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_continue_expression, .child_count = 1), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_continue_expression, .child_count = 1), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__expression, .child_count = 1), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__expression, .child_count = 1), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_type_identifier_in_expression_position, .child_count = 2, .production_id = 5), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 4, .production_id = 106), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 4, .production_id = 106), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_parameters, .child_count = 3), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_parameters, .child_count = 3), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_arguments, .child_count = 3), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_arguments, .child_count = 3), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_type_identifier_in_expression_position, .child_count = 3, .production_id = 17), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_arguments, .child_count = 4), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_arguments, .child_count = 4), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_parameters, .child_count = 4), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_parameters, .child_count = 4), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_where_clause, .child_count = 4), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_parameters, .child_count = 6), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_parameters, .child_count = 6), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_arguments, .child_count = 6), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_arguments, .child_count = 6), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_where_clause, .child_count = 3), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 3, .production_id = 61), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 3, .production_id = 61), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_generic_type, .child_count = 2, .production_id = 27), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_generic_type, .child_count = 2, .production_id = 27), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 3, .production_id = 59), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 3, .production_id = 59), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [3441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 2, .production_id = 26), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 2, .production_id = 26), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_parameters, .child_count = 2), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_parameters, .child_count = 2), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_generic_type, .child_count = 2, .production_id = 20), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_generic_type, .child_count = 2, .production_id = 20), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_type_identifier_in_expression_position, .child_count = 3, .production_id = 46), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_arguments, .child_count = 5), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_arguments, .child_count = 5), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_type_identifier_in_expression_position, .child_count = 3, .production_id = 40), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_generic_type, .child_count = 2, .production_id = 25), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_generic_type, .child_count = 2, .production_id = 25), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 2, .production_id = 24), + [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 2, .production_id = 24), + [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat1, .child_count = 2), SHIFT_REPEAT(3497), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_parameters, .child_count = 5), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_parameters, .child_count = 5), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_expression, .child_count = 3, .production_id = 50), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_field_expression, .child_count = 3, .production_id = 50), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_expression, .child_count = 3, .production_id = 49), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_field_expression, .child_count = 3, .production_id = 49), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 5, .production_id = 150), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 5, .production_id = 150), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_array_expression, .child_count = 4), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_array_expression, .child_count = 4), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_generic_function, .child_count = 3, .production_id = 41), + [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_generic_function, .child_count = 3, .production_id = 41), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_generic_type_with_turbofish, .child_count = 3, .production_id = 52), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_cast_expression, .child_count = 3, .production_id = 51), + [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_cast_expression, .child_count = 3, .production_id = 51), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_closure_expression, .child_count = 5, .production_id = 127), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_closure_expression, .child_count = 5, .production_id = 127), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_reference_type, .child_count = 2, .production_id = 19), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_reference_type, .child_count = 2, .production_id = 19), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_expression, .child_count = 4), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_tuple_expression, .child_count = 4), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_removed_trait_bound, .child_count = 2), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_removed_trait_bound, .child_count = 2), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_unit_type, .child_count = 2), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_unit_type, .child_count = 2), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_await_expression, .child_count = 3), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_await_expression, .child_count = 3), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_binary_expression, .child_count = 3, .production_id = 47), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_binary_expression, .child_count = 3, .production_id = 47), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 6, .production_id = 199), + [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 6, .production_id = 199), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_arguments, .child_count = 2), + [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_arguments, .child_count = 2), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 1), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_declaration_list_repeat1, .child_count = 1), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_generic_type_with_turbofish, .child_count = 3, .production_id = 42), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_initializer_list, .child_count = 4), + [3560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_field_initializer_list, .child_count = 4), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_initializer_list, .child_count = 2), + [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_field_initializer_list, .child_count = 2), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_arguments, .child_count = 4), + [3568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_arguments, .child_count = 4), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_type, .child_count = 3), + [3572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_tuple_type, .child_count = 3), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_array_type, .child_count = 3, .production_id = 57), + [3576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_array_type, .child_count = 3, .production_id = 57), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_closure_expression, .child_count = 3, .production_id = 35), + [3580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_closure_expression, .child_count = 3, .production_id = 35), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_reference_type, .child_count = 3, .production_id = 58), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_reference_type, .child_count = 3, .production_id = 58), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_expression, .child_count = 6), + [3590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_tuple_expression, .child_count = 6), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_bounded_type, .child_count = 3), + [3594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_bounded_type, .child_count = 3), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_array_expression, .child_count = 6, .production_id = 146), + [3598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_array_expression, .child_count = 6, .production_id = 146), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_array_expression, .child_count = 6), + [3602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_array_expression, .child_count = 6), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_never_type, .child_count = 1), + [3606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_never_type, .child_count = 1), + [3608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_match_arm, .child_count = 4, .production_id = 172), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_match_arm, .child_count = 4, .production_id = 172), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_last_match_arm, .child_count = 4, .production_id = 172), + [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_parameters, .child_count = 4, .production_id = 119), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_parameters, .child_count = 4, .production_id = 119), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_unit_expression, .child_count = 2), + [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_unit_expression, .child_count = 2), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_array_expression, .child_count = 5), + [3624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_array_expression, .child_count = 5), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_array_expression, .child_count = 5, .production_id = 99), + [3628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_array_expression, .child_count = 5, .production_id = 99), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_closure_expression, .child_count = 4, .production_id = 83), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_closure_expression, .child_count = 4, .production_id = 83), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_expression, .child_count = 5), + [3638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_tuple_expression, .child_count = 5), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_arguments, .child_count = 3), + [3642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_arguments, .child_count = 3), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_try_expression, .child_count = 2), + [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_try_expression, .child_count = 2), + [3648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_parameters, .child_count = 5, .production_id = 76), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_parameters, .child_count = 5, .production_id = 76), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_parameters, .child_count = 5), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_parameters, .child_count = 5), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_pointer_type, .child_count = 3, .production_id = 58), + [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_pointer_type, .child_count = 3, .production_id = 58), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 5, .production_id = 152), + [3662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 5, .production_id = 152), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 5, .production_id = 151), + [3666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 5, .production_id = 151), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_array_expression, .child_count = 2), + [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_array_expression, .child_count = 2), + [3672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_parameters, .child_count = 4), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_parameters, .child_count = 4), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_array_type, .child_count = 5, .production_id = 147), + [3678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_array_type, .child_count = 5, .production_id = 147), + [3680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_parameters, .child_count = 6), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_parameters, .child_count = 6), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_type, .child_count = 5), + [3686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_tuple_type, .child_count = 5), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_closure_expression, .child_count = 4, .production_id = 97), + [3690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_closure_expression, .child_count = 4, .production_id = 97), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_index_expression, .child_count = 4), + [3694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_index_expression, .child_count = 4), + [3696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_parameters, .child_count = 5, .production_id = 119), + [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_parameters, .child_count = 5, .production_id = 119), + [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_closure_expression, .child_count = 6, .production_id = 175), + [3702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_closure_expression, .child_count = 6, .production_id = 175), + [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_reference_expression, .child_count = 3, .production_id = 18), + [3706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_reference_expression, .child_count = 3, .production_id = 18), + [3708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_parameters, .child_count = 6, .production_id = 119), + [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_parameters, .child_count = 6, .production_id = 119), + [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_array_expression, .child_count = 3), + [3714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_array_expression, .child_count = 3), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_parenthesized_expression, .child_count = 3), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_parenthesized_expression, .child_count = 3), + [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_higher_ranked_trait_bound, .child_count = 3, .production_id = 79), + [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_higher_ranked_trait_bound, .child_count = 3, .production_id = 79), + [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_unary_expression, .child_count = 2), + [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_unary_expression, .child_count = 2), + [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_closure_expression, .child_count = 2, .production_id = 13), + [3730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_closure_expression, .child_count = 2, .production_id = 13), + [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_match_arm, .child_count = 5, .production_id = 116), + [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_match_arm, .child_count = 5, .production_id = 116), + [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_last_match_arm, .child_count = 5, .production_id = 116), + [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_call_expression, .child_count = 2, .production_id = 12), + [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_call_expression, .child_count = 2, .production_id = 12), + [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_expression, .child_count = 2, .production_id = 11), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_expression, .child_count = 2, .production_id = 11), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_reference_expression, .child_count = 2, .production_id = 6), + [3748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_reference_expression, .child_count = 2, .production_id = 6), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_initializer_list, .child_count = 5), + [3752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_field_initializer_list, .child_count = 5), + [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_expression, .child_count = 2, .production_id = 10), + [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_struct_expression, .child_count = 2, .production_id = 10), + [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_parameters, .child_count = 3), + [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_parameters, .child_count = 3), + [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_initializer_list, .child_count = 3), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_field_initializer_list, .child_count = 3), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_arguments, .child_count = 5), + [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_arguments, .child_count = 5), + [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_type, .child_count = 4), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_tuple_type, .child_count = 4), + [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_reference_type, .child_count = 4, .production_id = 101), + [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_reference_type, .child_count = 4, .production_id = 101), + [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_continue_expression, .child_count = 2), + [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_continue_expression, .child_count = 2), + [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 4, .production_id = 102), + [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 4, .production_id = 102), + [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_expression, .child_count = 7), + [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_tuple_expression, .child_count = 7), + [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_array_expression, .child_count = 7), + [3792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_array_expression, .child_count = 7), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 4, .production_id = 107), + [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 4, .production_id = 107), + [3798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_arguments, .child_count = 6), + [3800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_arguments, .child_count = 6), + [3802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_parameters, .child_count = 3, .production_id = 76), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_parameters, .child_count = 3, .production_id = 76), + [3806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_type, .child_count = 4, .production_id = 105), + [3808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_function_type, .child_count = 4, .production_id = 105), + [3810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_type_parameters, .child_count = 4, .production_id = 76), + [3812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_parameters, .child_count = 4, .production_id = 76), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym_match_arm_repeat1, .child_count = 1), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_match_arm_repeat1, .child_count = 1), + [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 1), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_match_block_repeat1, .child_count = 1), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [3874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_compound_assignment_expr, .child_count = 3, .production_id = 47), + [3876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_compound_assignment_expr, .child_count = 3, .production_id = 47), + [3878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_return_expression, .child_count = 2), + [3880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_return_expression, .child_count = 2), + [3882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_yield_expression, .child_count = 2), + [3884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_yield_expression, .child_count = 2), + [3886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_range_expression, .child_count = 3), + [3888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_range_expression, .child_count = 3), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_break_expression, .child_count = 3), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_break_expression, .child_count = 3), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_assignment_expression, .child_count = 3, .production_id = 48), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_assignment_expression, .child_count = 3, .production_id = 48), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_visibility_modifier, .child_count = 5, .production_id = 126), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_visibility_modifier, .child_count = 5, .production_id = 126), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_visibility_modifier, .child_count = 1), + [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym_visibility_modifier, .child_count = 1), SHIFT(2693), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_visibility_modifier, .child_count = 1), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_visibility_modifier, .child_count = 4), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_visibility_modifier, .child_count = 4), + [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym_visibility_modifier, .child_count = 1), SHIFT(3237), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_visibility_modifier, .child_count = 5), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_visibility_modifier, .child_count = 5), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [4024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_arguments_repeat1, .child_count = 3), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_arguments_repeat1, .child_count = 2), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_last_match_arm, .child_count = 3, .production_id = 172), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant, .child_count = 3, .production_id = 155), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__condition, .child_count = 1), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [4172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant, .child_count = 4, .production_id = 202), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant, .child_count = 4, .production_id = 203), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_initializer, .child_count = 3, .production_id = 138), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_base_field_initializer, .child_count = 2), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__let_chain, .child_count = 3), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [4196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_initializer, .child_count = 4, .production_id = 186), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_initializer, .child_count = 4, .production_id = 187), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_last_match_arm, .child_count = 4, .production_id = 116), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_initializer, .child_count = 3, .production_id = 139), + [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant, .child_count = 5, .production_id = 243), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_let_condition, .child_count = 4, .production_id = 116), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_attribute, .child_count = 3, .production_id = 100), + [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_attribute, .child_count = 3, .production_id = 18), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_for_lifetimes, .child_count = 4), + [4344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_for_lifetimes, .child_count = 4), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_for_lifetimes, .child_count = 5), + [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_for_lifetimes, .child_count = 5), + [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_for_lifetimes, .child_count = 6), + [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_for_lifetimes, .child_count = 6), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__pattern, .child_count = 1), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__pattern, .child_count = 1), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__pattern, .child_count = 1, .production_id = 1), + [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__pattern, .child_count = 1, .production_id = 1), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym__type, .child_count = 1, .production_id = 7), REDUCE(.symbol = sym__pattern, .child_count = 1), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym_scoped_identifier, .child_count = 3, .production_id = 45), REDUCE(.symbol = sym_scoped_type_identifier, .child_count = 3, .production_id = 46), + [4530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym_scoped_identifier, .child_count = 2, .production_id = 4), REDUCE(.symbol = sym_scoped_type_identifier, .child_count = 2, .production_id = 5), + [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym_scoped_identifier, .child_count = 3, .production_id = 16), REDUCE(.symbol = sym_scoped_type_identifier, .child_count = 3, .production_id = 17), + [4536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym_scoped_identifier, .child_count = 3, .production_id = 39), REDUCE(.symbol = sym_scoped_type_identifier, .child_count = 3, .production_id = 40), + [4539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_negative_literal, .child_count = 2), + [4541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_negative_literal, .child_count = 2), + [4543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__literal_pattern, .child_count = 1), + [4545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym__literal_pattern, .child_count = 1), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_extern_modifier, .child_count = 1), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_range_pattern, .child_count = 3, .production_id = 63), + [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_range_pattern, .child_count = 3, .production_id = 63), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [4667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_range_pattern, .child_count = 3), + [4669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_range_pattern, .child_count = 3), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [4675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_range_pattern, .child_count = 3, .production_id = 67), + [4677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_range_pattern, .child_count = 3, .production_id = 67), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [4681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = aux_sym_function_modifiers_repeat1, .child_count = 1), + [4683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_range_pattern, .child_count = 3, .production_id = 1), + [4685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(.symbol = sym_range_pattern, .child_count = 3, .production_id = 1), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_or_pattern, .child_count = 3), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ref_pattern, .child_count = 2), + [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_struct_pattern, .child_count = 5, .production_id = 64), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_pattern, .child_count = 3, .production_id = 65), + [4697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_struct_pattern, .child_count = 3, .production_id = 64), + [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_reference_pattern, .child_count = 3), + [4701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_struct_pattern, .child_count = 6, .production_id = 64), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_pattern, .child_count = 5, .production_id = 65), + [4705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_pattern, .child_count = 5), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_pattern, .child_count = 4), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [4721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_captured_pattern, .child_count = 3), + [4723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_slice_pattern, .child_count = 3), + [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_slice_pattern, .child_count = 2), + [4727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_pattern, .child_count = 3), + [4729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_struct_pattern, .child_count = 4, .production_id = 64), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_struct_pattern, .child_count = 5, .production_id = 69), + [4733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_pattern, .child_count = 5, .production_id = 64), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_struct_pattern, .child_count = 3, .production_id = 69), + [4737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_reference_pattern, .child_count = 2), + [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_or_pattern, .child_count = 2), + [4741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_slice_pattern, .child_count = 5), + [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_pattern, .child_count = 2), + [4745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_pattern, .child_count = 3, .production_id = 64), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_pattern, .child_count = 4, .production_id = 65), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [4767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_mut_pattern, .child_count = 2), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_remaining_field_pattern, .child_count = 1), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_pattern, .child_count = 6, .production_id = 64), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_slice_pattern, .child_count = 4), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [4789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_pattern, .child_count = 6, .production_id = 65), + [4791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_struct_pattern, .child_count = 6, .production_id = 69), + [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_struct_pattern, .child_count = 4, .production_id = 64), + [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_tuple_struct_pattern, .child_count = 4, .production_id = 69), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_bounds, .child_count = 3), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_trait_bounds, .child_count = 2), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_trait_bounds_repeat1, .child_count = 2), + [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_trait_bounds_repeat1, .child_count = 2), SHIFT_REPEAT(836), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [4868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym__type, .child_count = 1), REDUCE(.symbol = sym__pattern, .child_count = 1, .production_id = 1), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [4893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_macro_definition_repeat1, .child_count = 2), SHIFT_REPEAT(315), + [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_macro_definition_repeat1, .child_count = 2), + [4898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_macro_definition_repeat1, .child_count = 2), SHIFT_REPEAT(329), + [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_macro_definition_repeat1, .child_count = 2), SHIFT_REPEAT(314), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [4936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_function_modifiers_repeat1, .child_count = 2), SHIFT_REPEAT(2366), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_function_modifiers_repeat1, .child_count = 2), + [4941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_function_modifiers_repeat1, .child_count = 2), SHIFT_REPEAT(2172), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_function_modifiers, .child_count = 1), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_extern_modifier, .child_count = 2), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_attribute, .child_count = 1), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant, .child_count = 1, .production_id = 70), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_self_parameter, .child_count = 2), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_self_parameter, .child_count = 1), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant, .child_count = 2, .production_id = 4), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_attribute, .child_count = 1, .production_id = 1), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym_parameters, .child_count = 3), REDUCE(.symbol = sym_tuple_struct_pattern, .child_count = 4, .production_id = 64), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym_parameters, .child_count = 2), REDUCE(.symbol = sym_tuple_struct_pattern, .child_count = 3, .production_id = 64), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_self_parameter, .child_count = 3), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 3), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [5304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym__type, .child_count = 1), REDUCE(.symbol = sym__pattern, .child_count = 1), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 3, .production_id = 19), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 5, .production_id = 176), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym_unit_type, .child_count = 2), REDUCE(.symbol = sym_tuple_pattern, .child_count = 2), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_type_parameters_repeat1, .child_count = 2, .production_id = 76), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_type_arguments_repeat1, .child_count = 2), + [5338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym__pattern, .child_count = 1), SHIFT(1934), + [5341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = sym__pattern, .child_count = 1), SHIFT(300), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 5, .production_id = 101), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [5384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_where_clause_repeat1, .child_count = 2), + [5386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_where_clause_repeat1, .child_count = 2), SHIFT_REPEAT(1458), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__use_clause, .child_count = 1, .production_id = 1), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_type_parameters_repeat1, .child_count = 3, .production_id = 119), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__use_clause, .child_count = 1), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 7, .production_id = 251), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 2), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 4, .production_id = 58), + [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 4, .production_id = 19), + [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 4, .production_id = 176), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_where_clause, .child_count = 2), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 6, .production_id = 251), + [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 6, .production_id = 101), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 6, .production_id = 219), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [5505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 5, .production_id = 58), + [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_ordered_field_declaration_list, .child_count = 5, .production_id = 219), + [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_parameter, .child_count = 3, .production_id = 68), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_slice_pattern_repeat1, .child_count = 2), + [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_slice_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(822), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_parameter, .child_count = 4, .production_id = 108), + [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_where_predicate, .child_count = 2, .production_id = 77), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_type_parameters_repeat1, .child_count = 2), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_type_parameters_repeat1, .child_count = 2), REDUCE(.symbol = aux_sym_for_lifetimes_repeat1, .child_count = 2), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_parameters_repeat1, .child_count = 3), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_binding, .child_count = 4, .production_id = 198), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [5677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_arguments_repeat1, .child_count = 2), SHIFT_REPEAT(109), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [5686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_where_predicate, .child_count = 2, .production_id = 78), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_type_parameters_repeat1, .child_count = 3), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_string_literal_repeat1, .child_count = 2), + [5764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_string_literal_repeat1, .child_count = 2), SHIFT_REPEAT(2786), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_parameters_repeat1, .child_count = 2), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_macro_rule, .child_count = 3, .production_id = 48), + [5815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_type_binding, .child_count = 3, .production_id = 148), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [5841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_type_arguments_repeat1, .child_count = 2), SHIFT_REPEAT(442), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_parameters_repeat1, .child_count = 2), SHIFT_REPEAT(308), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [5873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_for_lifetimes_repeat1, .child_count = 2), SHIFT_REPEAT(3102), + [5876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_for_lifetimes_repeat1, .child_count = 2), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_use_list, .child_count = 2), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_pattern, .child_count = 3, .production_id = 154), + [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_use_list, .child_count = 2, .production_id = 36), + [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_field_initializer_list_repeat1, .child_count = 2), + [5896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_field_initializer_list_repeat1, .child_count = 2), SHIFT_REPEAT(2145), + [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_struct_pattern_repeat1, .child_count = 2), + [5901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_struct_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(2364), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_shorthand_field_initializer, .child_count = 1), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat2, .child_count = 2), + [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat2, .child_count = 2), SHIFT_REPEAT(2174), + [5923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_use_list_repeat1, .child_count = 2), + [5925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_use_list_repeat1, .child_count = 2), SHIFT_REPEAT(1864), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [5934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_use_list, .child_count = 4), + [5936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant, .child_count = 3, .production_id = 34), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [5950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_pattern, .child_count = 3, .production_id = 153), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_const_parameter, .child_count = 4, .production_id = 110), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_string_literal_repeat1, .child_count = 1), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_ordered_field_declaration_list_repeat1, .child_count = 2, .production_id = 19), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_ordered_field_declaration_list_repeat1, .child_count = 2, .production_id = 177), + [6032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_ordered_field_declaration_list_repeat1, .child_count = 2, .production_id = 177), SHIFT_REPEAT(767), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_declaration, .child_count = 3, .production_id = 178), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [6041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_field_declaration_list_repeat1, .child_count = 2), + [6043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_field_declaration_list_repeat1, .child_count = 2), SHIFT_REPEAT(2165), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_use_wildcard, .child_count = 1), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_use_list, .child_count = 5), + [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__condition, .child_count = 1, .production_id = 9), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_self_parameter, .child_count = 4), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_pattern, .child_count = 4, .production_id = 200), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_ordered_field_declaration_list_repeat1, .child_count = 3, .production_id = 58), + [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_optional_type_parameter, .child_count = 3, .production_id = 118), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_type_parameters_repeat1, .child_count = 2), SHIFT_REPEAT(2035), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_declaration, .child_count = 4, .production_id = 220), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_optional_type_parameter, .child_count = 3, .production_id = 117), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [6159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_enum_variant, .child_count = 2, .production_id = 11), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [6171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_pattern, .child_count = 2, .production_id = 109), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_ordered_field_declaration_list_repeat1, .child_count = 4, .production_id = 101), + [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_pattern_repeat1, .child_count = 2), + [6189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_pattern_repeat1, .child_count = 2), SHIFT_REPEAT(764), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_type_repeat1, .child_count = 2), + [6226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_tuple_type_repeat1, .child_count = 2), SHIFT_REPEAT(962), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_pattern, .child_count = 1, .production_id = 66), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_closure_parameters_repeat1, .child_count = 2), + [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_field_pattern, .child_count = 5, .production_id = 242), + [6261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(.symbol = aux_sym_closure_parameters_repeat1, .child_count = 2), SHIFT_REPEAT(788), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_constrained_type_parameter, .child_count = 2, .production_id = 77), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_shorthand_field_initializer, .child_count = 2), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_use_as_clause, .child_count = 3, .production_id = 92), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_use_list, .child_count = 3, .production_id = 91), + [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_use_wildcard, .child_count = 3), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_constrained_type_parameter, .child_count = 2, .production_id = 78), + [6336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_use_as_clause, .child_count = 3, .production_id = 90), + [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_scoped_use_list, .child_count = 3, .production_id = 89), + [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_use_wildcard, .child_count = 3, .production_id = 1), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_use_list, .child_count = 3), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [6388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_match_pattern, .child_count = 1), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [6482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__block_doc_comment_marker, .child_count = 1, .production_id = 3), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__block_doc_comment_marker, .child_count = 1, .production_id = 2), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_field_declaration_list_repeat1, .child_count = 3), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_enum_variant_list_repeat2, .child_count = 3), + [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_variadic_parameter, .child_count = 4, .production_id = 32), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_variadic_parameter, .child_count = 2), + [6552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = aux_sym_type_arguments_repeat1, .child_count = 3), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_qualified_type, .child_count = 3, .production_id = 60), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [6576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_variadic_parameter, .child_count = 1), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [6622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [6638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_variadic_parameter, .child_count = 3, .production_id = 149), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), + [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [6726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_bracketed_type, .child_count = 3), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_attribute, .child_count = 2, .production_id = 55), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_match_pattern, .child_count = 3, .production_id = 173), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_attribute, .child_count = 2, .production_id = 56), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__line_doc_comment_marker, .child_count = 1, .production_id = 3), + [6966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym__line_doc_comment_marker, .child_count = 1, .production_id = 2), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6990] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [7076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_line_comment, .child_count = 2), + [7078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_block_comment, .child_count = 2), + [7080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_block_comment, .child_count = 4, .production_id = 53), + [7082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_line_comment, .child_count = 3), + [7084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_line_comment, .child_count = 3, .production_id = 14), + [7086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_block_comment, .child_count = 3), + [7088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(.symbol = sym_block_comment, .child_count = 3, .production_id = 15), }; enum ts_external_scanner_symbol_identifiers { - ts_external_token__string_content = 0, + ts_external_token_string_content = 0, ts_external_token_raw_string_literal = 1, ts_external_token_float_literal = 2, ts_external_token__outer_block_doc_comment_marker = 3, @@ -193347,7 +192831,7 @@ enum ts_external_scanner_symbol_identifiers { }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token__string_content] = sym__string_content, + [ts_external_token_string_content] = sym_string_content, [ts_external_token_raw_string_literal] = sym_raw_string_literal, [ts_external_token_float_literal] = sym_float_literal, [ts_external_token__outer_block_doc_comment_marker] = sym__outer_block_doc_comment_marker, @@ -193359,7 +192843,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [1] = { - [ts_external_token__string_content] = true, + [ts_external_token_string_content] = true, [ts_external_token_raw_string_literal] = true, [ts_external_token_float_literal] = true, [ts_external_token__outer_block_doc_comment_marker] = true, @@ -193378,13 +192862,13 @@ static const bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__block_comment_content] = true, }, [4] = { - [ts_external_token__string_content] = true, + [ts_external_token_string_content] = true, }, [5] = { - [ts_external_token_float_literal] = true, + [ts_external_token__block_comment_content] = true, }, [6] = { - [ts_external_token__block_comment_content] = true, + [ts_external_token_float_literal] = true, }, [7] = { [ts_external_token__line_doc_content] = true, @@ -193400,7 +192884,9 @@ bool tree_sitter_rust_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_rust_external_scanner_serialize(void *, char *); void tree_sitter_rust_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h new file mode 100644 index 00000000..1f4466d7 --- /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 00000000..15a3b233 --- /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 index 17b4fde9..70d22982 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -203,12 +203,10 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ +#define REDUCE(...) \ {{ \ .reduce = { \ .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ __VA_ARGS__ \ }, \ }}